Branch: refs/heads/master
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Mon, 20 Feb 2017 08:25:09 UTC
Commit: ca0ec91e76ab263c96ac951e43f1e58f55e153e0
https://github.com/geany/geany-plugins/commit/ca0ec91e76ab263c96ac951e43f1e…
Log Message:
-----------
Update of NEWS
Modified Paths:
--------------
NEWS
Modified: NEWS
8 lines changed, 7 insertions(+), 1 deletions(-)
===================================================================
@@ -20,11 +20,14 @@ Geany Plugins 1.30 (not yet released)
* Improve compatibility with Gtk3
* Allow to use current word as initial text in interactive mode (PR##457
- GeanyLua
+ GeanyLua:
* Remove deprecated GeanyFunctions from interface provided by this
plugin (PR##439)
* Fix build with latest Scintilla (PR##510)
+ GeanyPy:
+ * Sync with upstream GeanyPy version (PR##527)
+
Lineoperations:
* Add support for selections (PR##378)
@@ -41,6 +44,7 @@ Geany Plugins 1.30 (not yet released)
ProjectOrganizer:
* Show online help via help button (PR##521)
+ * Remember expanded directories in the sidebar when reloading (PR##528)
Spellcheck:
* Treat underscore as word seperator (PR##512)
@@ -52,6 +56,8 @@ Geany Plugins 1.30 (not yet released)
* Fix a possible memory leak (PR##478)
* Add a keybinding to follow current file (PR##524
* Allow to show menu also with Shift+F10 (PR##523)
+ * Fix a bug addding files to file list again and again when using
+ refresh-function and no file is selected (PR##525)
Internationalization:
* Updated translations: de
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Jiří Techet <techet(a)gmail.com>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Sun, 19 Feb 2017 18:45:23 UTC
Commit: 8e511d19073c97ba249bdb3781a51deb786dc433
https://github.com/geany/geany-plugins/commit/8e511d19073c97ba249bdb3781a51…
Log Message:
-----------
Remove -Werror=aggregate-return from travis flags (#529)
While in general one should avoid returning big structs for performance
reasons, it's no big problem for small structs and it can lead to more
readable code.
Having this check on for everything seems to be too strict - if someone
is returning big structs like crazy, someone will probably notice during
the review. Otherwise it's no problem.
Modified Paths:
--------------
.travis.yml
Modified: .travis.yml
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -125,7 +125,7 @@ before_install:
before_script:
# prepare for GP
- - export CFLAGS="-g -O2 -Werror=pointer-arith -Werror=aggregate-return -Werror=implicit-function-declaration"
+ - export CFLAGS="-g -O2 -Werror=pointer-arith -Werror=implicit-function-declaration"
script:
- NOCONFIGURE=1 ./autogen.sh
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Vasiliy Faronov <vfaronov(a)gmail.com>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Wed, 15 Feb 2017 22:22:37 UTC
Commit: 4144a719be86a708c5741812e26f1d128227539f
https://github.com/geany/geany-plugins/commit/4144a719be86a708c5741812e26f1…
Log Message:
-----------
TreeBrowser: fix refreshing without selection (#525)
This fixes a bug that could be reproduced as follows:
1. ensure that *no* item in the tree is selected (highlighted);
2. press the "Refresh" keybinding.
Without this fix, the contents of the tree are duplicated.
Modified Paths:
--------------
treebrowser/src/treebrowser.c
Modified: treebrowser/src/treebrowser.c
3 lines changed, 2 insertions(+), 1 deletions(-)
===================================================================
@@ -461,7 +461,6 @@ treebrowser_chroot(const gchar *dir)
treebrowser_bookmarks_set_state();
- gtk_tree_store_clear(treestore);
setptr(addressbar_last_address, directory);
treebrowser_browse(addressbar_last_address, NULL);
@@ -499,6 +498,8 @@ treebrowser_browse(gchar *directory, gpointer parent)
if (parent)
gtk_tree_store_iter_clear_nodes(parent, FALSE);
+ else
+ gtk_tree_store_clear(treestore);
list = utils_get_file_list(directory, NULL, NULL);
if (list != NULL)
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).