Branch: refs/heads/master
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Sun, 05 Oct 2014 13:31:41 UTC
Commit: 663bba527329c0531be283d260cc252a854a7098
https://github.com/geany/geany-plugins/commit/663bba527329c0531be283d260cc2…
Log Message:
-----------
TableConvert: Update of ChangeLog
Modified Paths:
--------------
tableconvert/ChangeLog
Modified: tableconvert/ChangeLog
3 lines changed, 2 insertions(+), 1 deletions(-)
===================================================================
@@ -2,7 +2,8 @@
* Fixing an issue where \r and \n on e.g. Windows files handled as
seperate lines ending up in 'empty' table lines.
-
+ * Respect now actual line endings of current document instead of just
+ assuming \n and maybe creating a mixed up document
2014-09-28 Frank Lanitz <frank(a)frank.uvena.de>
--------------
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, 05 Oct 2014 12:52:35 UTC
Commit: 472d1d8374356785657d0df8310c95d04bee3919
https://github.com/geany/geany-plugins/commit/472d1d8374356785657d0df8310c9…
Log Message:
-----------
TableConvert: Remove not needed line split character
Modified Paths:
--------------
tableconvert/src/tableconvert.c
Modified: tableconvert/src/tableconvert.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -196,7 +196,7 @@ static void convert_to_table(gboolean header)
g_free(selection);
selection = g_string_free(selection_str, FALSE);
- rows = g_strsplit_set(selection, "\r\n", -1);
+ rows = g_strsplit_set(selection, "\n", -1);
g_free(selection);
/* Checking whether we do have something we can work on - Returning if not */
--------------
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, 05 Oct 2014 10:14:39 UTC
Commit: 15d28a574d644dba500c9f3f75615d2e31b0c44c
https://github.com/geany/geany-plugins/commit/15d28a574d644dba500c9f3f75615…
Log Message:
-----------
TableConvert: Fixing an issue on handling \r and \n (Windows style files) and 'empty' lines inside created table
Modified Paths:
--------------
tableconvert/ChangeLog
tableconvert/src/tableconvert.c
Modified: tableconvert/ChangeLog
7 lines changed, 7 insertions(+), 0 deletions(-)
===================================================================
@@ -1,3 +1,10 @@
+2014-10-05 Frank Lanitz <frank(a)frank.uvena.de>
+
+ * Fixing an issue where \r and \n on e.g. Windows files handled as
+ seperate lines ending up in 'empty' table lines.
+
+
+
2014-09-28 Frank Lanitz <frank(a)frank.uvena.de>
* SQL: Treating every column as a string when transfering data to SQL
Modified: tableconvert/src/tableconvert.c
8 lines changed, 8 insertions(+), 0 deletions(-)
===================================================================
@@ -184,10 +184,18 @@ static void convert_to_table(gboolean header)
gchar *selection = NULL;
gchar **rows = NULL;
gchar *replacement = NULL;
+ GString *selection_str = NULL;
/* Actually grabbing selection and splitting it into single
* lines we will work on later */
selection = sci_get_selection_contents(doc->editor->sci);
+
+ selection_str = g_string_new(selection);
+ utils_string_replace_all(selection_str, "\r\n", "\n");
+
+ g_free(selection);
+ selection = g_string_free(selection_str, FALSE);
+
rows = g_strsplit_set(selection, "\r\n", -1);
g_free(selection);
--------------
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: Sat, 04 Oct 2014 13:57:01 UTC
Commit: 81cd2a28c5847a9fb353568b5ff7c12a8cbaf888
https://github.com/geany/geany-plugins/commit/81cd2a28c5847a9fb353568b5ff7c…
Log Message:
-----------
Include plugin icons in the Windows installer
This location is used by the gproject plugin which was currently missing its icons.
Modified Paths:
--------------
build/geany-plugins.nsi
Modified: build/geany-plugins.nsi
3 lines changed, 3 insertions(+), 0 deletions(-)
===================================================================
@@ -105,6 +105,9 @@ Section "!Program Files" SEC01
SetOutPath "$INSTDIR\lib"
File /r "${RESOURCEDIR}\lib\*"
+ SetOutPath "$INSTDIR\share\icons"
+ File /r "${RESOURCEDIR}\share\icons\*"
+
SetOutPath "$INSTDIR\share\geany-plugins"
File /r "${RESOURCEDIR}\share\geany-plugins\*"
SectionEnd
--------------
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: Sat, 04 Oct 2014 09:51:38 UTC
Commit: f951283c379dce40e270378decd07d715daa6fba
https://github.com/geany/geany-plugins/commit/f951283c379dce40e270378decd07…
Log Message:
-----------
Explicitly return None
The output is the same as before, just more explicit in what we return.
Modified Paths:
--------------
build/wafutils.py
Modified: build/wafutils.py
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -184,10 +184,10 @@ def get_plugins():
def get_git_rev(conf):
if conf.options.no_scm:
- return
+ return None
if not os.path.isdir('.git'):
- return
+ return None
try:
cmd = 'git rev-parse --short --revs-only HEAD'
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).