Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Sat, 08 Feb 2020 19:32:06 UTC
Commit: 38a138f8c0df31787a3f579c5a606c6a71bb1fd9
https://github.com/geany/geany-plugins/commit/38a138f8c0df31787a3f579c5a606…
Log Message:
-----------
commander: Silence expected deprecation warnings
We have to use the deprecated API because it is the only way to fetch
the correct information from menus that were themselves created with
that deprecated API, so we don't care about deprecation here.
Closes #865
Modified Paths:
--------------
commander/src/commander-plugin.c
Modified: commander/src/commander-plugin.c
4 lines changed, 4 insertions(+), 0 deletions(-)
===================================================================
@@ -306,6 +306,9 @@ store_populate_menu_items (GtkListStore *store,
gboolean use_underline;
GtkStockItem item;
+ /* GtkStock is deprectaed since GTK 3.10, but we have to use it in order
+ * to get the actual label of the menu item */
+ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
if (GTK_IS_IMAGE_MENU_ITEM (node->data) &&
gtk_image_menu_item_get_use_stock (node->data) &&
gtk_stock_lookup (gtk_menu_item_get_label (node->data), &item)) {
@@ -315,6 +318,7 @@ store_populate_menu_items (GtkListStore *store,
item_label = g_strdup (gtk_menu_item_get_label (node->data));
use_underline = gtk_menu_item_get_use_underline (node->data);
}
+ G_GNUC_END_IGNORE_DEPRECATIONS
/* remove underlines */
if (use_underline) {
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Mon, 16 Oct 2023 20:04:14 UTC
Commit: 3e1670fe5eedb3f76d5787cbc1b3463755f5e4be
https://github.com/geany/geany-plugins/commit/3e1670fe5eedb3f76d5787cbc1b34…
Log Message:
-----------
Fix a small glitch in German translation
Modified Paths:
--------------
po/de.po
Modified: po/de.po
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -5362,7 +5362,7 @@ msgstr "Gehe zur nächsten unklaren Übersetzung"
#: ../pohelper/data/menus.ui.h:14
msgid "Previous Untranslated or Fuzz_y"
-msgstr "Vorherige u_nübersetzt oder -klar."
+msgstr "Vorherige u_nübersetzt oder unklar"
#: ../pohelper/data/menus.ui.h:15 ../pohelper/src/gph-plugin.c:1608
msgid "Go to previous untranslated or fuzzy string"
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Enrico Tröger <enrico.troeger(a)uvena.de>
Committer: Enrico Tröger <enrico.troeger(a)uvena.de>
Date: Wed, 11 Oct 2023 15:11:32 UTC
Commit: 362419ae8e1b8e6d378170f2942646dcca391d5d
https://github.com/geany/geany-plugins/commit/362419ae8e1b8e6d378170f294264…
Log Message:
-----------
Require Geany 2.0 as minimum version
At least the SpellCheck plugin needs a recent version of Geany and it is
probably good to require a recent version anyway.
Modified Paths:
--------------
configure.ac
Modified: configure.ac
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -21,7 +21,7 @@ IT_PROG_INTLTOOL([0.35.0])
GP_I18N
dnl common checks
-GP_CHECK_GEANY(1.29)
+GP_CHECK_GEANY(2.0)
GP_CHECK_UNITTESTS(0.9.4)
GP_CHECK_GTK_VERSION
GP_CHECK_CPPCHECK
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).