Branch: refs/heads/master
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Tue, 27 Oct 2015 22:03:21 UTC
Commit: 35eb224a009256cbae76c3671b538d1bfd7d0b79
https://github.com/geany/geany-plugins/commit/35eb224a009256cbae76c3671b538…
Log Message:
-----------
Tableconvert: Fix a typo inside a comment
Modified Paths:
--------------
tableconvert/src/tableconvert.c
Modified: tableconvert/src/tableconvert.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -292,7 +292,7 @@ void convert_to_table(gboolean header, gint file_type)
else
{
/* OK. Something went not as expected.
- * We did have a selection but cannot parse it into rows.
+ * We do have a selection but cannot parse it into rows.
* Aborting */
g_warning(_("Something went wrong on parsing selection. Aborting"));
return;
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Dimitar Zhekov <dimitar.zhekov(a)gmail.com>
Committer: Dimitar Zhekov <dimitar.zhekov(a)gmail.com>
Date: Mon, 26 Oct 2015 18:00:49 UTC
Commit: 5c63dee81cc50e07c928faaced85893063e0731b
https://github.com/geany/geany-plugins/commit/5c63dee81cc50e07c928faaced858…
Log Message:
-----------
Add a NEWS entry for Scope for 1.26 release
Modified Paths:
--------------
NEWS
Modified: NEWS
2 lines changed, 2 insertions(+), 0 deletions(-)
===================================================================
@@ -11,6 +11,8 @@ Geany Plugins 1.26 (not release yet)
* Make a lot of strings translateable
Scope:
+ * Use Geany spawn: maximum GDB line length fixed to 1MB, no CPU
+ time wasted when IDLE under Windows, 3 preferences deleted.
Spellcheck:
* Add an option to show spelling suggestion on top of the context
--------------
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: Sun, 25 Oct 2015 14:06:57 UTC
Commit: 11d67fe152e42c466a59efb987b6b1e1b9f1e415
https://github.com/geany/geany-plugins/commit/11d67fe152e42c466a59efb987b6b…
Log Message:
-----------
Adding a first draft of NEWS for 1.26 release
Modified Paths:
--------------
NEWS
Modified: NEWS
17 lines changed, 17 insertions(+), 0 deletions(-)
===================================================================
@@ -1,5 +1,21 @@
Geany Plugins 1.26 (not release yet)
+ General:
+
+ Addons:
+ * Add new feature to copy path of current file into clipboard
+ * Improve refreshing behaviour of TODO list
+ * Improve Gtk3 support of plugin
+
+ Multiterm:
+ * Make a lot of strings translateable
+
+ Scope:
+
+ Spellcheck:
+ * Add an option to show spelling suggestion on top of the context
+ menu instead of an submenu (still default)
+
Internationalization:
* Update translations: de, pt
@@ -12,6 +28,7 @@ Geany Plugins 1.25 (2015-07-12)
* New plugin GeanyCtags
* New plugin GitChangeBar
* New plugin Overview
+ * Fix plugin deinstallation under Windows
Addons:
* Improve URI selection
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Mon, 29 Jun 2015 13:12:15 UTC
Commit: ef0f914db13132393d5647ae4064ba986b211943
https://github.com/geany/geany-plugins/commit/ef0f914db13132393d5647ae4064b…
Log Message:
-----------
multiterm: Setup internationalization
Modified Paths:
--------------
multiterm/src/plugin.vala
Modified: multiterm/src/plugin.vala
4 lines changed, 4 insertions(+), 0 deletions(-)
===================================================================
@@ -27,6 +27,9 @@ public Plugin geany_plugin;
public Data geany_data;
public Functions geany_functions;
+extern const string LOCALEDIR;
+extern const string GETTEXT_PACKAGE;
+
/* Widgets to clean up when the plugin is unloaded */
private List<Widget> toplevel_widgets = null;
@@ -39,6 +42,7 @@ public int plugin_version_check(int abi_version)
/* Geany calls this to get some info about the plugin */
public void plugin_set_info(Plugin.Info info)
{
+ Main.locale_init (LOCALEDIR, GETTEXT_PACKAGE);
info.set(_("MultiTerm"),
_("Multi-tabbed virtual terminal emulator."),
"0.1", "Matthew Brush <matt(a)geany.org>");
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).