Branch: refs/heads/master
Author: Alexander Petukhov <devel(a)apetukhov.ru>
Committer: Alexander Petukhov <devel(a)apetukhov.ru>
Date: Thu, 14 Jun 2012 06:10:47
Commit: a25d212d062e33e7ca72902824a38f66f6a44fcd
https://github.com/geany/geany-plugins/commit/a25d212d062e33e7ca72902824a38…
Log Message:
-----------
TODO update
Modified Paths:
--------------
debugger/TODO
Modified: debugger/TODO
3 files changed, 3 insertions(+), 0 deletions(-)
===================================================================
@@ -1,4 +1,6 @@
BUGS:
+- panel buttons status change only after loading target file
+- markers dissapear after refreshing a file (in other encoding for example)
FEATURES:
@@ -13,6 +15,7 @@ FEATURES:
- margin context menu
- editor context menu (add watch, add/remove breakpoint)
+- refresh tooltip when stopping after step/run is tooltip is active
- font from the geany settings for a message window
- use left/right keys to collapse/expand in breakpoints tree
- use lexer to lookup for a symbol under cursor when presenting a tooltip
@@ Diff output truncated at 100000 characters. @@
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).
Branch: refs/heads/master
Author: frlan <frank(a)frank.uvena.de>
Committer: frlan <frank(a)frank.uvena.de>
Date: Mon, 11 Jun 2012 13:09:55
Commit: 1c19477f3a083421424f9425ead937e03233c4ac
https://github.com/geany/geany-plugins/commit/1c19477f3a083421424f9425ead93…
Log Message:
-----------
Tableconvert: Don't add () around selection when creating SQL prepared code as most likely this is incorrect
Modified Paths:
--------------
tableconvert/src/tableconvert.c
Modified: tableconvert/src/tableconvert.c
6 files changed, 2 insertions(+), 4 deletions(-)
===================================================================
@@ -1,7 +1,7 @@
/*
* tableconvert.c
*
- * Copyright 2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
+ * Copyright 2011-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -154,7 +154,7 @@ static GString* convert_to_table_sql(gchar** rows)
g_return_val_if_fail(rows != NULL, NULL);
/* Adding start */
- replacement_str = g_string_new("(\n");
+ replacement_str = g_string_new("");
/* Iteration onto rows and building up lines for replacement */
for (i = 0; rows[i] != NULL ; i++)
@@ -184,8 +184,6 @@ static GString* convert_to_table_sql(gchar** rows)
g_free(columns);
}
- /* Adding the end of table */
- g_string_append(replacement_str, ")\n");
return replacement_str;
}
@@ Diff output truncated at 100000 characters. @@
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).