Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Mon, 13 Oct 2014 14:41:49 UTC
Commit: 8873b9082c1c98b4f3e97062f0c6f26c9d980e95
https://github.com/geany/geany-plugins/commit/8873b9082c1c98b4f3e97062f0c6f…
Log Message:
-----------
autotools: Enable subdir-objects as many plugins use sub-directory objects
Many plugins build object files from sub-directories, and when doing
this it is better to enable Automake subdir-objects option. So, enable
it, as it is good and old enough anyway.
Modified Paths:
--------------
configure.ac
Modified: configure.ac
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -1,7 +1,7 @@
AC_PREREQ([2.61])
dnl Don't forget when updating version number to do GP_CHECK_GEANY also
AC_INIT([geany-plugins], [1.25])
-AM_INIT_AUTOMAKE([1.8 foreign dist-bzip2 tar-ustar])
+AM_INIT_AUTOMAKE([1.8 foreign dist-bzip2 tar-ustar subdir-objects])
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
--------------
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, 12 Oct 2014 14:21:56 UTC
Commit: c8fc1d02237179f67efbaf8801a8e592f2de9e1a
https://github.com/geany/geany-plugins/commit/c8fc1d02237179f67efbaf8801a8e…
Log Message:
-----------
Merge branch 'master' of https://github.com/geany/geany-plugins
Modified Paths:
--------------
tableconvert/ChangeLog
tableconvert/README
Modified: tableconvert/ChangeLog
6 lines changed, 6 insertions(+), 0 deletions(-)
===================================================================
@@ -1,3 +1,9 @@
+2014-10-10 Frank Lanitz <frank(a)frank.uvena.de>
+
+ * Introducing a special menu entry into Tools-menu allowing to convert
+ without changing Geany's file type setting for current document.
+
+
2014-10-05 Frank Lanitz <frank(a)frank.uvena.de>
* Fixing an issue where \r and \n on e.g. Windows files handled as
Modified: tableconvert/README
4 lines changed, 4 insertions(+), 0 deletions(-)
===================================================================
@@ -28,6 +28,10 @@ set up a keybinding for the function. Once this is done, the plugin is
ready to use. Alternativly it's also possible to use the plugin via the
menu entry at the Tools menu.
+Inside the Tools menu there is also another submenu avaialble wich is
+allowing you to convert to a table without changing Geany's file type
+settings for the current document.
+
When using the plugin, just mark the area you like to transform and
push your keybinding. All line endings will be taken as end of a row
and therefor transformed to fitting row endings. The plugin is taking
--------------
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, 12 Oct 2014 14:16:42 UTC
Commit: a76f26e1f09e12eda8fcd91567d81726b394e322
https://github.com/geany/geany-plugins/commit/a76f26e1f09e12eda8fcd91567d81…
Log Message:
-----------
Suppress error dialogs on startup
Instead of showing an error dialog on startup of Geany, suppress
the dialog and log the error only to the status messages.
This makes the error less obvious but is also less annoying
for an unconfigured or misconfigured Spell Check plugin.
Modified Paths:
--------------
spellcheck/src/speller.c
Modified: spellcheck/src/speller.c
7 lines changed, 6 insertions(+), 1 deletions(-)
===================================================================
@@ -308,9 +308,14 @@ void sc_speller_check_document(GeanyDocument *doc)
static void broker_init_failed(void)
{
const gchar *err = enchant_broker_get_error(sc_speller_broker);
- dialogs_show_msgbox(GTK_MESSAGE_ERROR,
+ const gchar *msg = g_strdup_printf(
_("The Enchant library couldn't be initialized (%s)."),
(err != NULL) ? err : _("unknown error (maybe the chosen language is not available)"));
+
+ msgwin_status_add(msg);
+ if (main_is_realized())
+ /* show dialog only after Geany has been loaded already, i.e. not while starting up */
+ dialogs_show_msgbox(GTK_MESSAGE_ERROR, msg);
}
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).