commit dff862e4a3f83f022f264dd9d61f3b461f682ee0 Author: Isaque Galdino Date: Tue Aug 8 23:31:32 2017 -0300 config: glib-genmarshal 2.53.4 fix New glib version has rewritten glib-genmarshal and it's back compatible with versions prior 2.53.2. Build script was changed to accomodate that change. This is a workaround and it'll be removed from build scripts once we make glib 2.53.4 the minimum requirement. https://bugzilla.gnome.org/show_bug.cgi?id=785291 configure.ac | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit ef9698724a23be5d5f5233405324889bf25ca201 Author: Isaque Galdino Date: Sun Jul 30 22:29:05 2017 -0300 window-base: Transparent main window When there is no note to be shown, the application window is tranparent. This issue was introduced by "Port to WebKit2" commit: fb7b8bbac5ef3591d2f940f3034a4390468ad01d. The code that added that "feature" to the application was removed. https://bugzilla.gnome.org/show_bug.cgi?id=784824 src/bjb-window-base.c | 9 --------- 1 file changed, 9 deletions(-) commit 4be510ec6d006a282d4988ad3d4fe73088fe568a Author: Matej Urbančič Date: Tue Jul 25 12:05:10 2017 +0200 Updated Slovenian translation po/sl.po | 315 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 157 insertions(+), 158 deletions(-) commit a54e64b875d34648953803026b45754cf3df3aa4 Author: Mario Blättermann Date: Mon Jul 24 15:08:57 2017 +0000 Update German translation po/de.po | 307 ++++++++++++++++++++++++--------------------------------------- 1 file changed, 116 insertions(+), 191 deletions(-) commit e15e66359ee41c592c0f9aa83e82f988838bd2eb Author: Kukuh Syafaat Date: Mon Jul 10 11:55:19 2017 +0000 Update Indonesian translation po/id.po | 149 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 76 insertions(+), 73 deletions(-) commit 8779b2c7eb291b433a1f9b7541d833b2a1bcd450 Author: Marek Černocký Date: Sun Jun 25 12:07:58 2017 +0200 Updated Czech translation po/cs.po | 141 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 71 insertions(+), 70 deletions(-) commit 0975b809fbcf5b1c86ca29a41c412d6b0ca8515d Author: Daniel Mustieles Date: Sat Jun 24 16:51:23 2017 +0200 Updated Spanish translation po/es.po | 243 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 120 insertions(+), 123 deletions(-) commit caeec56413a78c0cee0a82a87ed61b74383e6e34 Author: Rafael Fontenelle Date: Sat Jun 24 14:34:28 2017 +0000 Update Brazilian Portuguese translation po/pt_BR.po | 302 ++++++++++++++++++++++++++++++------------------------------ 1 file changed, 150 insertions(+), 152 deletions(-) commit 127c7dd197139ce56232ef811d7935a389442a93 Author: Iñigo Martínez Date: Mon May 15 11:49:32 2017 +0200 bjb-main-toolbar: added config.h include There is a reference to GETTEXT_PACKAGE, which is defined in the config.h header, so the file is included explicitly. Signed-off-by: Isaque Galdino src/bjb-main-toolbar.c | 2 ++ 1 file changed, 2 insertions(+) commit bf04763c85b75368169d09dc572b52ff16072db5 Author: Isaque Galdino Date: Tue Jun 20 23:13:25 2017 -0300 build: Failed with redundant-decls error Ubuntu 17.10 is not being able to build it. Build fails with redundant redeclaration of marshaller code. Ubuntu 17.04 builds fine though. The issue is related to a new version of glib (2.53.2) which changed the way glib-genmarshal generates marshallers code (https://bugzilla.gnome.org/show_bug.cgi?id=781755). This patch fixes that while remains compatible with older glib versions. https://bugzilla.gnome.org/show_bug.cgi?id=783878 configure.ac | 6 ++++++ src/libbiji/Makefile.am | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) commit 1048328eae48ebb9de6be3a7286259d671c5034d Author: Mohammed Sadiq Date: Fri Jun 16 07:40:19 2017 +0530 serializer: Purge memory leak on save The html text wasn't freed after the text was saved. This was causing a bit huge memory leak https://bugzilla.gnome.org/show_bug.cgi?id=783847 Signed-off-by: Isaque Galdino src/libbiji/serializer/biji-lazy-serializer.c | 1 + 1 file changed, 1 insertion(+) commit b077a604b0559620b77526a1b8b0875dd3ce0e30 Author: Mohammed Sadiq Date: Fri Jun 16 07:47:34 2017 +0530 local-provider: Purge memory leak https://bugzilla.gnome.org/show_bug.cgi?id=783848 Signed-off-by: Isaque Galdino src/libbiji/provider/biji-local-provider.c | 2 ++ 1 file changed, 2 insertions(+) commit 97cd9faec88615d71c99989cbab42fccd778cb9f Author: Mohammed Sadiq Date: Fri Jun 16 07:54:03 2017 +0530 local-note: Purge memory leak when deleting note The path obtained for debug text was leaking, fix that. https://bugzilla.gnome.org/show_bug.cgi?id=783848 Signed-off-by: Isaque Galdino src/libbiji/provider/biji-local-note.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 5ce5172ca037eb7168ac287a0bccd801d3bc316a Author: Isaque Galdino Date: Thu Jun 15 15:40:34 2017 -0300 main-toolbar: Stuck in Trash View When you empty trash, in trash view, the main toolbar changes and you get stuck in that view. The only way to leave it is closing the application. That happens because the window state changes from ARCHIVE_VIEW to NO_NOTE, but this stated is shared by MAIN_VIEW as well, so it gets lost. This commit change the behavior to whenever you click empty trash, the window state continues to be ARCHIVE_VIEW, which is the default when you check Trash for the first time even without items. https://bugzilla.gnome.org/show_bug.cgi?id=763971 src/bjb-main-toolbar.c | 2 +- src/bjb-window-base.c | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) commit bbd6b4ab460a268110e94933c3bf0b667a594ff3 Author: Isaque Galdino Date: Thu Jun 15 10:33:21 2017 -0300 memo-provider: Wrong output 64 bits format gcc7 is complaining about a format for a 64 bits integer. The expected argument is of type 'long int', but it is using a 'long long int' instead. To fix that problem, we changed the format "%li" to "%"G_GINT64_FORMAT. https://bugzilla.gnome.org/show_bug.cgi?id=783714 src/libbiji/provider/biji-memo-provider.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit f346c7a7c7fdc3031725820267e1eb92a7d7415a Author: Anders Jonsson Date: Mon Jun 12 16:28:29 2017 +0000 Update Swedish translation po/sv.po | 141 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 71 insertions(+), 70 deletions(-) commit 1649d3a3d3bae9972ea89f08f78aea5b93cb96d6 Author: Milan Crha Date: Sun Jun 11 15:46:20 2017 -0300 memo-provider: Crash opening memo Application is crashing when trying to open a memo from the memo list. Code is not checking for null when processing start, last modified and created dates. This patch fixes that. https://bugzilla.gnome.org/show_bug.cgi?id=782998 src/libbiji/provider/biji-memo-provider.c | 3 +++ 1 file changed, 3 insertions(+) commit 5cbfeec214509b97d67877cfb0e52c6c37c6f6d4 Author: Isaque Galdino Date: Sun Jun 11 15:30:09 2017 -0300 main-toolbar: Missing break in case statement gcc7 is complainting about an implicit-fallthrough situation: a missing break in a case statement. This commit adds that to the code. https://bugzilla.gnome.org/show_bug.cgi?id=783465 src/bjb-main-toolbar.c | 1 + 1 file changed, 1 insertion(+) commit efcabf00020fe01fee75a3f55ae7a48e83de37d6 Author: Isaque Galdino Date: Sun Jun 11 15:10:31 2017 -0300 local-provider: Remove warning about .Trash folder When $HOME/.local/share/bijiben directory doesn't exist, application creates it, but it also complaints about another directory that doesn't exist: $HOME/.local/share/bijiben/.Trash. This patch removes that warning message because the .Trash directory will be created anyway. https://bugzilla.gnome.org/show_bug.cgi?id=783471 src/libbiji/provider/biji-local-provider.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit bdde37aab2268b385d8b1a5ebe7e7339392a18dc Author: Piotr Drąg Date: Thu Jun 8 20:11:21 2017 +0200 Add Polish help translation help/Makefile.am | 2 +- help/pl/pl.po | 767 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/pl.po | 8 +- 3 files changed, 772 insertions(+), 5 deletions(-) commit 417ac13c6782312cdaa8218c6b4aa207204ece49 Author: Emin Tufan Çetin Date: Wed Jun 7 12:16:25 2017 +0000 Update Turkish translation po/tr.po | 133 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 67 insertions(+), 66 deletions(-) commit fb1260032d4716c742819f5cfba873c552e432ba Author: Piotr Drąg Date: Tue Jun 6 12:21:25 2017 +0200 Update Polish translation po/pl.po | 145 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 73 insertions(+), 72 deletions(-) commit e8dc6f9135a32d5084bcc14dad8f23cc92bd3e2b Author: Isaque Galdino Date: Mon Jun 5 23:39:02 2017 -0300 Bump 3.24.0 release NEWS | 41 +++++++++++++++++++++++++++++++++++++++++ configure.ac | 2 +- po/POTFILES.in | 1 + 3 files changed, 43 insertions(+), 1 deletion(-)