commit d5ae0f82654c728bef780b898bac3b0ae6a7d111 Author: Alex Tereschenko Date: Sun Dec 4 19:39:40 2016 +0100 NEWS: corrected bug tracker link Signed-off-by: Alex Tereschenko NEWS | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 0f504dc15e3bd74e53fc8091ba6b4dc5f498c3a5 Author: Alex Tereschenko Date: Sun Dec 4 19:38:39 2016 +0100 Tomboy.cs: added new contributors Signed-off-by: Alex Tereschenko Tomboy/Tomboy.cs | 2 ++ 1 file changed, 2 insertions(+) commit 3b61ca4da9c67081d6dcb79d0f294ec6a9e7ffb8 Author: Alex Tereschenko Date: Sun Dec 4 18:17:09 2016 +0100 Watchers.cs: add URL regex for Win-style paths we insert on drag'n'drop We will now properly highlight and open URLs produced by dragging and dropping a file or directory on Windows. Fixes #22. Signed-off-by: Alex Tereschenko Tomboy/Watchers.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 15fbb54d0d30571eeba2a8572e1acbb3ca323282 Author: Alex Tereschenko Date: Tue Nov 22 22:11:42 2016 +0100 Note.cs: add a comment for translators Signed-off-by: Alex Tereschenko Tomboy/Note.cs | 2 ++ 1 file changed, 2 insertions(+) commit 936239d0c4c07cfaf60d86eae6606eb98ac67753 Author: Marek Cernocky Date: Tue Nov 22 13:57:29 2016 +0100 Updated Czech translation po/cs.po | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) commit dd191166a32fa503e02459a7cd5db9fdfed3e675 Author: Piotr Drąg Date: Sun Nov 20 20:00:13 2016 +0100 Update Polish translation po/pl.po | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) commit 18aff247b63767fb3091a25b754c8401da1b82e1 Author: Alex Tereschenko Date: Sun Nov 20 18:09:31 2016 +0100 ExportAllApplicationAddin.cs: fix crash when a linked note is not found Fixes #25. Signed-off-by: Alex Tereschenko Tomboy/ExportAllApplicationAddin.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 040bc53ac7757a3e269322d5c8fe388f0c645faf Author: Piotr Drąg Date: Sun Nov 20 18:20:50 2016 +0100 Update Polish translation po/pl.po | 48 +++++++++++++++++++++++++++++------------------- 1 file changed, 29 insertions(+), 19 deletions(-) commit 28c868b7095fc19f032a376226a676f2c5889114 Author: Alex Tereschenko Date: Sun Nov 20 15:38:36 2016 +0100 build: add ax_require_config macro copy to our code This is to alleviate the problem with building the package on distros with older autoconf-archive version, which does not include this macro. Ubuntu 14 is one such distro. aclocal will overwrite our version if the OS has a newer version, as determined by the "serial" line in the macro. We will not track other files in m4 directory though, as the assumption is that such cases should be rare. Closes #26. Signed-off-by: Alex Tereschenko .gitignore | 1 - m4/.gitignore | 3 +++ m4/ax_require_defined.m4 | 37 +++++++++++++++++++++++++++++++++++++ 3 files changed, 40 insertions(+), 1 deletion(-) commit 9bba6ac387dc1bdb08bc3a5957216259bdb1f509 Author: Alex Tereschenko Date: Fri Nov 18 21:58:56 2016 +0100 configure: fix building on Debian and derivatives with DBus 2.0 Inspired by Debian's distro-level Tomboy source package patch by Iain Lane . Fixes #9. Signed-off-by: Alex Tereschenko Tomboy/RemoteControlProxy.cs | 3 +-- configure.ac | 4 +++- 2 files changed, 4 insertions(+), 3 deletions(-) commit a22fd448072d47efa678a05bbf9691973276d6d7 Merge: cd42bb4 28bc228 Author: Alex Tereschenko Date: Fri Nov 18 20:21:17 2016 +0100 Merge remote-tracking branch 'gnomegit/master' Looks like the GNOME repo got desynchronized with GH - getting back on track. commit 28bc228a07f3f524349ae05fac4a7c8078cb19f5 Author: Josef Andersson Date: Wed Nov 16 12:54:38 2016 +0000 Update Swedish translation po/sv.po | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) commit 79caaac8b53dc3b2a4fb1bce8e06b43c54833347 Author: Marek Cernocky Date: Wed Nov 16 11:53:16 2016 +0100 Updated Czech translation po/cs.po | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) commit e6a15210431df9a582b7da7a8bf5f96725a0cadf Author: Mario Blättermann Date: Tue Nov 15 10:52:27 2016 +0000 Update German translation help/de/de.po | 2978 +++++++++++++++++++++++++++++++-------------------------- 1 file changed, 1613 insertions(+), 1365 deletions(-) commit e6961051f0dd16e22610383408ff2ad80d5a00d6 Author: Mario Blättermann Date: Tue Nov 15 10:41:03 2016 +0000 Update German translation po/de.po | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) commit 1caab4feca24f8598bfb896f62a4c5feb583e4dd Author: Julien Hardelin Date: Tue Nov 15 09:45:57 2016 +0000 Update French translation help/fr/fr.po | 2693 +++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 1640 insertions(+), 1053 deletions(-) commit cd42bb48e282bd94fe19b8b9b6a2f3f18d9cba8a Author: Alex Tereschenko Date: Sun Nov 13 20:32:01 2016 +0100 Handle exceptions more gracefully on note save and log flush We now properly catch exceptions during log flush. In addition, we no longer create multiple error dialogs per note if user keeps the note window open for longer than saving timeout and the same exception hits again. We still have an error dialog per opened note, as we catch not only "disk full", but all exceptions during note save and different notes may theoretically get different exceptions. Closes #24. Signed-off-by: Alex Tereschenko Tomboy/Logger.cs | 20 +++++++++++++++----- Tomboy/Note.cs | 28 +++++++++++++++++++++++----- 2 files changed, 38 insertions(+), 10 deletions(-) commit 5e7ff5f93c7bfed1bd38449b73c4f2abab664b2f Author: Alex Tereschenko Date: Sun Nov 13 16:01:32 2016 +0100 SyncUtils.cs: make FUSE module load dialog more readable Closes #21 (and bgo595283). Signed-off-by: Alex Tereschenko Tomboy/Synchronization/SyncUtils.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) commit 7d83bd7a99d55af4a7806530f1463f87303e20fe Author: Alex Tereschenko Date: Sun Nov 13 15:38:27 2016 +0100 help: update help targets per Yelp migration guide Signed-off-by: Alex Tereschenko help/de/de.po | 4 ++-- help/el/el.po | 8 ++++---- help/en_GB/en_GB.po | 8 ++++---- help/es/es.po | 8 ++++---- help/eu/eu.po | 8 ++++---- help/it/it.po | 8 ++++---- help/lt/lt.po | 6 +++--- help/oc/oc.po | 4 ++-- help/ru/ru.po | 8 ++++---- help/sl/sl.po | 8 ++++---- help/uk/uk.po | 8 ++++---- help/vi/vi.po | 6 +++--- help/zh_CN/zh_CN.po | 8 ++++---- 13 files changed, 46 insertions(+), 46 deletions(-) commit 18b394fff9bb7e82c135a7f185b6c79ec4400433 Author: Alex Tereschenko Date: Sun Nov 13 15:03:02 2016 +0100 help/Makefile.am: remove doc-dist-hook, confirmed no longer needed As per example patches referenced on the migration page [1] this is indeed not needed. [1] https://wiki.gnome.org/action/show/Initiatives/GnomeGoals/NewDocumentationInfrastructure Signed-off-by: Alex Tereschenko help/Makefile.am | 5 ----- 1 file changed, 5 deletions(-) commit 462e54f2ac815f5e235c5a13cd54a3ad4180a379 Author: Rafael Fontenelle Date: Tue Oct 4 21:33:26 2016 +0000 Updated Brazilian Portuguese translation po/pt_BR.po | 83 ++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 47 insertions(+), 36 deletions(-) commit 62a9c0ad1418c7453458ceb2e63803fde2a58890 Author: Mario Blättermann Date: Sat Sep 24 17:17:23 2016 +0000 Updated German translation po/de.po | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) commit 88bec7c6480c23326a8b90111046fccd730d7f1c Author: Tiago Santos Date: Fri Sep 23 19:57:10 2016 +0000 Updated Portuguese translation po/pt.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) commit bbda8a990791283eacdf2420042b1c70b401303d Author: Marek Černocký Date: Sun Sep 18 19:29:42 2016 +0200 Updated Czech translation po/cs.po | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) commit 6e6e36d68e1e91af35a5376395be07a499395428 Author: Piotr Drąg Date: Sun Sep 18 19:03:09 2016 +0200 Updated Polish translation po/pl.po | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) commit aa6df8ad4df894065e7672ed94838a11c5ff77b6 Author: Anders Jonsson Date: Sun Sep 18 16:47:00 2016 +0000 Updated Swedish translation po/sv.po | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) commit ed2e6b48d9da7ff6969e3ec9476b9d908c0bd4a1 Author: Balázs Úr Date: Sun Sep 18 15:46:05 2016 +0000 Updated Hungarian translation po/hu.po | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) commit adfcbf4875b36eacf959c3930313a4236986cb0a Author: Jared L Jennings Date: Tue Oct 23 17:18:39 2012 -0500 NodeManager: remove GNOME panel mention from Start Here note Bug 559723 - "Start Here" note refers to "GNOME Panel", which is inappropriate for Windows, Mac, gnome-shell and Unity. Signed-off-by: Alex Tereschenko Tomboy/NoteManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 68b36740c1f69273849836b75451d3bce217be7c Author: Marek Černocký Date: Thu Sep 15 12:22:58 2016 +0200 Updated Czech translation help/cs/cs.po | 2823 +++++++++++++++++++++++++++++++-------------------------- 1 file changed, 1519 insertions(+), 1304 deletions(-) commit 9ecb72578e4649b3bdb3826fbaea9cf9d0b24298 Author: Alex Tereschenko Date: Mon Sep 12 20:36:18 2016 +0200 Makefile.am: replace removed MAINTAINERS file with DOAP one Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 73d219f95e017c1df0d249afc6fd2bf2826802ac Author: Alex Tereschenko Date: Mon Sep 12 20:34:32 2016 +0200 build: migrate off of the long outdated gnome-common infra According to https://wiki.gnome.org/Projects/GnomeCommon/Migration we should stop using gnome-common macros in our build files. .gitignore | 2 +- Makefile.am | 7 +- autogen.sh | 49 +++++-- configure.ac | 393 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ configure.in | 391 ------------------------------------------------------ help/Makefile.am | 16 ++- 6 files changed, 442 insertions(+), 416 deletions(-) commit 02e38a189a521fd20c12d59a7b35b35661f0b504 Author: Mario Blättermann Date: Fri Sep 9 18:48:41 2016 +0000 Updated German translation po/de.po | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) commit 9a441f98db608ea38eb8c1ddb820ae7fa5c03a21 Author: Alex Tereschenko Date: Thu Sep 8 21:44:30 2016 +0200 gitignore: added m4 dir, automake artifact Signed-off-by: Alex Tereschenko .gitignore | 1 + 1 file changed, 1 insertion(+) commit fdb76590f71c3f8121366b3426f5ca0f5540e9e0 Author: Philip Withnall Date: Fri May 2 16:18:27 2014 +0200 build: Remove GNOME_COMMON_INIT It is deprecated. Instead, ACLOCAL_AMFLAGS should be set in Makefile.am. https://bugzilla.gnome.org/show_bug.cgi?id=729390 Signed-off-by: Alex Tereschenko Makefile.am | 2 ++ configure.in | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) commit cb82e9aa96ca955db8aa91d07b07b55facc93014 Author: Piotr Drąg Date: Thu Sep 8 00:38:17 2016 +0200 Updated Polish translation help/pl/figures/add-notebook-search.png | Bin 60485 -> 56784 bytes help/pl/figures/add-to-notebook.png | Bin 33504 -> 30733 bytes help/pl/figures/delete-notebook.png | Bin 34234 -> 32469 bytes help/pl/figures/move-notes-search.png | Bin 64263 -> 58843 bytes help/pl/figures/new-notebook.png | Bin 64473 -> 57458 bytes help/pl/figures/note-template.png | Bin 34339 -> 32516 bytes help/pl/figures/notebook-icon.png | Bin 875 -> 864 bytes help/pl/figures/tomboy-main-menu.png | Bin 54717 -> 48855 bytes help/pl/figures/tomboy-new-note.png | Bin 18644 -> 16999 bytes help/pl/figures/tomboy-panel.png | Bin 10433 -> 9387 bytes help/pl/figures/tomboy-pindown.png | Bin 486 -> 419 bytes help/pl/figures/tomboy-pinup.png | Bin 408 -> 347 bytes help/pl/figures/tomboy-preferences-add-ins.png | Bin 49262 -> 43663 bytes help/pl/figures/tomboy-preferences-editing.png | Bin 46985 -> 41318 bytes help/pl/figures/tomboy-preferences-hotkeys.png | Bin 38027 -> 33396 bytes .../figures/tomboy-preferences-synchronization.png | Bin 33497 -> 29937 bytes help/pl/figures/tomboy-tools.png | Bin 2450 -> 2182 bytes help/pl/pl.po | 18 ++++++-------- po/pl.po | 27 +++++++++++---------- 19 files changed, 21 insertions(+), 24 deletions(-) commit 17d336fce9eb4ed953ec3884a90e0f4e0e916a9d Author: David Bannon Date: Wed Sep 7 18:56:45 2016 +1000 Update note list in Search All after deleting from Note window Fixes #13. Signed-off-by: Alex Tereschenko Tomboy/RecentChanges.cs | 1 + 1 file changed, 1 insertion(+) commit fce9df50c7dcab999609e60433b8bff7eb8388d6 Author: Alex Tereschenko Date: Tue Sep 6 20:27:44 2016 +0200 Added contribution guidelines to the repo CONTRIBUTING | 7 +++++++ 1 file changed, 7 insertions(+) commit 4683f5c2434892e55a6ee93d74b3d3f5996f6aef Author: Alex Tereschenko Date: Tue Sep 6 20:16:38 2016 +0200 readme: updated links, copyright years, target OSes README | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) commit 6f70ddd7aee99e0bec5e3d70fe751247743435c8 Author: Rafael Fontenelle Date: Tue Sep 6 16:00:35 2016 +0000 Updated Brazilian Portuguese translation po/pt_BR.po | 309 ++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 167 insertions(+), 142 deletions(-) commit ad3d8e8062716aa7196e7e5a8e50331a5a289dfd Author: Alex Tereschenko Date: Sun Aug 28 20:51:00 2016 +0200 Remove surplus files Changelog.pre-git is actually empty and unused, MAINTAINERS is long not used by GNOME infrastructure, DOAP file is used instead. ChangeLog.pre-git | 4 ---- MAINTAINERS | 27 --------------------------- 2 files changed, 31 deletions(-) commit 1fef15e4e1ed98adb474c6a8238ee3a2c3fa00fe Author: Alex Tereschenko Date: Sun Aug 28 21:36:07 2016 +0200 Update GTK# download link Setup/Setup.wxs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 6a1e226f9ed1b3fb0f72ae96afc39330746b64ed Author: Dominique Leuenberger Date: Sat Jun 18 13:43:28 2016 +0200 Build: fix building with recent make Signed-off-by: Alex Tereschenko Tomboy/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 734657e47a4e76acf5feced4defd39f87029e3d8 Author: Alex Tereschenko Date: Sun Aug 21 17:00:39 2016 +0200 configure.in: remove gmcs and dmcs checks, add mcs instead gmcs and dmcs are outdated these days and mcs is the only correct choice. Closes #10. configure.in | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) commit f536fa2e0ca557de0f3e795f83e4b183b0c22dd0 Author: Tiago Santos Date: Sat Aug 27 15:25:55 2016 +0000 Updated Portuguese translation po/pt.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit e4e06ec3eb9c86d85ad51ce3a50b0682447f7b1b Author: Tiago Santos Date: Sat Aug 27 15:23:28 2016 +0000 Updated Portuguese translation po/pt.po | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) commit 50d7a17b4d808a670bf856ad97924b440877d64b Author: Ask Hjorth Larsen Date: Fri Aug 26 03:02:25 2016 +0200 Updated Danish translation po/da.po | 178 ++++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 96 insertions(+), 82 deletions(-) commit c286fe0a268a5072f44f649e292a372bc89791d8 Author: Balázs Meskó Date: Mon Aug 22 13:04:55 2016 +0000 Updated Hungarian translation po/hu.po | 29 ++++++++++++----------------- 1 file changed, 12 insertions(+), 17 deletions(-) commit 2c70f40c1cb24292f7634226c18d64d6e6037e25 Author: Marek Černocký Date: Mon Aug 22 13:04:34 2016 +0200 Updated Czech translation po/cs.po | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) commit 1bb49c671d91160dbdc8c21dd9c7e16ff71614b1 Author: Anders Jonsson Date: Sun Aug 21 20:33:14 2016 +0000 Updated Swedish translation po/sv.po | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) commit e6aac3e0807621b4383ec21bdb06bbe2136c2405 Author: Мирослав Николић Date: Sun Aug 21 20:23:52 2016 +0200 Updated Serbian translation po/sr.po | 33 +++++++++++++++++++-------------- po/sr@latin.po | 33 +++++++++++++++++++-------------- 2 files changed, 38 insertions(+), 28 deletions(-) commit 9c1abe215d0efeed7f6020a886e91ab915d41cb5 Author: Aurimas Černius Date: Sun Aug 21 18:39:45 2016 +0300 Updated Lithuanian translation po/lt.po | 31 ++++++++++++++++++------------- 1 file changed, 18 insertions(+), 13 deletions(-) commit aca0ef991475ea5f75658270396907b2067f74b8 Author: Piotr Drąg Date: Sun Aug 21 17:18:24 2016 +0200 Updated Polish translation po/pl.po | 339 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 168 insertions(+), 171 deletions(-) commit 3b029e954045fb8ebfca8271908eb0f94c0c6f9d Author: Alex Tereschenko Date: Sun Aug 21 13:57:30 2016 +0200 Bump version to 1.15.6 Tomboy/Defines.WIN32.cs | 2 +- configure.in | 2 +- osx/Contents/Info.plist | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-)