Branch: refs/heads/master
Author: Jiří Techet <techet(a)gmail.com>
Committer: Jiří Techet <techet(a)gmail.com>
Date: Sat, 04 Mar 2017 23:09:28 UTC
Commit: d691f2de8380eaff2a39cffedb2a9ca400c704da
https://github.com/geany/geany-osx/commit/d691f2de8380eaff2a39cffedb2a9ca40…
Log Message:
-----------
Add VTE vala dependency
It seems there’s a bug and VTE 0.40 doesn’t compile without vala.
Modified Paths:
--------------
geany.modules
Modified: geany.modules
2 lines changed, 2 insertions(+), 0 deletions(-)
===================================================================
@@ -55,6 +55,8 @@
</branch>
<dependencies>
<dep package="gnutls" />
+ <!-- There seems to be a problem that VTE build fails when vala is not installed -->
+ <dep package="vala" />
</dependencies>
</autotools>
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Giuseppe <giuspen(a)gmail.com>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Fri, 03 Mar 2017 22:50:22 UTC
Commit: 94620f4450b91476dfa3cce3c5be3bbcf0bcf2c1
https://github.com/geany/geany/commit/94620f4450b91476dfa3cce3c5be3bbcf0bcf…
Log Message:
-----------
updated it.po (#1405)
Modified Paths:
--------------
po/it.po
Modified: po/it.po
5 lines changed, 2 insertions(+), 3 deletions(-)
===================================================================
@@ -11,7 +11,7 @@ msgstr ""
"Project-Id-Version: Geany 1.30\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-02-19 19:13+0100\n"
-"PO-Revision-Date: 2016-10-31 20:39+0000\n"
+"PO-Revision-Date: 2017-02-22 22:01+0000\n"
"Last-Translator: Giuseppe Penone <giuspen(a)gmail.com>\n"
"Language-Team: geany-i18n(a)uvena.de\n"
"Language: it\n"
@@ -1245,9 +1245,8 @@ msgid "Strip trailing spaces and tabs"
msgstr "Elimina spazi e tabulazioni in coda"
#: ../data/geany.glade.h:250
-#, fuzzy
msgid "Removes trailing spaces and tabs at the end of lines"
-msgstr "Rimuove gli spazi e le tabulazioni in eccesso alla fine delle righe"
+msgstr "Rimuove spazi e tabulazioni in eccesso alla fine delle righe"
#: ../data/geany.glade.h:251 ../src/keybindings.c:666
msgid "Replace tabs with space"
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: elextr <elextr(a)gmail.com>
Committer: GitHub <noreply(a)github.com>
Date: Fri, 03 Mar 2017 11:00:27 UTC
Commit: cc7f7f7164956c8ba872f6c9ffa5ed0f6712a9d7
https://github.com/geany/geany/commit/cc7f7f7164956c8ba872f6c9ffa5ed0f6712a…
Log Message:
-----------
Merge pull request #1406 from kugel-/for-upstream
api: new function geany_api_version for dynamic languages checking API version at runtime
Modified Paths:
--------------
src/plugindata.h
src/pluginutils.c
src/pluginutils.h
Modified: src/plugindata.h
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -59,7 +59,7 @@ G_BEGIN_DECLS
* @warning You should not test for values below 200 as previously
* @c GEANY_API_VERSION was defined as an enum value, not a macro.
*/
-#define GEANY_API_VERSION 230
+#define GEANY_API_VERSION 231
/* hack to have a different ABI when built with GTK3 because loading GTK2-linked plugins
* with GTK3-linked Geany leads to crash */
Modified: src/pluginutils.c
16 lines changed, 16 insertions(+), 0 deletions(-)
===================================================================
@@ -52,6 +52,22 @@ typedef struct
PluginDocDataProxy;
+/** Returns the runtime API version Geany was compiled with.
+ *
+ * Unlike @ref GEANY_API_VERSION this version is the value of that
+ * define at the time when Geany itself was compiled. This allows to
+ * establish soft dependencies which are resolved at runtime depending
+ * on Geany's API version.
+ *
+ * @return Geany's API version
+ * @since 1.30 (API 231)
+ **/
+GEANY_API_SYMBOL
+gint geany_api_version(void)
+{
+ return GEANY_API_VERSION;
+}
+
/** Inserts a toolbar item before the Quit button, or after the previous plugin toolbar item.
* A separator is added on the first call to this function, and will be shown when @a item is
* shown; hidden when @a item is hidden.
Modified: src/pluginutils.h
1 lines changed, 1 insertions(+), 0 deletions(-)
===================================================================
@@ -35,6 +35,7 @@ G_BEGIN_DECLS
struct GeanyPlugin;
struct GeanyDocument;
+gint geany_api_version(void);
void plugin_add_toolbar_item(struct GeanyPlugin *plugin, GtkToolItem *item);
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).