Branch: refs/heads/master
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: GitHub <noreply(a)github.com>
Date: Mon, 30 Oct 2017 10:31:25 UTC
Commit: 28263405f4b65ca87b633250aabecd1a8ed2cd46
https://github.com/geany/geany-plugins/commit/28263405f4b65ca87b633250aabec…
Log Message:
-----------
Merge pull request #640 from medovina/fix-plugin-info
Remove message saying that treebrowser is unmaintained
Modified Paths:
--------------
treebrowser/src/treebrowser.c
Modified: treebrowser/src/treebrowser.c
6 lines changed, 2 insertions(+), 4 deletions(-)
===================================================================
@@ -126,10 +126,8 @@ PLUGIN_SET_TRANSLATABLE_INFO(
GETTEXT_PACKAGE,
_("TreeBrowser"),
_("This plugin adds a tree browser to Geany, allowing the user to "
- "browse files using a tree view of the directory being browsed."
- "\nThis plugin currently has no maintainer. Would you like to help "
- "by contributing to this plugin?"),
- "0.20" ,
+ "browse files using a tree view of the directory being browsed."),
+ "1.32" ,
"Adrian Dimitrov (dimitrov.adrian(a)gmail.com)")
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Adam Dingle <adam(a)medovina.org>
Committer: Adam Dingle <adam(a)medovina.org>
Date: Mon, 30 Oct 2017 10:25:47 UTC
Commit: e8aa5b913b4380463e624e64a6385f7c214c0848
https://github.com/geany/geany-plugins/commit/e8aa5b913b4380463e624e64a6385…
Log Message:
-----------
Remove message saying that treebrowser is unmaintained
Modified Paths:
--------------
treebrowser/src/treebrowser.c
Modified: treebrowser/src/treebrowser.c
6 lines changed, 2 insertions(+), 4 deletions(-)
===================================================================
@@ -126,10 +126,8 @@ PLUGIN_SET_TRANSLATABLE_INFO(
GETTEXT_PACKAGE,
_("TreeBrowser"),
_("This plugin adds a tree browser to Geany, allowing the user to "
- "browse files using a tree view of the directory being browsed."
- "\nThis plugin currently has no maintainer. Would you like to help "
- "by contributing to this plugin?"),
- "0.20" ,
+ "browse files using a tree view of the directory being browsed."),
+ "1.32" ,
"Adrian Dimitrov (dimitrov.adrian(a)gmail.com)")
--------------
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: Sun, 29 Oct 2017 22:03:35 UTC
Commit: 71e26d8f69092ddaa2da305bb3cee4f76378a8b5
https://github.com/geany/geany-plugins/commit/71e26d8f69092ddaa2da305bb3cee…
Log Message:
-----------
Connect button press handler to open documents only if activated
Modified Paths:
--------------
addons/src/ao_markword.c
Modified: addons/src/ao_markword.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -82,7 +82,7 @@ static void ao_mark_word_set_property(GObject *object, guint prop_id,
/* if the plugin is loaded while Geany is already running, we need to connect the
* button press signal for open documents, if Geany is just booting,
* it happens automatically */
- if (main_is_realized())
+ if (priv->enable_markword && main_is_realized())
{
connect_documents_button_press_signal_handler(AO_MARKWORD(object));
}
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).