commit df89f8792416de47df778de6df5adc3a0a92481d Author: Bastien Nocera Date: Mon Aug 18 12:34:53 2014 +0200 0.2.1 NEWS | 7 +++++++ configure.ac | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) commit 143984b5a6529805272e937b965a9d9631835eb0 Author: Bastien Nocera Date: Tue Aug 5 13:18:08 2014 +0200 tests: Add test for previous commit Add test case for the double-INSERT, instead of INSERT followed by UPDATE, mentioned in https://bugzilla.gnome.org/show_bug.cgi?id=734029 tests/test-gom-insert.c | 252 ++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 223 insertions(+), 29 deletions(-) commit 0b104be3d580c7596452a70afe669d12baccc53e Author: Jonathon Jongsma Date: Thu Jul 31 11:06:14 2014 +0200 gom: Mark resources as from table after it is inserted Previously, if you create a new resource, then call gom_resource_save_*(), then change some properties and call _save() again, it will insert another item into the repository. With this change, it will mark the resource as being from the table, so that the next time save() is called, it was UPDATE, rather than INSERT. https://bugzilla.gnome.org/show_bug.cgi?id=734029 gom/gom-resource.c | 1 + 1 file changed, 1 insertion(+) commit 2211e085aa3734a02f52acc01dfa74b649b33b22 Author: Balázs Úr Date: Sat Jul 26 12:15:01 2014 +0200 Initial Hungarian translation po/hu.po | 196 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 196 insertions(+) commit 72e8b49594e37a4f7cad7a9e063b548e123caf44 Author: Balázs Úr Date: Sat Jul 26 12:14:41 2014 +0200 Added hu entry po/LINGUAS | 2 ++ 1 file changed, 2 insertions(+) commit a70533c2ecbc18a0787ec4f1178c8b8ac3e6f2b1 Author: Bastien Nocera Date: Wed Jul 16 16:13:52 2014 +0200 gom: Fix another memory management problem in GomFilter Follow-up to 93694570fde8e29dff132644baa2efb18ef31ff5. When appended to the target array, the values aren't refcounted, so destroying the whole source array would destroy the values as well. Disable the freeing of the individual items in the source array so that they're not destroyed along with the source array. The destination array will now assume ownership. gom/gom-filter.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 265e12e5b148bba9d9be07e4ef730143e35a4e12 Author: Tom Tryfonidis Date: Wed Jun 18 10:41:05 2014 +0000 Added Greek translation po/LINGUAS | 1 + po/el.po | 198 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 199 insertions(+) commit 926a56dc542c7ab531c833424517b632ac119d09 Author: Daniel Mustieles Date: Tue Jun 17 19:35:03 2014 +0200 Updated Spanish Translation po/LINGUAS | 3 +- po/es.po | 196 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 198 insertions(+), 1 deletion(-) commit e58eda1d0e99fc08c176e11a302305ee9f5f2393 Author: Victor Toso Date: Sun Jun 15 23:33:27 2014 -0300 tests: GomFilter from 3 queries https://bugzilla.gnome.org/show_bug.cgi?id=731701 .gitignore | 1 + tests/Makefile.include | 6 + tests/test-gom-find-specific.c | 395 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 402 insertions(+) commit 93694570fde8e29dff132644baa2efb18ef31ff5 Author: Bastien Nocera Date: Mon Jun 16 12:45:43 2014 +0200 gom: Fix AND/OR filters memory handling The values were getting double-freed. As gom_filter_get_values() returns a new array, no need to stuff it inside another array that we would create ourselves, just use that original array. https://bugzilla.gnome.org/show_bug.cgi?id=731701 gom/gom-filter.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) commit f786c45a6325cba74d2c449b5ff80386ac2c04ab Author: Bastien Nocera Date: Mon Jun 16 12:40:36 2014 +0200 gom: Better debug for gom_command_bind_param() gom/gom-command.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) commit 24abe21bb4d814f893fc68f46d3cb763a2bcf905 Author: Bastien Nocera Date: Mon Jun 16 12:19:07 2014 +0200 gom: Add support for short and long integers schar/uchar for guint8 and glong/gulong gom/gom-command-builder.c | 4 ++++ gom/gom-command.c | 12 ++++++++++++ 2 files changed, 16 insertions(+)