diff -Nru bijiben-3.14.0/aclocal.m4 bijiben-3.14.1/aclocal.m4 --- bijiben-3.14.0/aclocal.m4 2014-09-22 21:23:53.000000000 +0000 +++ bijiben-3.14.1/aclocal.m4 2014-10-13 19:38:36.000000000 +0000 @@ -20,6 +20,254 @@ If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically 'autoreconf'.])]) +# nls.m4 serial 5 (gettext-0.18) +dnl Copyright (C) 1995-2003, 2005-2006, 2008-2013 Free Software Foundation, +dnl Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. +dnl +dnl This file can can be used in projects which are not available under +dnl the GNU General Public License or the GNU Library General Public +dnl License but which still want to provide support for the GNU gettext +dnl functionality. +dnl Please note that the actual code of the GNU gettext library is covered +dnl by the GNU Library General Public License, and the rest of the GNU +dnl gettext package package is covered by the GNU General Public License. +dnl They are *not* in the public domain. + +dnl Authors: +dnl Ulrich Drepper , 1995-2000. +dnl Bruno Haible , 2000-2003. + +AC_PREREQ([2.50]) + +AC_DEFUN([AM_NLS], +[ + AC_MSG_CHECKING([whether NLS is requested]) + dnl Default is enabled NLS + AC_ARG_ENABLE([nls], + [ --disable-nls do not use Native Language Support], + USE_NLS=$enableval, USE_NLS=yes) + AC_MSG_RESULT([$USE_NLS]) + AC_SUBST([USE_NLS]) +]) + +# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- +# serial 1 (pkg-config-0.24) +# +# Copyright © 2004 Scott James Remnant . +# +# 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 +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# PKG_PROG_PKG_CONFIG([MIN-VERSION]) +# ---------------------------------- +AC_DEFUN([PKG_PROG_PKG_CONFIG], +[m4_pattern_forbid([^_?PKG_[A-Z_]+$]) +m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) +m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) +AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) +AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) +AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) + +if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then + AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) +fi +if test -n "$PKG_CONFIG"; then + _pkg_min_version=m4_default([$1], [0.9.0]) + AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + PKG_CONFIG="" + fi +fi[]dnl +])# PKG_PROG_PKG_CONFIG + +# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +# +# Check to see whether a particular set of modules exists. Similar +# to PKG_CHECK_MODULES(), but does not set variables or print errors. +# +# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +# only at the first occurence in configure.ac, so if the first place +# it's called might be skipped (such as if it is within an "if", you +# have to call PKG_CHECK_EXISTS manually +# -------------------------------------------------------------- +AC_DEFUN([PKG_CHECK_EXISTS], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +if test -n "$PKG_CONFIG" && \ + AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then + m4_default([$2], [:]) +m4_ifvaln([$3], [else + $3])dnl +fi]) + +# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) +# --------------------------------------------- +m4_define([_PKG_CONFIG], +[if test -n "$$1"; then + pkg_cv_[]$1="$$1" + elif test -n "$PKG_CONFIG"; then + PKG_CHECK_EXISTS([$3], + [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes ], + [pkg_failed=yes]) + else + pkg_failed=untried +fi[]dnl +])# _PKG_CONFIG + +# _PKG_SHORT_ERRORS_SUPPORTED +# ----------------------------- +AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi[]dnl +])# _PKG_SHORT_ERRORS_SUPPORTED + + +# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +# [ACTION-IF-NOT-FOUND]) +# +# +# Note that if there is a possibility the first call to +# PKG_CHECK_MODULES might not happen, you should be sure to include an +# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac +# +# +# -------------------------------------------------------------- +AC_DEFUN([PKG_CHECK_MODULES], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl +AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl + +pkg_failed=no +AC_MSG_CHECKING([for $1]) + +_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) +_PKG_CONFIG([$1][_LIBS], [libs], [$2]) + +m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS +and $1[]_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details.]) + +if test $pkg_failed = yes; then + AC_MSG_RESULT([no]) + _PKG_SHORT_ERRORS_SUPPORTED + if test $_pkg_short_errors_supported = yes; then + $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` + else + $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD + + m4_default([$4], [AC_MSG_ERROR( +[Package requirements ($2) were not met: + +$$1_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +_PKG_TEXT])[]dnl + ]) +elif test $pkg_failed = untried; then + AC_MSG_RESULT([no]) + m4_default([$4], [AC_MSG_FAILURE( +[The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +_PKG_TEXT + +To get pkg-config, see .])[]dnl + ]) +else + $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS + $1[]_LIBS=$pkg_cv_[]$1[]_LIBS + AC_MSG_RESULT([yes]) + $3 +fi[]dnl +])# PKG_CHECK_MODULES + + +# PKG_INSTALLDIR(DIRECTORY) +# ------------------------- +# Substitutes the variable pkgconfigdir as the location where a module +# should install pkg-config .pc files. By default the directory is +# $libdir/pkgconfig, but the default can be changed by passing +# DIRECTORY. The user can override through the --with-pkgconfigdir +# parameter. +AC_DEFUN([PKG_INSTALLDIR], +[m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) +m4_pushdef([pkg_description], + [pkg-config installation directory @<:@]pkg_default[@:>@]) +AC_ARG_WITH([pkgconfigdir], + [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],, + [with_pkgconfigdir=]pkg_default) +AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) +m4_popdef([pkg_default]) +m4_popdef([pkg_description]) +]) dnl PKG_INSTALLDIR + + +# PKG_NOARCH_INSTALLDIR(DIRECTORY) +# ------------------------- +# Substitutes the variable noarch_pkgconfigdir as the location where a +# module should install arch-independent pkg-config .pc files. By +# default the directory is $datadir/pkgconfig, but the default can be +# changed by passing DIRECTORY. The user can override through the +# --with-noarch-pkgconfigdir parameter. +AC_DEFUN([PKG_NOARCH_INSTALLDIR], +[m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) +m4_pushdef([pkg_description], + [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@]) +AC_ARG_WITH([noarch-pkgconfigdir], + [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],, + [with_noarch_pkgconfigdir=]pkg_default) +AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) +m4_popdef([pkg_default]) +m4_popdef([pkg_description]) +]) dnl PKG_NOARCH_INSTALLDIR + + +# PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, +# [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +# ------------------------------------------- +# Retrieves the value of the pkg-config variable for the given module. +AC_DEFUN([PKG_CHECK_VAR], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl + +_PKG_CONFIG([$1], [variable="][$3]["], [$2]) +AS_VAR_COPY([$1], [pkg_cv_][$1]) + +AS_VAR_IF([$1], [""], [$5], [$4])dnl +])# PKG_CHECK_VAR + # Copyright (C) 1995-2002 Free Software Foundation, Inc. # Copyright (C) 2001-2003,2004 Red Hat, Inc. # @@ -540,254 +788,6 @@ ] ) -# nls.m4 serial 5 (gettext-0.18) -dnl Copyright (C) 1995-2003, 2005-2006, 2008-2013 Free Software Foundation, -dnl Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. -dnl -dnl This file can can be used in projects which are not available under -dnl the GNU General Public License or the GNU Library General Public -dnl License but which still want to provide support for the GNU gettext -dnl functionality. -dnl Please note that the actual code of the GNU gettext library is covered -dnl by the GNU Library General Public License, and the rest of the GNU -dnl gettext package package is covered by the GNU General Public License. -dnl They are *not* in the public domain. - -dnl Authors: -dnl Ulrich Drepper , 1995-2000. -dnl Bruno Haible , 2000-2003. - -AC_PREREQ([2.50]) - -AC_DEFUN([AM_NLS], -[ - AC_MSG_CHECKING([whether NLS is requested]) - dnl Default is enabled NLS - AC_ARG_ENABLE([nls], - [ --disable-nls do not use Native Language Support], - USE_NLS=$enableval, USE_NLS=yes) - AC_MSG_RESULT([$USE_NLS]) - AC_SUBST([USE_NLS]) -]) - -# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- -# serial 1 (pkg-config-0.24) -# -# Copyright © 2004 Scott James Remnant . -# -# 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 -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# PKG_PROG_PKG_CONFIG([MIN-VERSION]) -# ---------------------------------- -AC_DEFUN([PKG_PROG_PKG_CONFIG], -[m4_pattern_forbid([^_?PKG_[A-Z_]+$]) -m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) -m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) -AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) -AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) -AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) - -if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then - AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) -fi -if test -n "$PKG_CONFIG"; then - _pkg_min_version=m4_default([$1], [0.9.0]) - AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) - if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then - AC_MSG_RESULT([yes]) - else - AC_MSG_RESULT([no]) - PKG_CONFIG="" - fi -fi[]dnl -])# PKG_PROG_PKG_CONFIG - -# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) -# -# Check to see whether a particular set of modules exists. Similar -# to PKG_CHECK_MODULES(), but does not set variables or print errors. -# -# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) -# only at the first occurence in configure.ac, so if the first place -# it's called might be skipped (such as if it is within an "if", you -# have to call PKG_CHECK_EXISTS manually -# -------------------------------------------------------------- -AC_DEFUN([PKG_CHECK_EXISTS], -[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl -if test -n "$PKG_CONFIG" && \ - AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then - m4_default([$2], [:]) -m4_ifvaln([$3], [else - $3])dnl -fi]) - -# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) -# --------------------------------------------- -m4_define([_PKG_CONFIG], -[if test -n "$$1"; then - pkg_cv_[]$1="$$1" - elif test -n "$PKG_CONFIG"; then - PKG_CHECK_EXISTS([$3], - [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes ], - [pkg_failed=yes]) - else - pkg_failed=untried -fi[]dnl -])# _PKG_CONFIG - -# _PKG_SHORT_ERRORS_SUPPORTED -# ----------------------------- -AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], -[AC_REQUIRE([PKG_PROG_PKG_CONFIG]) -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi[]dnl -])# _PKG_SHORT_ERRORS_SUPPORTED - - -# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], -# [ACTION-IF-NOT-FOUND]) -# -# -# Note that if there is a possibility the first call to -# PKG_CHECK_MODULES might not happen, you should be sure to include an -# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac -# -# -# -------------------------------------------------------------- -AC_DEFUN([PKG_CHECK_MODULES], -[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl -AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl -AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl - -pkg_failed=no -AC_MSG_CHECKING([for $1]) - -_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) -_PKG_CONFIG([$1][_LIBS], [libs], [$2]) - -m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS -and $1[]_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details.]) - -if test $pkg_failed = yes; then - AC_MSG_RESULT([no]) - _PKG_SHORT_ERRORS_SUPPORTED - if test $_pkg_short_errors_supported = yes; then - $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` - else - $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD - - m4_default([$4], [AC_MSG_ERROR( -[Package requirements ($2) were not met: - -$$1_PKG_ERRORS - -Consider adjusting the PKG_CONFIG_PATH environment variable if you -installed software in a non-standard prefix. - -_PKG_TEXT])[]dnl - ]) -elif test $pkg_failed = untried; then - AC_MSG_RESULT([no]) - m4_default([$4], [AC_MSG_FAILURE( -[The pkg-config script could not be found or is too old. Make sure it -is in your PATH or set the PKG_CONFIG environment variable to the full -path to pkg-config. - -_PKG_TEXT - -To get pkg-config, see .])[]dnl - ]) -else - $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS - $1[]_LIBS=$pkg_cv_[]$1[]_LIBS - AC_MSG_RESULT([yes]) - $3 -fi[]dnl -])# PKG_CHECK_MODULES - - -# PKG_INSTALLDIR(DIRECTORY) -# ------------------------- -# Substitutes the variable pkgconfigdir as the location where a module -# should install pkg-config .pc files. By default the directory is -# $libdir/pkgconfig, but the default can be changed by passing -# DIRECTORY. The user can override through the --with-pkgconfigdir -# parameter. -AC_DEFUN([PKG_INSTALLDIR], -[m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) -m4_pushdef([pkg_description], - [pkg-config installation directory @<:@]pkg_default[@:>@]) -AC_ARG_WITH([pkgconfigdir], - [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],, - [with_pkgconfigdir=]pkg_default) -AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) -m4_popdef([pkg_default]) -m4_popdef([pkg_description]) -]) dnl PKG_INSTALLDIR - - -# PKG_NOARCH_INSTALLDIR(DIRECTORY) -# ------------------------- -# Substitutes the variable noarch_pkgconfigdir as the location where a -# module should install arch-independent pkg-config .pc files. By -# default the directory is $datadir/pkgconfig, but the default can be -# changed by passing DIRECTORY. The user can override through the -# --with-noarch-pkgconfigdir parameter. -AC_DEFUN([PKG_NOARCH_INSTALLDIR], -[m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) -m4_pushdef([pkg_description], - [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@]) -AC_ARG_WITH([noarch-pkgconfigdir], - [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],, - [with_noarch_pkgconfigdir=]pkg_default) -AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) -m4_popdef([pkg_default]) -m4_popdef([pkg_description]) -]) dnl PKG_NOARCH_INSTALLDIR - - -# PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, -# [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) -# ------------------------------------------- -# Retrieves the value of the pkg-config variable for the given module. -AC_DEFUN([PKG_CHECK_VAR], -[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl -AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl - -_PKG_CONFIG([$1], [variable="][$3]["], [$2]) -AS_VAR_COPY([$1], [pkg_cv_][$1]) - -AS_VAR_IF([$1], [""], [$5], [$4])dnl -])# PKG_CHECK_VAR - AC_DEFUN([YELP_HELP_INIT], [ AC_REQUIRE([AC_PROG_LN_S]) diff -Nru bijiben-3.14.0/ChangeLog bijiben-3.14.1/ChangeLog --- bijiben-3.14.0/ChangeLog 2014-09-22 21:24:47.000000000 +0000 +++ bijiben-3.14.1/ChangeLog 2014-10-13 19:38:52.000000000 +0000 @@ -1,3 +1,41 @@ +commit 7bf87dd2fc08929c4f51f778339f59b18dc69e8b +Author: Pierre-Yves Luyten +Date: Mon Oct 13 21:38:22 2014 +0200 + + Prepare for 3.14.1 + + NEWS | 9 +++++++++ + configure.ac | 2 +- + 2 files changed, 10 insertions(+), 1 deletion(-) + +commit c951bd39a3157ca9a345e1e94b6c6f6922b792d2 +Author: Rūdolfs Mazurs +Date: Sun Sep 28 16:32:14 2014 +0300 + + Updated Latvian translation + + po/lv.po | 201 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------- + 1 file changed, 111 insertions(+), 90 deletions(-) + +commit ff678277782c712ab3ea753aae2e4e241c6ae6b3 +Author: Pierre-Yves Luyten +Date: Fri Sep 26 21:38:52 2014 +0200 + + Update to latest libgd + + libgd | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 89b96a56d96bab8bda35a3db5ba540a656b54806 +Author: Pierre-Yves Luyten +Date: Mon Sep 22 23:25:49 2014 +0200 + + Prepare for 3.14.0 + + NEWS | 18 ++++++++++++++++++ + configure.ac | 2 +- + 2 files changed, 19 insertions(+), 1 deletion(-) + commit 3482f09105169eb4637b7cf17dc1c35c849bdb43 Author: Pawan Chitrakar Date: Mon Sep 22 01:18:54 2014 +0000 @@ -5,7 +43,7 @@ Added Nepali translation po/LINGUAS | 1 + - po/ne.po | 489 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/ne.po | 489 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 490 insertions(+) commit 483c669e7c7fc051dd39daee019b0932f7465cfc @@ -14,7 +52,7 @@ update Punjabi Translation for 3.14 release - po/pa.po | 214 ++++++++++++++++++++++++++++++++++----------------------------- + po/pa.po | 214 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------------------- 1 file changed, 116 insertions(+), 98 deletions(-) commit aec755f6ec5cca22e011cb9f119c5a87ba571b48 @@ -23,7 +61,7 @@ Updated Hungarian translation - help/hu/hu.po | 395 ++++++++++++++++++++++++++++++++++------------------------ + help/hu/hu.po | 395 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------ 1 file changed, 233 insertions(+), 162 deletions(-) commit 6945228a53fd149b8a3491a1979948ef5b671066 @@ -32,7 +70,7 @@ Updated Ukrainian translation - po/uk.po | 189 +++++++++++++++++++++++++++++++++++++-------------------------- + po/uk.po | 189 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------------- 1 file changed, 111 insertions(+), 78 deletions(-) commit c08f90f7b5c8b7ed221efd7920ede3c03ab0d934 @@ -41,7 +79,7 @@ Updated Danish translation - po/da.po | 178 ++++++++++++++++++++++++++++++++++++--------------------------- + po/da.po | 178 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------------------- 1 file changed, 102 insertions(+), 76 deletions(-) commit 5ed05644eecfae337400c035dc0341c9dd699dc5 @@ -50,7 +88,7 @@ Updated Swedish translation - po/sv.po | 334 +++++++++++++++++++++++++++++++++++++++++---------------------- + po/sv.po | 334 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------ 1 file changed, 219 insertions(+), 115 deletions(-) commit 9a3f2f66247a3ae7b322c90106b9f999340b92bd @@ -68,8 +106,8 @@ Updated Serbian translation - po/sr.po | 191 ++++++++++++++++++++++++++++++--------------------------- - po/sr@latin.po | 191 ++++++++++++++++++++++++++++++--------------------------- + po/sr.po | 191 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------ + po/sr@latin.po | 191 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------ 2 files changed, 204 insertions(+), 178 deletions(-) commit 8e5330dddc01a8603d494be210d93a21767c888d @@ -78,7 +116,7 @@ Updated Turkish translation - po/tr.po | 403 +++++++++++++++++++++++++++++++++++++-------------------------- + po/tr.po | 403 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------------- 1 file changed, 239 insertions(+), 164 deletions(-) commit 17ff22b7ea59be001665d2804a039f75e445513b @@ -87,7 +125,7 @@ Updated German translation - po/de.po | 84 +++++++++++++++++++++++++++++++--------------------------------- + po/de.po | 84 +++++++++++++++++++++++++++++++++++++++++------------------------------------------- 1 file changed, 41 insertions(+), 43 deletions(-) commit 3af6ef2aa47066f11e59ea6b311c943b868ae72f @@ -106,7 +144,7 @@ Updated Slovenian translation - po/sl.po | 165 +++++++++++++++++++++++++++++++++++---------------------------- + po/sl.po | 165 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------- 1 file changed, 91 insertions(+), 74 deletions(-) commit 7ed042f44a6b8574846f80ab5a78edeebce1cbb2 @@ -116,7 +154,7 @@ Added Arabic translation po/LINGUAS | 1 + - po/ar.po | 471 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/ar.po | 471 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 472 insertions(+) commit a4aa8c265c8d4666e21bd204a71cebdb30bc9e60 @@ -125,7 +163,7 @@ Updated Hungarian translation - po/hu.po | 94 ++++++++++++++++++++++++++++++++-------------------------------- + po/hu.po | 94 +++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------- 1 file changed, 47 insertions(+), 47 deletions(-) commit 2cb7bb2752e53dedda97c90f9c6f152c1bb1bfb5 @@ -134,7 +172,7 @@ Updated Lithuanian translation - po/lt.po | 70 ++++++++++++++++++++++++++++++++-------------------------------- + po/lt.po | 70 +++++++++++++++++++++++++++++++++++----------------------------------- 1 file changed, 35 insertions(+), 35 deletions(-) commit 56b48c52364cc7c688fb7d3f9992d3420974eb43 @@ -143,7 +181,7 @@ Updated Slovak translation - po/sk.po | 174 ++++++++++++++++++++++++++++++--------------------------------- + po/sk.po | 174 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------------------------------- 1 file changed, 84 insertions(+), 90 deletions(-) commit 849215997c6e5a961dad1e0db51d54e6202bcf9b @@ -152,7 +190,7 @@ Updated Polish translation - po/pl.po | 146 ++++++++++++++++++++++++++++++++------------------------------- + po/pl.po | 146 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------------------- 1 file changed, 75 insertions(+), 71 deletions(-) commit 4f36af42ce94ae320a16e601d26a5c2ffad982ef @@ -161,7 +199,7 @@ Updated Czech translation - help/cs/cs.po | 95 +++++++++++++++++++++++++++++++++++++++++------------------ + help/cs/cs.po | 95 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 66 insertions(+), 29 deletions(-) commit 020a941f3a02ddb21aa10ca9dfbddbba869309b0 @@ -179,7 +217,7 @@ Updated Italian translation - po/it.po | 187 +++++++++++++++++++++++++++++++++------------------------------ + po/it.po | 187 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------------------------- 1 file changed, 99 insertions(+), 88 deletions(-) commit 5291a0775c2735bba23d440aae04504ed3aee27f @@ -188,7 +226,7 @@ Finnish translation update by Jiri Grönroos - po/fi.po | 97 ++++++++++++++++++++++++++++++++-------------------------------- + po/fi.po | 97 ++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------- 1 file changed, 48 insertions(+), 49 deletions(-) commit a6c14c2f98edd3395d727f282c9c1fc230bada81 @@ -224,8 +262,8 @@ Updated Greek translations - help/el/el.po | 242 +++++++++++++++++++++++++++++++++++++++++++--------------- - po/el.po | 11 ++- + help/el/el.po | 242 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------ + po/el.po | 11 +++--- 2 files changed, 185 insertions(+), 68 deletions(-) commit de435ebaba23618177b3a6eef02c76bd26a54fdb @@ -234,7 +272,7 @@ Updated Russian translation - po/ru.po | 138 +++++++++++++++++++++++---------------------------------------- + po/ru.po | 138 +++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------------------------------- 1 file changed, 49 insertions(+), 89 deletions(-) commit 13d639c7ef9840bcdffbb6ce8a4ef8afe466474b @@ -243,7 +281,7 @@ Updated Korean translation - po/ko.po | 180 +++++++++++++++++++++++++++++++++++---------------------------- + po/ko.po | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------ 1 file changed, 101 insertions(+), 79 deletions(-) commit 27a973f42282049cf5e4fd39af9104fc452aafd8 @@ -252,7 +290,7 @@ Updated French translation - po/fr.po | 163 +++++++++++++++++++++++++++++++++++---------------------------- + po/fr.po | 163 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------------- 1 file changed, 92 insertions(+), 71 deletions(-) commit 4fd299b072c112e2049ae2db24fecda435a38c26 @@ -261,7 +299,7 @@ Updated Galician translations - po/gl.po | 89 +++++++++++++++++++++++++++++++++------------------------------- + po/gl.po | 89 ++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------- 1 file changed, 46 insertions(+), 43 deletions(-) commit 8104cae4caf13789cf587cc458b74e9d20d249d3 @@ -288,7 +326,7 @@ Updated Indonesian translation - po/id.po | 88 ++++++++++++++++++++++++++++++++-------------------------------- + po/id.po | 88 ++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------- 1 file changed, 44 insertions(+), 44 deletions(-) commit 3aec3c9719bc25862345475143121b66f555e5e9 @@ -307,7 +345,7 @@ Updated Spanish translation - po/es.po | 69 ++++++++++++++++++++++++++++++++-------------------------------- + po/es.po | 69 +++++++++++++++++++++++++++++++++++---------------------------------- 1 file changed, 35 insertions(+), 34 deletions(-) commit 8d4dfa3f0efdb612bbfcea93cf8ee59b6718384b @@ -316,7 +354,7 @@ Updated Spanish translation - help/es/es.po | 69 +++++++++++++++++++++++++++++++++++------------------------ + help/es/es.po | 69 +++++++++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 41 insertions(+), 28 deletions(-) commit 0b738b04ec4d391342ada180e98b6dac9576a807 @@ -326,7 +364,7 @@ Added Oriya translation po/LINGUAS | 1 + - po/or.po | 475 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/or.po | 475 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 476 insertions(+) commit 4a472f1185af18d165f300f90657023c5dd13980 @@ -375,8 +413,8 @@ Updated Traditional Chinese translation(Hong Kong and Taiwan) - po/zh_HK.po | 236 +++++++++++++++++++++++------------------------------------- - po/zh_TW.po | 45 ++++++------ + po/zh_HK.po | 236 ++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------------------------- + po/zh_TW.po | 45 +++++++++++------------ 2 files changed, 114 insertions(+), 167 deletions(-) commit bf801d859287c5d6ab7a296aa86b1b9b33a466b1 @@ -385,7 +423,7 @@ Updated Hebrew translation - po/he.po | 81 +++++++++++++++++++++++++++++++++------------------------------- + po/he.po | 81 ++++++++++++++++++++++++++++++++++++++++++--------------------------------------- 1 file changed, 42 insertions(+), 39 deletions(-) commit 5cf2bfcd72faebef5a32a3011146c6f6ca527b5a @@ -394,7 +432,7 @@ Updated Greek translation - po/el.po | 69 ++++++++++++++++++++++++++++++++-------------------------------- + po/el.po | 69 +++++++++++++++++++++++++++++++++++---------------------------------- 1 file changed, 35 insertions(+), 34 deletions(-) commit f1d593e80885c9061afd39a32d8ae73b78e41149 @@ -403,7 +441,7 @@ Updated Assamese translation - po/as.po | 77 +++++++++++++++++++++++++++++----------------------------------- + po/as.po | 77 +++++++++++++++++++++++++++++++++++------------------------------------------ 1 file changed, 35 insertions(+), 42 deletions(-) commit 420d78f3c49876d582ece340484136859788e595 @@ -464,7 +502,7 @@ Updated Czech translation - help/cs/cs.po | 103 ++++++++++++++++++++++++++++++++++++++++++++++++++-------- + help/cs/cs.po | 103 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 89 insertions(+), 14 deletions(-) commit e203ae154c58089f170fb8b70df28146e9f8ce5b @@ -473,7 +511,7 @@ last updated : adapt on color - src/bjb-note-view.c | 54 ++++++++++++++++++++++++++++++++++++----------------- + src/bjb-note-view.c | 54 +++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 37 insertions(+), 17 deletions(-) commit dccd8ce47202547e69825659c1d9b0e0d53ab9c8 @@ -482,7 +520,7 @@ editor : use g_file_replace_contents to adapt css - src/libbiji/editor/biji-webkit-editor.c | 74 ++++++++++++++++++++++++--------- + src/libbiji/editor/biji-webkit-editor.c | 74 +++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------- 1 file changed, 55 insertions(+), 19 deletions(-) commit e94d55aab0b54ff6da6220b4dc28658e3196cb6c @@ -494,7 +532,7 @@ While creating the css, use an async command. Wait for it before to handle css file content. - src/libbiji/editor/biji-webkit-editor.c | 77 +++++++++++++++++++++------------ + src/libbiji/editor/biji-webkit-editor.c | 77 +++++++++++++++++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 49 insertions(+), 28 deletions(-) commit 9744c2ac7c587223b7fc1f15b6c26aea7b8c065d @@ -512,8 +550,8 @@ editor: make _change_css_file static - src/libbiji/editor/biji-webkit-editor.c | 140 ++++++++++++++++---------------- - src/libbiji/editor/biji-webkit-editor.h | 2 - + src/libbiji/editor/biji-webkit-editor.c | 140 ++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------------- + src/libbiji/editor/biji-webkit-editor.h | 2 -- 2 files changed, 71 insertions(+), 71 deletions(-) commit 61c55df2ffa57c9c65ee394118be38b5b0e6586f @@ -522,11 +560,11 @@ Install a single css file. Amend it at runtime. - data/Default-black.css | 32 ------------------ - data/Default-white.css | 32 ------------------ - data/Default.css | 32 ++++++++++++++++++ - data/Makefile.am | 3 +- - src/libbiji/editor/biji-webkit-editor.c | 58 ++++++++++++++++++++++++++++----- + data/Default-black.css | 32 -------------------------------- + data/Default-white.css | 32 -------------------------------- + data/Default.css | 32 ++++++++++++++++++++++++++++++++ + data/Makefile.am | 3 +-- + src/libbiji/editor/biji-webkit-editor.c | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++-------- 5 files changed, 83 insertions(+), 74 deletions(-) commit e862d99b793e05b84c359eb342affce1cdf96f78 @@ -535,7 +573,7 @@ Updated Chinese (Taiwan) translation - po/zh_TW.po | 65 ++++++++++++++++++++++++++++++------------------------------- + po/zh_TW.po | 65 ++++++++++++++++++++++++++++++++--------------------------------- 1 file changed, 32 insertions(+), 33 deletions(-) commit ece45b3f8e444bf705bbd97af353b668d00a3b55 @@ -544,7 +582,7 @@ Updated Czech translation - po/cs.po | 102 ++++++++++++++++++++++++++++++--------------------------------- + po/cs.po | 102 +++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------------- 1 file changed, 49 insertions(+), 53 deletions(-) commit 366aceeeb5280c82fabad6ed28b8aacc09ab32f4 @@ -586,7 +624,7 @@ Updated Spanish translation - help/es/es.po | 95 ++++++++++++++++++++++++++++++++++++++++++++++++++++++----- + help/es/es.po | 95 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 88 insertions(+), 7 deletions(-) commit c2431516dd0f67c3e87862a78a5ae7286bbc746c @@ -605,7 +643,7 @@ [l10n] Updated Catalan (Valencian) translation - po/ca@valencia.po | 100 +++++++++++++++++++++++++++--------------------------- + po/ca@valencia.po | 100 ++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------------- 1 file changed, 50 insertions(+), 50 deletions(-) commit f74c331c9e47dc8450030b6109daec0bca3f9dcf @@ -614,7 +652,7 @@ [l10n] Updated Catalan translation - po/ca.po | 141 +++++++++++++++++++++++++++++++++------------------------------ + po/ca.po | 141 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------------------- 1 file changed, 73 insertions(+), 68 deletions(-) commit 51f0c9d158ed1030f8195cd83cdc1ae5dc76a1f4 @@ -623,7 +661,7 @@ Finnish translation update - po/fi.po | 201 ++++++++++++++++++++++++++------------------------------------- + po/fi.po | 201 ++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------------------------ 1 file changed, 82 insertions(+), 119 deletions(-) commit ef024d4dd1140c2b2fa8aaa5bd08e464fe1c7de7 @@ -672,9 +710,9 @@ This folder will be used, thus, offering an offline mode. Fixes #733906. - src/libbiji/provider/biji-own-cloud-note.c | 33 +++++-- + src/libbiji/provider/biji-own-cloud-note.c | 33 +++++++++++++++++---- src/libbiji/provider/biji-own-cloud-note.h | 3 +- - src/libbiji/provider/biji-own-cloud-provider.c | 132 +++++++++++++++++++++++-- + src/libbiji/provider/biji-own-cloud-provider.c | 132 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------- 3 files changed, 151 insertions(+), 17 deletions(-) commit ce0881e9aad3d1b1231368dd523eb87f035f4947 @@ -692,7 +730,7 @@ added view-trash.page updated Makefile.am bug 728130 - help/C/view-trash.page | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++ + help/C/view-trash.page | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ help/Makefile.am | 1 + 2 files changed, 59 insertions(+) @@ -702,7 +740,7 @@ Updated Assamese translation - po/as.po | 237 +++++++++++++++++++++++++++++++++++++-------------------------- + po/as.po | 237 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------------- 1 file changed, 140 insertions(+), 97 deletions(-) commit 4554d69a90b1cbb6568c2cdf628627a9b8a795a0 @@ -720,7 +758,7 @@ Updated German translation - po/de.po | 133 ++++++++++++++++++++++++++++++++++----------------------------- + po/de.po | 133 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------------------------- 1 file changed, 71 insertions(+), 62 deletions(-) commit 626896bdc5d9f5853cee6e067017e44b666e5a5e @@ -729,7 +767,7 @@ Updated Dutch translation by Erwin Poeze - po/nl.po | 264 ++++++++++++++++++++++++++++++++++++++------------------------- + po/nl.po | 264 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------ 1 file changed, 160 insertions(+), 104 deletions(-) commit 8565a1661e8d61bef157b29e9fd491e852bf3dfe @@ -756,7 +794,7 @@ Updated Basque language - po/eu.po | 153 ++++++++++++++++++++++++++++++++++++--------------------------- + po/eu.po | 153 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------------- 1 file changed, 87 insertions(+), 66 deletions(-) commit 2ecbde91101fec288b21680685d29adbea9f4947 @@ -801,7 +839,7 @@ Updated Greek translation - help/el/el.po | 112 +++++++++++++++++++++++++++++++--------------------------- + help/el/el.po | 112 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------------- 1 file changed, 59 insertions(+), 53 deletions(-) commit 033572995efc8b684f9452ab1815fce6e9dda5b3 @@ -915,7 +953,7 @@ Updated Lithuanian translation - po/lt.po | 163 +++++++++++++++++++++++++++++++++------------------------------ + po/lt.po | 163 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------------------------- 1 file changed, 85 insertions(+), 78 deletions(-) commit ccccbf80666a864f0f6627c9ffd0282b733aef0d @@ -996,7 +1034,7 @@ Updated Hebrew translation - po/he.po | 68 +++++++++++++++++++++++++++++++++++++--------------------------- + po/he.po | 68 +++++++++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 39 insertions(+), 29 deletions(-) commit 8de1fd066a917674329fc43c914a6369aa3aa119 @@ -1005,7 +1043,7 @@ Updated Greek translation - po/el.po | 168 ++++++++++++++++++++++++++++++++++----------------------------- + po/el.po | 168 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------- 1 file changed, 92 insertions(+), 76 deletions(-) commit a8fc0ac48c1f8c349e1373002b18ab8a7589c64d @@ -1034,7 +1072,7 @@ Updated Galician translations - po/gl.po | 162 +++++++++++++++++++++++++++++++++++---------------------------- + po/gl.po | 162 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------- 1 file changed, 89 insertions(+), 73 deletions(-) commit 9345c66f6de6c3f10fc499f9a48102bdc909a5db @@ -1043,7 +1081,7 @@ Updated Russian translation - po/ru.po | 157 +++++++++++++++++++++++++++++++++------------------------------ + po/ru.po | 157 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------------------------- 1 file changed, 83 insertions(+), 74 deletions(-) commit 85ee2efcb0de8f746a6c4d87873588f03a96fc95 @@ -1080,7 +1118,7 @@ Updated Hungarian translation - po/hu.po | 193 ++++++++++++++++++++++++++++++++------------------------------- + po/hu.po | 193 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------------------- 1 file changed, 99 insertions(+), 94 deletions(-) commit 2d8454dbaa484eaf1e6350f89114ae637a118128 @@ -1089,7 +1127,7 @@ Updated Chinese (Taiwan) translation - po/zh_TW.po | 226 +++++++++++++++++++++++------------------------------------- + po/zh_TW.po | 226 +++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------------------------------------- 1 file changed, 86 insertions(+), 140 deletions(-) commit 3bc931f29ac209fe8e87f4a2ae0607cfa14a243b @@ -1119,8 +1157,8 @@ Add a new commandline option, to create a new note at startup. See https://bugzilla.gnome.org/show_bug.cgi?id=724000 - src/bjb-bijiben.c | 67 ++++++++++++++++++++++++++++++++++------------------ - src/bjb-controller.c | 17 +++++++++++-- + src/bjb-bijiben.c | 67 ++++++++++++++++++++++++++++++++++++++++++++----------------------- + src/bjb-controller.c | 17 +++++++++++++++-- 2 files changed, 59 insertions(+), 25 deletions(-) commit fd30273cac50e2dd4621134ac87d387a76ecdef1 @@ -1150,7 +1188,7 @@ Updated Spanish translation - po/es.po | 71 +++++++++++++++++++++++++++++++++++----------------------------- + po/es.po | 71 +++++++++++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 39 insertions(+), 32 deletions(-) commit 1592ffb1ff1a1e7ab6d3f1b1b523e0d6d22e9a17 @@ -1172,7 +1210,7 @@ See 731441 - data/icons/hicolor_actions_scalable_link.svg | 38 +++++++++++++++------------- + data/icons/hicolor_actions_scalable_link.svg | 38 ++++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 18 deletions(-) commit e4ede7487af3a4204ee02f79079b8e13cc588146 @@ -1183,8 +1221,8 @@ See 731441 - data/icons/hicolor_actions_scalable_note.svg | 79 +++++----------------------- - src/bjb-empty-results-box.c | 3 +- + data/icons/hicolor_actions_scalable_note.svg | 79 ++++++++++++++----------------------------------------------------------------- + src/bjb-empty-results-box.c | 3 +-- 2 files changed, 15 insertions(+), 67 deletions(-) commit 3f7da325dc7edadbcc1c9d41d358d32b8e5198ac @@ -1224,7 +1262,7 @@ Updated Norwegian bokmål translation. - po/nb.po | 112 +++++++++++++++++++++++++++++++++------------------------------ + po/nb.po | 112 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------ 1 file changed, 58 insertions(+), 54 deletions(-) commit a7c7a09e0059e02ba1a9dca4caecb160bbf6637c @@ -1261,7 +1299,7 @@ Updated Indonesian translation - po/id.po | 134 +++++++++++++++++++++++++++++++++------------------------------ + po/id.po | 134 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------------------------- 1 file changed, 70 insertions(+), 64 deletions(-) commit 39b9b1364855f84ec5ea971e0f645470dba099b0 @@ -1279,7 +1317,7 @@ Updated Brazilian Portuguese translation - po/pt_BR.po | 150 +++++++++++++++++++++++++++++++----------------------------- + po/pt_BR.po | 150 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------------------------- 1 file changed, 77 insertions(+), 73 deletions(-) commit b9af15a43826ae59e7970f0ab6e35dc9ce7a6728 @@ -1420,7 +1458,7 @@ ownCloud: abort when a failure happens - src/libbiji/provider/biji-own-cloud-provider.c | 27 ++++++++++++++++++++++++-- + src/libbiji/provider/biji-own-cloud-provider.c | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) commit bf119d03786a912065e5b372e3688f4226866341 @@ -1450,7 +1488,7 @@ Include git.mk in tree - git.mk | 318 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + git.mk | 318 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 318 insertions(+) commit 7c1a50a53fa86f26858e5984c9edbabc34ebea76 @@ -1477,7 +1515,7 @@ Updated Spanish translation - po/es.po | 117 +++++++++++++++++++++++++++++++++------------------------------ + po/es.po | 117 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------------------- 1 file changed, 61 insertions(+), 56 deletions(-) commit be7a6b65102dcd56d8983b08199857a40efc87ca @@ -1495,7 +1533,7 @@ [l10n] Updated Catalan (Valencian) translation - po/ca@valencia.po | 310 ++++++++++++++++++++++++++++++++++++++---------------- + po/ca@valencia.po | 310 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------- 1 file changed, 217 insertions(+), 93 deletions(-) commit 08b1eaff87236579aeebc12e37619c6154d3d6c9 @@ -1538,8 +1576,8 @@ vjournal: first draft to create new notes - src/libbiji/biji-note-obj.c | 3 + - src/libbiji/provider/biji-memo-provider.c | 144 +++++++++++++++++++++++++++--- + src/libbiji/biji-note-obj.c | 3 ++ + src/libbiji/provider/biji-memo-provider.c | 144 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------- 2 files changed, 135 insertions(+), 12 deletions(-) commit 6906728dc6abb474b02a94baa59a115a424b1395 @@ -1557,9 +1595,9 @@ VJOURNAL: start supporting time - src/libbiji/provider/biji-memo-note.c | 8 +- - src/libbiji/provider/biji-memo-provider.c | 127 ++++++++++++++++-------------- - src/libbiji/provider/biji-memo-provider.h | 11 ++- + src/libbiji/provider/biji-memo-note.c | 8 +++++- + src/libbiji/provider/biji-memo-provider.c | 127 ++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------- + src/libbiji/provider/biji-memo-provider.h | 11 +++++++- 3 files changed, 83 insertions(+), 63 deletions(-) commit 850d31dbd42da7989dcbce5a54fe787df2901758 @@ -1568,7 +1606,7 @@ Vjournal: implemented "delete" - src/libbiji/provider/biji-memo-note.c | 58 ++++++++++++++++++++++++++++++----- + src/libbiji/provider/biji-memo-note.c | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 51 insertions(+), 7 deletions(-) commit 8bd16a08fc1f8a212576eb1f319fab6bb6c34eab @@ -1580,7 +1618,7 @@ Providers display to the user an icon This should help to identify the storage - src/libbiji/provider/biji-memo-provider.c | 80 +++++++++++++++++++++++-------- + src/libbiji/provider/biji-memo-provider.c | 80 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------- 1 file changed, 61 insertions(+), 19 deletions(-) commit b2fa84a73a6673fe0f6d31c68d9978657f402a8e @@ -1620,17 +1658,17 @@ - Saving note does not damage attachments and so on configure.ac | 6 +- - src/bjb-bijiben.c | 50 ++- + src/bjb-bijiben.c | 50 +++++++- src/libbiji/Makefile.am | 4 + - src/libbiji/biji-manager.c | 16 +- + src/libbiji/biji-manager.c | 16 ++- src/libbiji/biji-manager.h | 13 +- src/libbiji/biji-note-obj.c | 9 +- - src/libbiji/biji-note-obj.h | 33 ++ + src/libbiji/biji-note-obj.h | 33 +++++ src/libbiji/editor/biji-webkit-editor.c | 2 +- - src/libbiji/provider/biji-memo-note.c | 432 +++++++++++++++++++++ - src/libbiji/provider/biji-memo-note.h | 71 ++++ - src/libbiji/provider/biji-memo-provider.c | 590 +++++++++++++++++++++++++++++ - src/libbiji/provider/biji-memo-provider.h | 72 ++++ + src/libbiji/provider/biji-memo-note.c | 432 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/provider/biji-memo-note.h | 71 +++++++++++ + src/libbiji/provider/biji-memo-provider.c | 590 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/provider/biji-memo-provider.h | 72 +++++++++++ src/libbiji/provider/biji-own-cloud-note.c | 2 +- 13 files changed, 1293 insertions(+), 7 deletions(-) @@ -1651,7 +1689,7 @@ Updated German translation - po/de.po | 288 +++++++++++++++++++++++++++++++++++++++++++-------------------- + po/de.po | 288 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------- 1 file changed, 197 insertions(+), 91 deletions(-) commit 1c436b7945449122175ab28c005b05b0964095be @@ -1671,7 +1709,7 @@ help/Makefile.am | 2 +- help/pt_BR/figures/notes-scr.png | Bin 0 -> 78902 bytes - help/pt_BR/pt_BR.po | 536 +++++++++++++++++++++++++++++++++++++++ + help/pt_BR/pt_BR.po | 536 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 537 insertions(+), 1 deletion(-) commit df79b5dfdd99243d8b74612200d6e5a6ff1eb99e @@ -1681,10 +1719,10 @@ local-note : move to provider src/libbiji/Makefile.am | 4 +- - src/libbiji/biji-local-note.c | 369 --------------------------------- - src/libbiji/biji-local-note.h | 60 ------ - src/libbiji/provider/biji-local-note.c | 369 +++++++++++++++++++++++++++++++++ - src/libbiji/provider/biji-local-note.h | 60 ++++++ + src/libbiji/biji-local-note.c | 369 -------------------------------------------------------------------------------------------- + src/libbiji/biji-local-note.h | 60 --------------- + src/libbiji/provider/biji-local-note.c | 369 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/provider/biji-local-note.h | 60 +++++++++++++++ 5 files changed, 431 insertions(+), 431 deletions(-) commit 113a69c4a0b220dba44bb7a61e3dee0716a0cbaf @@ -1706,8 +1744,8 @@ Quite obvious once known. - .gitignore | 58 ------------------------------------ - Makefile.am | 19 ++++++++++++ + .gitignore | 58 ---------------------------------------------------------- + Makefile.am | 19 +++++++++++++++++++ data/Makefile.am | 2 ++ data/icons/Makefile.am | 2 ++ help/Makefile.am | 2 ++ @@ -1745,7 +1783,7 @@ Czech translation - help/cs/cs.po | 532 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + help/cs/cs.po | 532 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 532 insertions(+) commit 11ed457a0ab14d8dea11684f043a5b0395caad6a @@ -1763,7 +1801,7 @@ Updated Czech translation - po/cs.po | 103 ++++++++++++++++++++++++++++++++++----------------------------- + po/cs.po | 103 +++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------ 1 file changed, 55 insertions(+), 48 deletions(-) commit 6a041c4e5ce3510c913909c105290a0259ec8354 @@ -1794,8 +1832,8 @@ This func really belongs to provider. Does not change anything for now. - src/libbiji/biji-manager.c | 103 +++++------------------------ - src/libbiji/provider/biji-local-provider.c | 80 +++++++++++++++++++++- + src/libbiji/biji-manager.c | 103 +++++++++++++++------------------------------------------------------------------------- + src/libbiji/provider/biji-local-provider.c | 80 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 96 insertions(+), 87 deletions(-) commit e1bd5b6db1a39ac0561961d45acb98bc71d1a71a @@ -1819,13 +1857,13 @@ Use biji_item_trash directly, no manager is needed. Manager will see the item signal. - src/bjb-main-toolbar.c | 4 +-- - src/bjb-selection-toolbar.c | 7 +--- - src/libbiji/biji-local-note.c | 20 +++++------ - src/libbiji/biji-manager.c | 82 +++++++++++++++++++++---------------------- - src/libbiji/biji-manager.h | 41 ++++++++++------------ - src/libbiji/biji-note-obj.c | 51 +++++++++++++++------------ - src/tags | 29 +++++++++++++++ + src/bjb-main-toolbar.c | 4 +--- + src/bjb-selection-toolbar.c | 7 +------ + src/libbiji/biji-local-note.c | 20 +++++++++----------- + src/libbiji/biji-manager.c | 82 ++++++++++++++++++++++++++++++++++++++++------------------------------------------ + src/libbiji/biji-manager.h | 41 +++++++++++++++++++---------------------- + src/libbiji/biji-note-obj.c | 51 ++++++++++++++++++++++++++++----------------------- + src/tags | 29 +++++++++++++++++++++++++++++ 7 files changed, 127 insertions(+), 107 deletions(-) commit 324a7e3ca4e05fbbe54b147624afffe74e79aa31 @@ -1851,11 +1889,11 @@ However there is a regression: this makes 689171 even worse. - configure.ac | 3 +- - src/bjb-bijiben.c | 10 +--- - src/bjb-note-view.c | 149 ++++++++++---------------------------------------- - src/bjb-note-view.h | 20 ++++--- - src/bjb-window-base.c | 27 +++++---- + configure.ac | 3 +-- + src/bjb-bijiben.c | 10 +++----- + src/bjb-note-view.c | 149 ++++++++++++++++++++++--------------------------------------------------------------------------------------- + src/bjb-note-view.h | 20 +++++++++------ + src/bjb-window-base.c | 27 ++++++++++---------- 5 files changed, 59 insertions(+), 150 deletions(-) commit 13c334af0850a870a2d8d5a6e297c443452951de @@ -1864,7 +1902,7 @@ Updated slovak translation - po/sk.po | 344 +++++++++++++++++++++++++++++++++++++++++++-------------------- + po/sk.po | 344 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------- 1 file changed, 234 insertions(+), 110 deletions(-) commit 4d176db7ac275bf42ea44f89c5ddea7a9cc4b257 @@ -1873,7 +1911,7 @@ [l10n] Update Catalan translation - po/ca.po | 317 ++++++++++++++++++++++++++++++++++++++++++++------------------- + po/ca.po | 317 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------- 1 file changed, 220 insertions(+), 97 deletions(-) commit 79a2027171e113ea23067ccc62383c6fd9270ca8 @@ -1901,7 +1939,7 @@ Added Greek translation of help help/Makefile.am | 2 +- - help/el/el.po | 545 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ + help/el/el.po | 545 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 546 insertions(+), 1 deletion(-) commit 6de4b73d8562c6964edf2857ee81ecaa1f2e4d3f @@ -1928,7 +1966,7 @@ Updated Hebrew translation - po/he.po | 80 +++++++++++++++++++++++++++++++++------------------------------- + po/he.po | 80 +++++++++++++++++++++++++++++++++++++++++--------------------------------------- 1 file changed, 41 insertions(+), 39 deletions(-) commit 262f173d48190d281c25e62f3b3072a98b6b1ef9 @@ -1941,9 +1979,9 @@ There is no more animation but Popover uses standard theming. Also, magnifier could be implemented. - src/bjb-editor-toolbar.c | 203 +++++++++++++++++------------------------------ - src/bjb-editor-toolbar.h | 8 +- - src/bjb-note-view.c | 10 +-- + src/bjb-editor-toolbar.c | 203 ++++++++++++++++++++++++++++++++++++++-------------------------------------------------------------------- + src/bjb-editor-toolbar.h | 8 ++--- + src/bjb-note-view.c | 10 +++--- 3 files changed, 80 insertions(+), 141 deletions(-) commit a7060a6d16e966a320946ceacadc4d0af08edfaf @@ -1952,7 +1990,7 @@ Updated Greek translation - po/el.po | 195 ++++++++++++++++++++++++++++++++++++++------------------------- + po/el.po | 195 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------- 1 file changed, 117 insertions(+), 78 deletions(-) commit 47e430f5c4f7fd0d82d958346b55370ccf40aea7 @@ -1971,7 +2009,7 @@ Updated Hungarian translation - help/hu/hu.po | 134 ++++++++++++++++++++++++++++++++++++++-------------------- + help/hu/hu.po | 134 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------- 1 file changed, 88 insertions(+), 46 deletions(-) commit 8105d1965bf33fe98f889b41abf347360eae3afd @@ -1982,7 +2020,7 @@ help/Makefile.am | 2 +- help/fr/figures/notes-scr.png | Bin 0 -> 57819 bytes - help/fr/fr.po | 538 ++++++++++++++++++++++++++++++++++++++++++ + help/fr/fr.po | 538 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 539 insertions(+), 1 deletion(-) commit fb2afcdd40b96974bc54f6ff680ef9d90bd1f13c @@ -1991,7 +2029,7 @@ Updated Danish translation - po/da.po | 328 +++++++++++++++++++++++++++++++++++++++++++++------------------ + po/da.po | 328 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------- 1 file changed, 234 insertions(+), 94 deletions(-) commit 7113bb1de2b81352a0c2671009943b6eb14d0c80 @@ -2000,7 +2038,7 @@ Updated Norwegian bokmål translation - po/nb.po | 65 +++++++++++++++++++++++++++++++++------------------------------- + po/nb.po | 65 ++++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 34 insertions(+), 31 deletions(-) commit 94ceb86a9c2d0caa4447cac4fbdfd9a5b2e23cfb @@ -2009,7 +2047,7 @@ Added initial Hungarian translation - help/hu/hu.po | 558 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + help/hu/hu.po | 558 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 558 insertions(+) commit 9c6f47f444cac82f5b34172b6ac5dcbe83dc2071 @@ -2027,7 +2065,7 @@ Updated Basque language - po/eu.po | 331 ++++++++++++++++++++++++++++++++++++++++++++------------------- + po/eu.po | 331 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------ 1 file changed, 233 insertions(+), 98 deletions(-) commit 8b42745c62868f6e32b7f16c34fa93938f0fd0bf @@ -2036,7 +2074,7 @@ Updated Slovenian translation - po/sl.po | 322 ++++++++++++++++++++++++++++++++++++++++++++++----------------- + po/sl.po | 322 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------- 1 file changed, 234 insertions(+), 88 deletions(-) commit ddc9ed3715e581187f1b14c6a016f990348e1650 @@ -2045,7 +2083,7 @@ Updated Italian translation - po/it.po | 367 +++++++++++++++++++++++++++++++++++++++++++++------------------ + po/it.po | 367 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------- 1 file changed, 261 insertions(+), 106 deletions(-) commit 6f0b563e4497eaebc0089217c53e1c9819213fa7 @@ -2055,7 +2093,7 @@ Added Telugu Translation po/LINGUAS | 1 + - po/te.po | 460 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/te.po | 460 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 461 insertions(+) commit d237f67a35a84a8cfef2b9dfedd58fa9cca5e832 @@ -2098,7 +2136,7 @@ Updated Spanish translation help/Makefile.am | 2 +- - help/es/es.po | 532 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ + help/es/es.po | 532 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 533 insertions(+), 1 deletion(-) commit b81cdc7151cd47354270f5787a56a7414a38ec64 @@ -2168,7 +2206,7 @@ Updated Finnish translation by Juhani Numminen - po/fi.po | 352 ++++++++++++++++++++++++++++++++++++++++++--------------------- + po/fi.po | 352 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------- 1 file changed, 237 insertions(+), 115 deletions(-) commit 5c45da592c6b690f9cb2f992cf81d289acdcb420 @@ -2177,8 +2215,8 @@ Updated Serbian translation - po/sr.po | 361 +++++++++++++++++++++++++++++++++++++++------------------ - po/sr@latin.po | 361 +++++++++++++++++++++++++++++++++++++++------------------ + po/sr.po | 361 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------ + po/sr@latin.po | 361 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------ 2 files changed, 502 insertions(+), 220 deletions(-) commit 5fe5d98d5f4c7ae938d334d7f1a896f21319a402 @@ -2187,7 +2225,7 @@ Updated Portuguese translation - po/pt.po | 334 ++++++++++++++++++++++++++++++++++++++++++++------------------- + po/pt.po | 334 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------ 1 file changed, 236 insertions(+), 98 deletions(-) commit 8e3121debc8cf5ef123bc9b8fce3f6772239b284 @@ -2196,7 +2234,7 @@ Updated Polish translation - po/pl.po | 68 +++++++++++++++++++++++++++++++++------------------------------- + po/pl.po | 68 +++++++++++++++++++++++++++++++++++--------------------------------- 1 file changed, 35 insertions(+), 33 deletions(-) commit baa75aa1eb6e07f9d6319cef5446754b99b4aca2 @@ -2236,7 +2274,7 @@ Updated Ukrainian translation - po/uk.po | 127 ++++++++++++++++++++++++++++++++++++++------------------------- + po/uk.po | 127 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------ 1 file changed, 77 insertions(+), 50 deletions(-) commit f29fc5681258f06f6af305a19635dd0fffb4e1bc @@ -2245,7 +2283,7 @@ Updated French translation - po/fr.po | 327 ++++++++++++++++++++++++++++++++++++++++++++------------------- + po/fr.po | 327 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------ 1 file changed, 231 insertions(+), 96 deletions(-) commit f32710e38feb499d960f154f918650bd55e6459b @@ -2266,7 +2304,7 @@ Updated Russian translation - po/ru.po | 379 ++++++++++++++++++++++++++++++++++++++++++++------------------- + po/ru.po | 379 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------- 1 file changed, 263 insertions(+), 116 deletions(-) commit 29bc5fa4004d78b96cab3e17f975e9c318e121dc @@ -2275,7 +2313,7 @@ update Punjabi Translation: 07Mar2014 - po/pa.po | 364 ++++++++++++++++++++++++++++++++++++++++++++------------------- + po/pa.po | 364 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------- 1 file changed, 254 insertions(+), 110 deletions(-) commit 9572b0e27955a029dced6b71aacb38900f74a2b7 @@ -2284,7 +2322,7 @@ Updated Latvian translation - po/lv.po | 356 ++++++++++++++++++++++++++++++++++++++++++++------------------- + po/lv.po | 356 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------ 1 file changed, 252 insertions(+), 104 deletions(-) commit 065ac94a585179b9badaf7148aa0fe794724bbaa @@ -2345,7 +2383,7 @@ Updated Korean translation - po/ko.po | 318 ++++++++++++++++++++++++++++++++++++++++++--------------------- + po/ko.po | 318 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------- 1 file changed, 215 insertions(+), 103 deletions(-) commit ddc8a227dc7f88f386b1df96e71ce03ca48a098f @@ -2354,7 +2392,7 @@ Updated Polish translation - po/pl.po | 324 ++++++++++++++++++++++++++++++++++++++++++--------------------- + po/pl.po | 324 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------- 1 file changed, 218 insertions(+), 106 deletions(-) commit 251c8701700df57bc6dfaae1632503a81c3eb342 @@ -2393,8 +2431,8 @@ Updated Traditional Chinese translation(Hong Kong and Taiwan) - po/zh_HK.po | 204 +++++++++++++++++++++++++++++++++--------------------------- - po/zh_TW.po | 204 +++++++++++++++++++++++++++++++++--------------------------- + po/zh_HK.po | 204 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------------- + po/zh_TW.po | 204 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------------- 2 files changed, 226 insertions(+), 182 deletions(-) commit d7358536d2b41eaef23419c876e74f0b08c97fd7 @@ -2426,7 +2464,7 @@ Updated Galician translations - po/gl.po | 65 ++++++++++++++++++++++++++++++++++++++++++++-------------------- + po/gl.po | 65 +++++++++++++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 45 insertions(+), 20 deletions(-) commit 4629b93beed449a81a05fe7e977f4a9b6f196e20 @@ -2516,7 +2554,7 @@ Updated Hebrew translation - po/he.po | 131 ++++++++++++++++++++++++++++++++++++++------------------------- + po/he.po | 131 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------- 1 file changed, 79 insertions(+), 52 deletions(-) commit 52179bc123d87596042e6c0c8a2d1b286fc31643 @@ -2596,7 +2634,7 @@ Updated Hungarian translation - po/hu.po | 347 +++++++++++++++++++++++++++++++++++++++++++++------------------ + po/hu.po | 347 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------- 1 file changed, 248 insertions(+), 99 deletions(-) commit eedd0a069705f1f177a647a976b65ba5c044ca01 @@ -2614,7 +2652,7 @@ Updated Lithuanian translation - po/lt.po | 158 +++++++++++++++++++++++++++++++++++++++------------------------ + po/lt.po | 158 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------- 1 file changed, 97 insertions(+), 61 deletions(-) commit c08ea51658a3c83f61b7e53a5b1ccae2deafe77e @@ -2623,7 +2661,7 @@ Updated Chinese (China) translation - po/zh_CN.po | 249 +++++++++++++++++++++++++++++++++++++++++------------------- + po/zh_CN.po | 249 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------- 1 file changed, 172 insertions(+), 77 deletions(-) commit c59f6502f0789d47fe4156cbd763dec5b97dce30 @@ -2641,7 +2679,7 @@ Updated Czech translation - po/cs.po | 150 ++++++++++++++++++++++++++++++++++++++------------------------- + po/cs.po | 150 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------- 1 file changed, 90 insertions(+), 60 deletions(-) commit 42daa96d315f10c4045d720bd05cfcc43e1bdf61 @@ -2650,7 +2688,7 @@ Updated Brazilian Portuguese translation - po/pt_BR.po | 67 +++++++++++++++++++++++++++++++++++++++++++------------------ + po/pt_BR.po | 67 +++++++++++++++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 47 insertions(+), 20 deletions(-) commit 8a386cd56af94b618eebb4d087b12a830e89fd3b @@ -2659,7 +2697,7 @@ Updated Indonesian translation - po/id.po | 238 +++++++++++++++++++++++++++++++++++++++++++-------------------- + po/id.po | 238 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------- 1 file changed, 165 insertions(+), 73 deletions(-) commit 74c48592c7230638c102b3cce0d454d908987261 @@ -2680,7 +2718,7 @@ Tajik translation updated - po/tg.po | 69 ++++++++++++++++++++++++++++++++++++++++++++-------------------- + po/tg.po | 69 ++++++++++++++++++++++++++++++++++++++++++++++++--------------------- 1 file changed, 48 insertions(+), 21 deletions(-) commit 0423fdabbc5b7c59dccba0fc7aa0c8a15eeef40a @@ -2689,7 +2727,7 @@ Updated Norwegian bokmål translation - po/nb.po | 173 ++++++++++++++++++++++++++++++++++++++------------------------- + po/nb.po | 173 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------- 1 file changed, 104 insertions(+), 69 deletions(-) commit 089a861842694de343efc0202a77a22ee620a273 @@ -2698,7 +2736,7 @@ Commandline: Restore the "open note" function - src/bjb-bijiben.c | 72 ++++++++++++++++++++++++++++++++++++++++++++++--------- + src/bjb-bijiben.c | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 61 insertions(+), 11 deletions(-) commit cd4b39378ff1e5ec1adb6596744e6b36c40f2f77 @@ -2739,11 +2777,11 @@ what is loaded. See 723846 - src/bjb-controller.c | 8 +++++ - src/bjb-controller.h | 5 ++++ - src/bjb-load-more-button.c | 56 +++++++++++++++++++++++++++++----- - src/bjb-load-more-button.h | 6 ++++ - src/bjb-main-view.c | 75 ++++++++++++++++++++++++++++++++++++++++++---- + src/bjb-controller.c | 8 ++++++++ + src/bjb-controller.h | 5 +++++ + src/bjb-load-more-button.c | 56 +++++++++++++++++++++++++++++++++++++++++++++++++------- + src/bjb-load-more-button.h | 6 ++++++ + src/bjb-main-view.c | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----- 5 files changed, 138 insertions(+), 12 deletions(-) commit 286d337154a26df3a57fd49f55d8231870542ca4 @@ -2770,7 +2808,7 @@ Commandline: Add --help and --version - src/bjb-bijiben.c | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/bjb-bijiben.c | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) commit d1e87dd5cdbc13b9ed8a4706984620d00784c194 @@ -2801,7 +2839,7 @@ Updated Assamese translation - po/as.po | 270 +++++++++++++++++++++++++++++++++++++++++++++------------------ + po/as.po | 270 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------- 1 file changed, 194 insertions(+), 76 deletions(-) commit 60eede8baf4b9c7aaa12f7879809c290c415acb7 @@ -2810,7 +2848,7 @@ Updated Ukrainian translation - po/uk.po | 287 +++++++++++++++++++++++++++++++++++++++++++-------------------- + po/uk.po | 287 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------- 1 file changed, 196 insertions(+), 91 deletions(-) commit ae0e0f6a2e889a1ebd808660a7386b2ddd5ad326 @@ -2819,7 +2857,7 @@ Updated Brazilian Portuguese translation - po/pt_BR.po | 107 +++++++++++++++++++++++++++++++----------------------------- + po/pt_BR.po | 107 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------------------- 1 file changed, 56 insertions(+), 51 deletions(-) commit 24ba7fd62ae00d2d2d43a4d422ebc8151e3d3869 @@ -2828,7 +2866,7 @@ Updated Spanish translation - po/es.po | 105 +++++++++++++++++++++++++++++++++++---------------------------- + po/es.po | 105 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------- 1 file changed, 58 insertions(+), 47 deletions(-) commit 0bbf51dfc6bf4b9d6e6576549818d3a3b70bb51a @@ -2837,7 +2875,7 @@ Tajik translation updated - po/tg.po | 103 +++++++++++++++++++++++++++++++++------------------------------ + po/tg.po | 103 ++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------- 1 file changed, 54 insertions(+), 49 deletions(-) commit 3cf8e8e1830c29f738f523ae021a7cb270443b95 @@ -2846,7 +2884,7 @@ Updated Galician translations - po/gl.po | 109 ++++++++++++++++++++++++++++++++++----------------------------- + po/gl.po | 109 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------------- 1 file changed, 59 insertions(+), 50 deletions(-) commit 9b3913c2ae50217986ad5fcfe56df34d0b013c48 @@ -2924,7 +2962,7 @@ Updated Hebrew translation - po/he.po | 85 +++++++++++++++++++++++++++++++++------------------------------- + po/he.po | 85 ++++++++++++++++++++++++++++++++++++++++++++----------------------------------------- 1 file changed, 44 insertions(+), 41 deletions(-) commit b03a0f922a234635cd80d32f6910fdce4b142d1e @@ -2949,9 +2987,9 @@ Also removes lot of runtime warnings due to previous dirty implementation. src/Makefile.am | 2 - - src/bjb-selection-toolbar.c | 162 +++++++++++++++++------- - src/bjb-trash-bar.c | 294 -------------------------------------------- - src/bjb-trash-bar.h | 74 ----------- + src/bjb-selection-toolbar.c | 162 +++++++++++++++++++++++++++++++++++++++++---------------- + src/bjb-trash-bar.c | 294 ------------------------------------------------------------------------------------------------------- + src/bjb-trash-bar.h | 74 -------------------------- 4 files changed, 117 insertions(+), 415 deletions(-) commit 5538534923b6635b99aa6ef641d5c10f4282a50b @@ -2962,8 +3000,8 @@ bug 723844 - src/bjb-main-toolbar.c | 180 +++++++++++++++++++++++++++---------------------- - src/bjb-trash-bar.c | 43 ------------ + src/bjb-main-toolbar.c | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------ + src/bjb-trash-bar.c | 43 -------------------------- src/bjb-window-base.h | 2 +- 3 files changed, 101 insertions(+), 124 deletions(-) @@ -3029,7 +3067,7 @@ Updated Galician translations - po/gl.po | 93 +++++++++++++++++++++++++++++++++++++++++++--------------------- + po/gl.po | 93 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 63 insertions(+), 30 deletions(-) commit 184fb9e0806c6aa55bfe426446896304c10b4596 @@ -3057,7 +3095,7 @@ Updated Brazilian Portuguese translation - po/pt_BR.po | 119 +++++++++++++++++++++++++++++++++++++++++++++--------------- + po/pt_BR.po | 119 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 89 insertions(+), 30 deletions(-) commit c0e1b0fb4f5b179894305ae749b23d5b2d40dae2 @@ -3066,7 +3104,7 @@ Updated Greek translation - po/el.po | 110 +++++++++++++++++++++++++++++++++++++++++++++++++-------------- + po/el.po | 110 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------ 1 file changed, 86 insertions(+), 24 deletions(-) commit 399e4e77b0e77271aff34cdb0b349bbd9ca491c8 @@ -3098,8 +3136,8 @@ Updated Traditional Chinese translation(Hong Kong and Taiwan) - po/zh_HK.po | 303 ++++++++++++++++++++++++++++++++++++++++++------------------ - po/zh_TW.po | 303 ++++++++++++++++++++++++++++++++++++++++++------------------ + po/zh_HK.po | 303 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------ + po/zh_TW.po | 303 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------ 2 files changed, 422 insertions(+), 184 deletions(-) commit 698a1c63e19e9c61b5aaa291ee3dec4a0d584aaa @@ -3126,7 +3164,7 @@ Updated Czech translation - po/cs.po | 102 +++++++++++++++++++++++++++++++++++++++++++++++++-------------- + po/cs.po | 102 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 80 insertions(+), 22 deletions(-) commit dde8b6f8b1ce39657b7df778ec52bb7555fb9bc3 @@ -3135,7 +3173,7 @@ Updated Lithuanian translation - po/lt.po | 111 ++++++++++++++++++++++++++++++++++++++++++++------------------- + po/lt.po | 111 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------- 1 file changed, 78 insertions(+), 33 deletions(-) commit 2ead26e0f1aa59de20f1fa2e81cfd9d3fe5c6c2e @@ -3162,7 +3200,7 @@ Updated Dutch translation - po/nl.po | 278 +++++++++++++++++++++++++++++++++++++++++++-------------------- + po/nl.po | 278 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------- 1 file changed, 192 insertions(+), 86 deletions(-) commit f0b2938220e352e8cb18de27dcec849b5a7b4c32 @@ -3248,10 +3286,10 @@ windowBase: add detached window, with note at construct - src/bjb-bijiben.c | 29 +++++--------- - src/bjb-main-toolbar.c | 22 ++++++----- - src/bjb-window-base.c | 102 ++++++++++++++++++++++++++++++++++++++++++++++++- - src/bjb-window-base.h | 50 +++++++++++++++--------- + src/bjb-bijiben.c | 29 +++++++++-------------------- + src/bjb-main-toolbar.c | 22 +++++++++++++--------- + src/bjb-window-base.c | 102 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- + src/bjb-window-base.h | 50 +++++++++++++++++++++++++++++++++----------------- 4 files changed, 155 insertions(+), 48 deletions(-) commit c7a448664c2886e96d751126da5d8127a03f52b7 @@ -3293,7 +3331,7 @@ Updated Norwegian bokmål translation - po/nb.po | 249 +++++++++++++++++++++++++++++++++++++++++---------------------- + po/nb.po | 249 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------- 1 file changed, 162 insertions(+), 87 deletions(-) commit a9bd9a4eea3a51d71d6d8f653abf4967d3be2e1d @@ -3302,7 +3340,7 @@ Updated Spanish translation - po/es.po | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++++++---------- + po/es.po | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 72 insertions(+), 13 deletions(-) commit 45aa8a326482f8ecd10f8e1c13d974b5b2cf94a8 @@ -3329,7 +3367,7 @@ Tajik translation updated - po/tg.po | 105 +++++++++++++++++++++++++++++++++++++++++++++------------------ + po/tg.po | 105 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 76 insertions(+), 29 deletions(-) commit bcac3929fa9e0c5046f281499e6ecd58336125ea @@ -3340,7 +3378,7 @@ Signed-off-by: Yosef Or Boczko - po/he.po | 78 ++++++++++++++++++++++++++++++++++++++++++++++++++++++---------- + po/he.po | 78 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 66 insertions(+), 12 deletions(-) commit 402c09ddca64dc1df3a16d344729197849732253 @@ -3370,7 +3408,7 @@ Added Swedish translation po/LINGUAS | 1 + - po/sv.po | 400 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/sv.po | 400 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 401 insertions(+) commit 9188bd50b66ed12120f7d7952be4ffb9ba6e96b2 @@ -3379,9 +3417,9 @@ Memorize window size, position and maximized state - data/org.gnome.bijiben.gschema.xml.in | 15 +++++ + data/org.gnome.bijiben.gschema.xml.in | 15 ++++++++++++++ po/POTFILES.in | 1 + - src/bjb-window-base.c | 106 ++++++++++++++++++++++++++++++++-- + src/bjb-window-base.c | 106 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------ 3 files changed, 116 insertions(+), 6 deletions(-) commit bc002002747bbea1501300f59e7c8389a9955b16 @@ -3440,7 +3478,7 @@ Updated Czech translation - po/cs.po | 183 +++++++++++++++++++++++++++++++++++---------------------------- + po/cs.po | 183 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------ 1 file changed, 102 insertions(+), 81 deletions(-) commit 65a364a71b5fac2a9c95a3da944cdafca9d78960 @@ -3486,7 +3524,7 @@ Updated Lithuanian translation - po/lt.po | 193 +++++++++++++++++++++++++++++++++++++-------------------------- + po/lt.po | 193 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------------------- 1 file changed, 113 insertions(+), 80 deletions(-) commit c0bda4d9bd774c6d84f1b49b4fdd229d495fa940 @@ -3529,7 +3567,7 @@ https://bugzilla.gnome.org/show_bug.cgi?id=721745 - src/bjb-main-toolbar.c | 93 +++++++++++++++++++++++++------------------------- + src/bjb-main-toolbar.c | 93 ++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------- 1 file changed, 46 insertions(+), 47 deletions(-) commit 34b8afc5e5b4e582b044d56acc1fba71360f658e @@ -3538,7 +3576,7 @@ Updated Indonesian translation - po/id.po | 181 +++++++++++++++++++++++++++++++++++---------------------------- + po/id.po | 181 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------ 1 file changed, 101 insertions(+), 80 deletions(-) commit 1ba790991032a8fe4f5740b695f77cf83c873135 @@ -3583,7 +3621,7 @@ Updated Hebrew translation - po/he.po | 153 +++++++++++++++++++++++++++++++++++++++------------------------ + po/he.po | 153 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------- 1 file changed, 94 insertions(+), 59 deletions(-) commit a51527afd5a74381e9c64b50f918700a85fa73de @@ -3592,7 +3630,7 @@ Tajik translation updated - po/tg.po | 204 ++++++++++++++++++++++++++++++++++++++++----------------------- + po/tg.po | 204 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------------- 1 file changed, 129 insertions(+), 75 deletions(-) commit 7204a68d6579579d9084874b9558f069f1d35ede @@ -3601,7 +3639,7 @@ Updated Galician translations - po/gl.po | 108 ++++++++++++++++++++++++++++++++++++++------------------------- + po/gl.po | 108 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------- 1 file changed, 65 insertions(+), 43 deletions(-) commit c9445c84e49fd67b603d1deff0cbdf7bc1c60013 @@ -3619,7 +3657,7 @@ Updated German translation - po/de.po | 188 +++++++++++++++++++++++++++++++++++++++------------------------ + po/de.po | 188 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------------- 1 file changed, 117 insertions(+), 71 deletions(-) commit a041590adbed1e9374085faf808333e99a8b4ba2 @@ -3628,7 +3666,7 @@ removed useless lines form the search page - help/C/search.page | 98 +----------------------------------------------------- + help/C/search.page | 98 +------------------------------------------------------------------------------------------------- 1 file changed, 1 insertion(+), 97 deletions(-) commit e07a76a298be9baeda5a675900c1570c46ec584b @@ -3646,7 +3684,7 @@ help : update Search page - help/C/search.page | 121 ++++++++++++++++++++++++++++++++++++++++++++++++----- + help/C/search.page | 121 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 110 insertions(+), 11 deletions(-) commit be5b9259dc2a6941606995ffb858518d1cb1da22 @@ -3697,7 +3735,7 @@ Updated Brazilian Portuguese translation - po/pt_BR.po | 206 ++++++++++++++++++++++++++++++++++++------------------------ + po/pt_BR.po | 206 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------- 1 file changed, 125 insertions(+), 81 deletions(-) commit 40d50208684f8be841d1b9ab224228adc8258396 @@ -3761,10 +3799,10 @@ The view removes the item. - src/bjb-controller.c | 3 ++ - src/bjb-trash-bar.c | 11 +++++--- - src/libbiji/biji-item.c | 69 ++++++++++++++++++++++++++++++++++++++++++++-- - src/libbiji/biji-manager.c | 13 ++++++++- + src/bjb-controller.c | 3 +++ + src/bjb-trash-bar.c | 11 +++++++---- + src/libbiji/biji-item.c | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--- + src/libbiji/biji-manager.c | 13 ++++++++++++- src/libbiji/biji-manager.h | 1 + 5 files changed, 89 insertions(+), 8 deletions(-) @@ -3819,13 +3857,13 @@ Land some buttons. Clicking still has no effect. src/bjb-selection-toolbar.c | 1 + - src/bjb-trash-bar.c | 126 +++++++++++++++++++++++++++++++++++++++--- + src/bjb-trash-bar.c | 126 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------ src/bjb-trash-bar.h | 1 + - src/libbiji/biji-item.c | 21 +++++++ - src/libbiji/biji-item.h | 8 +++ - src/libbiji/biji-local-note.c | 30 ++++++++++ - src/libbiji/biji-manager.c | 6 ++ - src/libbiji/biji-manager.h | 3 + + src/libbiji/biji-item.c | 21 +++++++++++++++++ + src/libbiji/biji-item.h | 8 +++++++ + src/libbiji/biji-local-note.c | 30 ++++++++++++++++++++++++ + src/libbiji/biji-manager.c | 6 +++++ + src/libbiji/biji-manager.h | 3 +++ 8 files changed, 189 insertions(+), 7 deletions(-) commit 10d87045636fef37f26975edd216adcfe980347b @@ -3834,7 +3872,7 @@ Update Chinese simplified translation - po/zh_CN.po | 157 ++++++++++++++++++++++++++++++++++++------------------------ + po/zh_CN.po | 157 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------- 1 file changed, 95 insertions(+), 62 deletions(-) commit bb2a74994f046175eb7883c8faecfd639ee83199 @@ -3855,7 +3893,7 @@ Add Esperanto translation po/LINGUAS | 1 + - po/eo.po | 363 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/eo.po | 363 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 364 insertions(+) commit 8461dfd61ad2e32caff3713adb2d76c9e7b859f5 @@ -3864,7 +3902,7 @@ Updated Spanish translation - po/es.po | 93 ++++++++++++++++++++++++++++++++++------------------------------ + po/es.po | 93 +++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------- 1 file changed, 49 insertions(+), 44 deletions(-) commit 38cf43c43034b96a5d761e51c9e64b8f0d7c9b58 @@ -3873,7 +3911,7 @@ Updated Greek translation - po/el.po | 105 ++++++++++++++++++++++++++++++++------------------------------- + po/el.po | 105 +++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------------------- 1 file changed, 53 insertions(+), 52 deletions(-) commit 536d13e95196bb684a0f4b9e74d44b8b88451055 @@ -3887,26 +3925,26 @@ po/POTFILES.in | 1 + src/Makefile.am | 2 + - src/bjb-app-menu.c | 19 ++- - src/bjb-controller.c | 132 ++++++++++++--- - src/bjb-controller.h | 6 + - src/bjb-main-toolbar.c | 155 ++++++++++++++++-- - src/bjb-selection-toolbar.c | 182 +++++++++++++++------ - src/bjb-trash-bar.c | 213 +++++++++++++++++++++++++ - src/bjb-trash-bar.h | 73 +++++++++ - src/bjb-window-base.c | 17 +- + src/bjb-app-menu.c | 19 +++++++- + src/bjb-controller.c | 132 +++++++++++++++++++++++++++++++++++++++++----------- + src/bjb-controller.h | 6 +++ + src/bjb-main-toolbar.c | 155 +++++++++++++++++++++++++++++++++++++++++++++++++++++++------ + src/bjb-selection-toolbar.c | 182 ++++++++++++++++++++++++++++++++++++++++++++++++++++------------------- + src/bjb-trash-bar.c | 213 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/bjb-trash-bar.h | 73 +++++++++++++++++++++++++++++ + src/bjb-window-base.c | 17 +++++-- src/bjb-window-base.h | 3 +- - src/libbiji/biji-manager.c | 146 +++++++++++++---- - src/libbiji/biji-manager.h | 25 ++- + src/libbiji/biji-manager.c | 146 +++++++++++++++++++++++++++++++++++++++++++-------------- + src/libbiji/biji-manager.h | 25 ++++++++-- src/libbiji/biji-marshalers.list | 3 +- src/libbiji/biji-tracker.c | 5 +- src/libbiji/biji-tracker.h | 1 + src/libbiji/provider/biji-import-provider.c | 4 +- - src/libbiji/provider/biji-local-provider.c | 123 +++++++++++--- - src/libbiji/provider/biji-own-cloud-provider.c | 16 +- - src/libbiji/provider/biji-provider.c | 48 +++++- - src/libbiji/provider/biji-provider.h | 38 ++++- - src/resources/app-menu.ui | 4 + + src/libbiji/provider/biji-local-provider.c | 123 ++++++++++++++++++++++++++++++++++++++---------- + src/libbiji/provider/biji-own-cloud-provider.c | 16 +++++-- + src/libbiji/provider/biji-provider.c | 48 +++++++++++++++++-- + src/libbiji/provider/biji-provider.h | 38 ++++++++++++++- + src/resources/app-menu.ui | 4 ++ 22 files changed, 1044 insertions(+), 172 deletions(-) commit 153118412194f20d490ab1589db4b5c3c4b3f118 @@ -3915,7 +3953,7 @@ added notebooks page in place of collections page - help/C/notebooks.page | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++ + help/C/notebooks.page | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) commit 60a6cd1ea4503da582fc6a121ce03264068d90a0 @@ -4001,7 +4039,7 @@ Updated Greek translation - po/el.po | 275 +++++++++++++++++++++++++++++++++++++++++---------------------- + po/el.po | 275 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------- 1 file changed, 178 insertions(+), 97 deletions(-) commit 569dd4af084fa0698aedbd4424039094746f8d45 @@ -4033,7 +4071,7 @@ Updated Spanish translation - po/es.po | 72 ++++++++++++++++++++++++++++++++++++++++------------------------ + po/es.po | 72 +++++++++++++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 45 insertions(+), 27 deletions(-) commit 4811d99e73097d48753bb9fb63473a33e5b388cd @@ -4042,7 +4080,7 @@ Manager: clean-up _add_item code - src/libbiji/biji-manager.c | 95 ++++++++++++++++++---------------------------- + src/libbiji/biji-manager.c | 95 +++++++++++++++++++++++++++++++++++++---------------------------------------------------------- 1 file changed, 37 insertions(+), 58 deletions(-) commit b38b543ddfd5cc84c3c7fcb16a4a7965b201b8f3 @@ -4062,7 +4100,7 @@ Updated Galician translations - po/gl.po | 134 ++++++++++++++++++++++++++++++++++++--------------------------- + po/gl.po | 134 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------------------- 1 file changed, 77 insertions(+), 57 deletions(-) commit bcd71e82716de3b190f066c972525e9f49aeac42 @@ -4107,10 +4145,10 @@ src/Makefile.am | 4 +- src/bjb-main-toolbar.c | 4 +- src/bjb-main-view.c | 2 +- - src/bjb-note-tag-dialog.c | 544 -------------------------------------------- - src/bjb-note-tag-dialog.h | 58 ----- - src/bjb-organize-dialog.c | 544 ++++++++++++++++++++++++++++++++++++++++++++ - src/bjb-organize-dialog.h | 58 +++++ + src/bjb-note-tag-dialog.c | 544 ------------------------------------------------------------------------------------------------------- + src/bjb-note-tag-dialog.h | 58 ----------- + src/bjb-organize-dialog.c | 544 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/bjb-organize-dialog.h | 58 +++++++++++ src/bjb-selection-toolbar.c | 4 +- 8 files changed, 609 insertions(+), 609 deletions(-) @@ -4122,31 +4160,31 @@ Notebook makes more sense. - src/bjb-controller.c | 52 +- + src/bjb-controller.c | 52 ++++---- src/bjb-controller.h | 4 +- src/bjb-empty-results-box.c | 2 +- - src/bjb-main-toolbar.c | 20 +- + src/bjb-main-toolbar.c | 20 +-- src/bjb-main-view.c | 8 +- - src/bjb-note-tag-dialog.c | 90 ++-- + src/bjb-note-tag-dialog.c | 90 ++++++------- src/libbiji/Makefile.am | 4 +- - src/libbiji/biji-collection.c | 555 ---------------------- - src/libbiji/biji-collection.h | 66 --- + src/libbiji/biji-collection.c | 555 --------------------------------------------------------------------------------- + src/libbiji/biji-collection.h | 66 ---------- src/libbiji/biji-item.c | 12 +- - src/libbiji/biji-item.h | 16 +- + src/libbiji/biji-item.h | 16 +-- src/libbiji/biji-manager.c | 6 +- src/libbiji/biji-manager.h | 2 +- - src/libbiji/biji-note-obj.c | 42 +- + src/libbiji/biji-note-obj.c | 42 +++---- src/libbiji/biji-note-obj.h | 2 +- - src/libbiji/biji-notebook.c | 555 ++++++++++++++++++++++ - src/libbiji/biji-notebook.h | 66 +++ - src/libbiji/biji-tracker.c | 34 +- + src/libbiji/biji-notebook.c | 555 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/biji-notebook.h | 66 ++++++++++ + src/libbiji/biji-tracker.c | 34 ++--- src/libbiji/biji-tracker.h | 12 +- src/libbiji/deserializer/biji-lazy-deserializer.c | 2 +- src/libbiji/deserializer/biji-tomboy-reader.c | 8 +- src/libbiji/deserializer/biji-tomboy-reader.h | 2 +- src/libbiji/libbiji.h | 2 +- src/libbiji/provider/biji-import-provider.c | 6 +- - src/libbiji/provider/biji-local-provider.c | 24 +- + src/libbiji/provider/biji-local-provider.c | 24 ++-- src/libbiji/provider/biji-own-cloud-provider.c | 2 +- src/libbiji/provider/biji-provider.h | 2 +- src/libbiji/serializer/biji-lazy-serializer.c | 2 +- @@ -4160,14 +4198,14 @@ NoteBook is confusing. Manager is better. - src/bjb-bijiben.c | 20 +- + src/bjb-bijiben.c | 20 +-- src/bjb-bijiben.h | 2 +- - src/bjb-controller.c | 54 +- + src/bjb-controller.c | 54 +++--- src/bjb-controller.h | 4 +- src/bjb-editor-toolbar.c | 6 +- src/bjb-main-toolbar.c | 10 +- - src/bjb-main-view.c | 20 +- - src/bjb-note-tag-dialog.c | 20 +- + src/bjb-main-view.c | 20 +-- + src/bjb-note-tag-dialog.c | 20 +-- src/bjb-selection-toolbar.c | 6 +- src/bjb-settings-dialog.c | 6 +- src/bjb-window-base.c | 8 +- @@ -4175,16 +4213,16 @@ src/libbiji/Makefile.am | 4 +- src/libbiji/biji-collection.c | 18 +- src/libbiji/biji-collection.h | 2 +- - src/libbiji/biji-item.c | 22 +- + src/libbiji/biji-item.c | 22 +-- src/libbiji/biji-item.h | 2 +- src/libbiji/biji-local-note.c | 6 +- src/libbiji/biji-local-note.h | 2 +- - src/libbiji/biji-manager.c | 760 +++++++++++++++++++++++++ - src/libbiji/biji-manager.h | 137 +++++ - src/libbiji/biji-note-book.c | 760 ------------------------- - src/libbiji/biji-note-book.h | 137 ----- + src/libbiji/biji-manager.c | 760 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/biji-manager.h | 137 +++++++++++++++ + src/libbiji/biji-note-book.c | 760 ------------------------------------------------------------------------------------ + src/libbiji/biji-note-book.h | 137 --------------- src/libbiji/biji-note-obj.c | 16 +- - src/libbiji/biji-tracker.c | 90 +-- + src/libbiji/biji-tracker.c | 90 +++++----- src/libbiji/biji-tracker.h | 18 +- src/libbiji/biji-zeitgeist.c | 5 +- src/libbiji/editor/biji-webkit-editor.c | 4 +- @@ -4195,9 +4233,9 @@ src/libbiji/provider/biji-local-provider.h | 4 +- src/libbiji/provider/biji-own-cloud-note.c | 8 +- src/libbiji/provider/biji-own-cloud-note.h | 2 +- - src/libbiji/provider/biji-own-cloud-provider.c | 34 +- + src/libbiji/provider/biji-own-cloud-provider.c | 34 ++-- src/libbiji/provider/biji-own-cloud-provider.h | 2 +- - src/libbiji/provider/biji-provider.c | 20 +- + src/libbiji/provider/biji-provider.c | 20 +-- src/libbiji/provider/biji-provider.h | 6 +- 39 files changed, 1130 insertions(+), 1129 deletions(-) @@ -4264,7 +4302,7 @@ Updated Spanish translation - po/es.po | 92 +++++++++++++++++++++++++++++++++++----------------------------- + po/es.po | 92 +++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------- 1 file changed, 51 insertions(+), 41 deletions(-) commit 41e9673020c481906711f28c52d6bf82ce2c0cc2 @@ -4273,7 +4311,7 @@ Updated Slovenian translation - po/sl.po | 88 ++++++++++++++++++++++++++++++++++++---------------------------- + po/sl.po | 88 +++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------- 1 file changed, 49 insertions(+), 39 deletions(-) commit 6d202ca3475dc9940a5e421cc4c0466f4ab7bf1c @@ -4342,7 +4380,7 @@ Updated Malayalam Translation po/LINGUAS | 1 + - po/ml.po | 356 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/ml.po | 356 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 357 insertions(+) commit 7c9a933541017ea01ae095ef0d4128515aff7a3b @@ -4362,12 +4400,12 @@ mainView: list view : add type and where renderers - src/bjb-main-view.c | 94 +++++++++++++++++++++--------- - src/libbiji/biji-collection.c | 11 ++++ - src/libbiji/biji-item.c | 6 ++ - src/libbiji/biji-item.h | 8 ++- - src/libbiji/biji-local-note.c | 17 ++++++ - src/libbiji/provider/biji-own-cloud-note.c | 17 ++++++ + src/bjb-main-view.c | 94 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------- + src/libbiji/biji-collection.c | 11 +++++++++++ + src/libbiji/biji-item.c | 6 ++++++ + src/libbiji/biji-item.h | 8 +++++++- + src/libbiji/biji-local-note.c | 17 ++++++++++++++++ + src/libbiji/provider/biji-own-cloud-note.c | 17 ++++++++++++++++ 6 files changed, 124 insertions(+), 29 deletions(-) commit 289ada3fc4db6f080f0f7f1ac1cd1a8142bb9167 @@ -4376,7 +4414,7 @@ mainView: add a renderer for dates - src/bjb-main-view.c | 128 +++++++++++++++++++++++++++++++++++++++++++++++++++- + src/bjb-main-view.c | 128 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 126 insertions(+), 2 deletions(-) commit 30c46b3629c39651fe62075ebe7d2b9e0777797b @@ -4396,9 +4434,9 @@ Little cleanup - src/bjb-search-toolbar.c | 125 +++++++++++++++-------------------------------- - src/bjb-search-toolbar.h | 25 ++++++---- - src/bjb-window-base.c | 8 +-- + src/bjb-search-toolbar.c | 125 ++++++++++++++++++++++++++++++++++------------------------------------------------------------------------ + src/bjb-search-toolbar.h | 25 +++++++++++++--------- + src/bjb-window-base.c | 8 +++---- 3 files changed, 59 insertions(+), 99 deletions(-) commit c6d69918c813d15eaa73f8a8cb1d85d120c5f086 @@ -4459,7 +4497,7 @@ update Simplified Chinese (zh_CN) translation - po/zh_CN.po | 172 ++++++++++++++++++++++++++++++++++-------------------------- + po/zh_CN.po | 172 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------------------- 1 file changed, 98 insertions(+), 74 deletions(-) commit 89e54e70c5f93280c59f5a790e57b436db4ff9df @@ -4537,7 +4575,7 @@ Assamese translation Updated - po/as.po | 350 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/as.po | 350 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 350 insertions(+) commit d5654409d23b11754a48ce726c16af2d0b10de09 @@ -4573,13 +4611,13 @@ Check zeitgeist is available. Otherwise, deactivate any zeitgeist call. - configure.ac | 15 +++++++++++--- + configure.ac | 15 ++++++++++++--- src/Makefile.am | 6 +++++- src/libbiji/.Makefile.am.swp | Bin 0 -> 12288 bytes - src/libbiji/Makefile.am | 46 +++++++++++++++++++++++++++++++------------ + src/libbiji/Makefile.am | 46 +++++++++++++++++++++++++++++++++------------- src/libbiji/biji-note-book.c | 10 ++++++++++ src/libbiji/biji-note-book.h | 5 +++++ - src/libbiji/biji-note-obj.c | 13 ++++++++++++ + src/libbiji/biji-note-obj.c | 13 +++++++++++++ src/libbiji/biji-zeitgeist.c | 6 +++++- src/libbiji/biji-zeitgeist.h | 11 ++++++++++- src/libbiji/libbiji.h | 4 ++++ @@ -4604,7 +4642,7 @@ [l10n] Added Catalan (Valencian) translation po/LINGUAS | 1 + - po/ca@valencia.po | 350 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/ca@valencia.po | 350 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 351 insertions(+) commit 035224457518bf33a25201c1284c5a35e91e0c11 @@ -4616,11 +4654,11 @@ And use this for note view. See 709025 - data/org.gnome.bijiben.gschema.xml.in | 4 ++ - src/bjb-note-view.c | 27 ++++++-- - src/bjb-settings-dialog.c | 74 +++++++++++++++++++--- - src/bjb-settings.c | 112 ++++++++++++++++++++++++++-------- - src/bjb-settings.h | 10 +++ + data/org.gnome.bijiben.gschema.xml.in | 4 ++++ + src/bjb-note-view.c | 27 ++++++++++++++++++----- + src/bjb-settings-dialog.c | 74 +++++++++++++++++++++++++++++++++++++++++++++++++++++-------- + src/bjb-settings.c | 112 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------- + src/bjb-settings.h | 10 +++++++++ 5 files changed, 188 insertions(+), 39 deletions(-) commit d9acbeacde11214a3e8b4c59817131e9243bc5e2 @@ -4629,8 +4667,8 @@ ownCloud: add a bit for import - src/libbiji/provider/biji-import-provider.c | 8 +++--- - src/libbiji/provider/biji-own-cloud-provider.c | 34 ++++++++++++++++++++++++++ + src/libbiji/provider/biji-import-provider.c | 8 +++++--- + src/libbiji/provider/biji-own-cloud-provider.c | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 3 deletions(-) commit 668deeeaf334977630652a2495c953233636bbed @@ -4665,22 +4703,22 @@ (then altering path and saving...), read the data, instanciate an object then save it as anyone would expect. - src/bjb-bijiben.c | 155 +------ + src/bjb-bijiben.c | 155 +----------------------- src/libbiji/Makefile.am | 4 + - src/libbiji/biji-date-time.c | 11 + - src/libbiji/biji-date-time.h | 17 +- + src/libbiji/biji-date-time.c | 11 ++ + src/libbiji/biji-date-time.h | 17 ++- src/libbiji/biji-error.c | 7 +- src/libbiji/biji-error.h | 7 +- - src/libbiji/biji-note-book.c | 45 +- - src/libbiji/biji-note-book.h | 16 + - src/libbiji/deserializer/biji-lazy-deserializer.c | 23 +- - src/libbiji/deserializer/biji-tomboy-reader.c | 527 ++++++++++++++++++++++ - src/libbiji/deserializer/biji-tomboy-reader.h | 64 +++ - src/libbiji/provider/biji-import-provider.c | 367 +++++++++++++++ - src/libbiji/provider/biji-import-provider.h | 75 +++ - src/libbiji/provider/biji-local-provider.c | 37 ++ + src/libbiji/biji-note-book.c | 45 ++++++- + src/libbiji/biji-note-book.h | 16 +++ + src/libbiji/deserializer/biji-lazy-deserializer.c | 23 ++-- + src/libbiji/deserializer/biji-tomboy-reader.c | 527 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/deserializer/biji-tomboy-reader.h | 64 ++++++++++ + src/libbiji/provider/biji-import-provider.c | 367 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/provider/biji-import-provider.h | 75 ++++++++++++ + src/libbiji/provider/biji-local-provider.c | 37 ++++++ src/libbiji/provider/biji-own-cloud-provider.c | 2 +- - src/libbiji/provider/biji-provider.h | 42 +- + src/libbiji/provider/biji-provider.h | 42 ++++++- 16 files changed, 1225 insertions(+), 174 deletions(-) commit 04bff4a11d2bfe3ea2a3aa91fb69cb16355f866a @@ -4689,7 +4727,7 @@ [l10n]Updated Turkish translation - po/tr.po | 257 +++++++++++++++++++++++++++++++++++++-------------------------- + po/tr.po | 257 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------- 1 file changed, 153 insertions(+), 104 deletions(-) commit 54aad677478ede4cfdd6a357688a24a8d83099d2 @@ -4720,7 +4758,7 @@ Updated German translation - po/de.po | 179 +++++++++++++++++++++++++++++++++++---------------------------- + po/de.po | 179 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------ 1 file changed, 100 insertions(+), 79 deletions(-) commit 870e72282422f7b197525ef2d4ad76ec55c2bc14 @@ -4767,7 +4805,7 @@ [l10n] Updated Estonian translation - po/et.po | 276 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/et.po | 276 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 276 insertions(+) commit 0cfc967d94d7ac5cab27eacfebc206cff4fca356 @@ -4776,7 +4814,7 @@ Update French translation - po/fr.po | 305 +++++++++++++++++++++++++++++++++++++++++++++------------------ + po/fr.po | 305 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------- 1 file changed, 217 insertions(+), 88 deletions(-) commit e1f01a7541793486e66ea93bdea8432a97a37063 @@ -4794,7 +4832,7 @@ Updated Portuguese translation - po/pt.po | 343 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/pt.po | 343 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 343 insertions(+) commit d014dbcc2c9c01663d3b0f80e6048d4d9f5f79b6 @@ -4803,7 +4841,7 @@ [l10n] Update Catalan translation - po/ca.po | 312 ++++++++++++++++++++++++++++++++++++++++++++++++--------------- + po/ca.po | 312 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 239 insertions(+), 73 deletions(-) commit 5abd06b8af4243c8121cb03b97e4fd5a7a4f80c8 @@ -4812,7 +4850,7 @@ l10n: Update Japanese translation - po/ja.po | 184 ++++++++++++++++++++++++++++++++++++--------------------------- + po/ja.po | 184 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------------------- 1 file changed, 106 insertions(+), 78 deletions(-) commit bd5729a731d9491960b14f9f5aeb2229bca20383 @@ -4822,7 +4860,7 @@ Added Basque language\nAdded 'eu' (Basque) to LINGUAS po/LINGUAS | 1 + - po/eu.po | 344 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/eu.po | 344 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 345 insertions(+) commit 5c7a9b207656c8f46014d6059c936ea7ae832bdc @@ -4831,7 +4869,7 @@ Tajik translation updated - po/tg.po | 147 +++++++++++++++++++++++++++++++++------------------------------ + po/tg.po | 147 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------------------------- 1 file changed, 77 insertions(+), 70 deletions(-) commit 220781602980173d1275fe64d78d4a4941ff7891 @@ -4878,7 +4916,7 @@ Updated Danish translation - po/da.po | 302 ++++++++++++++++++++++++++++++++++++++++++++++----------------- + po/da.po | 302 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 223 insertions(+), 79 deletions(-) commit 76a5bffde439ff8bd9e45dfb1d6a42783819689f @@ -4909,7 +4947,7 @@ Updated Hebrew translation - po/he.po | 110 +++++++++++++++++++++++++++++++++------------------------------ + po/he.po | 110 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------------------- 1 file changed, 58 insertions(+), 52 deletions(-) commit 8036f20655eedc8fc4eb195cd1c5a911ccb38a97 @@ -4934,7 +4972,7 @@ Do not keep html cache since we are editing online notes. Opening a note should be async however. - src/libbiji/provider/biji-own-cloud-note.c | 60 +++++++++++++++++------------- + src/libbiji/provider/biji-own-cloud-note.c | 60 ++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 34 insertions(+), 26 deletions(-) commit 104f499d0fe1044ccf8ace08e97d67845473bac5 @@ -4944,7 +4982,7 @@ Initial Dutch translation by Erwin Poeze po/LINGUAS | 1 + - po/nl.po | 349 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/nl.po | 349 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 350 insertions(+) commit 2b38cf363045036c6843e9a6a3bc1d882aaad60d @@ -4985,8 +5023,8 @@ generate a unique path at startup that will anyway be changed soon - src/libbiji/biji-note-book.c | 15 ++++++++++++-- - src/libbiji/provider/biji-own-cloud-note.c | 33 +++++++++++++++++------------- + src/libbiji/biji-note-book.c | 15 +++++++++++++-- + src/libbiji/provider/biji-own-cloud-note.c | 33 +++++++++++++++++++-------------- 2 files changed, 32 insertions(+), 16 deletions(-) commit afd086ab60adb2ce9aab824bc93bb358e7549e50 @@ -4999,9 +5037,9 @@ as their title change. TODO : destroy old thumbnails. src/libbiji/biji-note-obj.c | 2 +- - src/libbiji/provider/biji-own-cloud-note.c | 71 ++++++++++++++------------ - src/libbiji/provider/biji-own-cloud-provider.c | 27 ++++++++-- - src/libbiji/provider/biji-own-cloud-provider.h | 3 ++ + src/libbiji/provider/biji-own-cloud-note.c | 71 +++++++++++++++++++++++++++++++++++++++-------------------------------- + src/libbiji/provider/biji-own-cloud-provider.c | 27 +++++++++++++++++++++++---- + src/libbiji/provider/biji-own-cloud-provider.h | 3 +++ 4 files changed, 66 insertions(+), 37 deletions(-) commit 83004cdb987e55dcd16b0a4a75ef626fd714748c @@ -5014,11 +5052,11 @@ Do not perform any wrong magic here. When the first row is edited, change the note name. - src/bjb-main-toolbar.c | 32 ------------ + src/bjb-main-toolbar.c | 32 -------------------------------- src/libbiji/biji-note-book.c | 1 - - src/libbiji/biji-note-obj.c | 87 +++++++++------------------------ - src/libbiji/biji-note-obj.h | 8 --- - src/libbiji/editor/biji-webkit-editor.c | 30 ++++++------ + src/libbiji/biji-note-obj.c | 87 ++++++++++++++++++++++++--------------------------------------------------------------- + src/libbiji/biji-note-obj.h | 8 -------- + src/libbiji/editor/biji-webkit-editor.c | 30 +++++++++++++++--------------- 5 files changed, 39 insertions(+), 119 deletions(-) commit 514b01d01106154d6a8f8cde85fb94063d6ed30e @@ -5038,7 +5076,7 @@ Added Korean translation po/LINGUAS | 1 + - po/ko.po | 350 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/ko.po | 350 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 351 insertions(+) commit 796e7bd59187d95c32e3f7772b4ff2f055bcada1 @@ -5126,10 +5164,10 @@ At startup, keep the files to open in a queue. Once the book is loaded, handle the switch to. - src/bjb-bijiben.c | 114 +++++++++++++++++++++++++++++++++++++++++--------- - src/bjb-controller.c | 2 + - src/bjb-window-base.c | 30 +++++++++++++ - src/bjb-window-base.h | 3 ++ + src/bjb-bijiben.c | 114 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------- + src/bjb-controller.c | 2 ++ + src/bjb-window-base.c | 30 +++++++++++++++++++++++++++++ + src/bjb-window-base.h | 3 +++ 4 files changed, 129 insertions(+), 20 deletions(-) commit e6f92e92a0e7d59d5f9215012bbe7411a25061c3 @@ -5139,7 +5177,7 @@ Added Latvian translation po/LINGUAS | 1 + - po/lv.po | 353 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/lv.po | 353 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 354 insertions(+) commit a85167953c26024db759a68820ed7f6521b70aaa @@ -5148,7 +5186,7 @@ Punjabi Translation updated by Aman - po/pa.po | 272 ++++++++++++++++++++++++++++++++++++++++++++++----------------- + po/pa.po | 272 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 201 insertions(+), 71 deletions(-) commit e9eee18da4e2d61e0aad4bb38e15bea0609e21c1 @@ -5201,7 +5239,7 @@ Updated Norwegian bokmål translation - po/nb.po | 89 ++++++++++++++++++++++++++++++++++------------------------------ + po/nb.po | 89 ++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------- 1 file changed, 48 insertions(+), 41 deletions(-) commit 43c8c58bed9853c0150244d14fdadd829c4a7e45 @@ -5210,8 +5248,8 @@ Updated Serbian translation - po/sr.po | 217 +++++++++++++++++++++++++++++++++++++-------------------- - po/sr@latin.po | 217 +++++++++++++++++++++++++++++++++++++-------------------- + po/sr.po | 217 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------- + po/sr@latin.po | 217 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------- 2 files changed, 282 insertions(+), 152 deletions(-) commit e3113935e0553634091a63d2e0ac2ba1340d78ce @@ -5220,7 +5258,7 @@ Updated Indonesian translation - po/id.po | 158 +++++++++++++++++++++++++++++++++++++-------------------------- + po/id.po | 158 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------------- 1 file changed, 93 insertions(+), 65 deletions(-) commit 96d245e8e4851f0e1e9b6ba13356d105050d2728 @@ -5240,7 +5278,7 @@ Updated Russian translation - po/ru.po | 251 ++++++++++++++++++++++++++++++++++++--------------------------- + po/ru.po | 251 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------------- 1 file changed, 143 insertions(+), 108 deletions(-) commit 047215552f4d9bd46460635a22867adde49e7dda @@ -5249,7 +5287,7 @@ Finnish translation update by Jiri Grönroos - po/fi.po | 305 +++++++++++++++++++++++++++++++++++++++++++++++---------------- + po/fi.po | 305 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 230 insertions(+), 75 deletions(-) commit 994dc8f16ce727cca1f455a88ac9a91e130fb24a @@ -5321,7 +5359,7 @@ Added Irish translation po/LINGUAS | 1 + - po/ga.po | 354 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/ga.po | 354 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 355 insertions(+) commit 993dcfa6b42f5bdd3ad531c696bd767034b66c53 @@ -5339,7 +5377,7 @@ [l10n] Updated Italian translation. - po/it.po | 120 +++++++++++++++++++++++++-------------------------------------- + po/it.po | 120 +++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------------------------- 1 file changed, 47 insertions(+), 73 deletions(-) commit e0a349de766b2f69be005f058749dce392bb76d3 @@ -5358,7 +5396,7 @@ Updated Spanish translation - po/es.po | 93 ++++++++++++++++++++++++++++++++++------------------------------ + po/es.po | 93 ++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------- 1 file changed, 50 insertions(+), 43 deletions(-) commit f6185f320e97fbaf1ad5acf33abe39fbfdbd51c4 @@ -5387,7 +5425,7 @@ Updated Brazilian Portuguese translation - po/pt_BR.po | 66 +++++++++++++++++++++++++++++++++++-------------------------- + po/pt_BR.po | 66 ++++++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 38 insertions(+), 28 deletions(-) commit b4555e27cd68900bf73ecb4a159c10ea5dedf4fa @@ -5396,7 +5434,7 @@ Updated Polish translation - po/pl.po | 90 +++++++++++++++++++++++++++++++++++----------------------------- + po/pl.po | 90 +++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------- 1 file changed, 49 insertions(+), 41 deletions(-) commit df4d0c8f26ecf2cfb081eaa1499fce2011f40458 @@ -5415,7 +5453,7 @@ Added uk translation po/LINGUAS | 1 + - po/uk.po | 386 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/uk.po | 386 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 387 insertions(+) commit 63530ee4c36d87491cfbd91170731a4d9b482242 @@ -5447,7 +5485,7 @@ Updated Hungarian translation - po/hu.po | 72 +++++++++++++++++++++++++++++++--------------------------------- + po/hu.po | 72 +++++++++++++++++++++++++++++++++++------------------------------------- 1 file changed, 35 insertions(+), 37 deletions(-) commit c0b2ea09e89303e9bc0038b6edffa16400950201 @@ -5521,7 +5559,7 @@ Updated Slovenian translation - po/sl.po | 65 ++++++++++++++++++++++++++++++++-------------------------------- + po/sl.po | 65 ++++++++++++++++++++++++++++++++--------------------------------- 1 file changed, 32 insertions(+), 33 deletions(-) commit 7c183bcb276d4af332679e5e8f41ebe60dd7f6c1 @@ -5530,8 +5568,8 @@ Updated Traditional Chinese translation(Hong Kong and Taiwan) - po/zh_HK.po | 69 ++++++++++++++++++++++++++++++------------------------------- - po/zh_TW.po | 69 ++++++++++++++++++++++++++++++------------------------------- + po/zh_HK.po | 69 ++++++++++++++++++++++++++++++++++----------------------------------- + po/zh_TW.po | 69 ++++++++++++++++++++++++++++++++++----------------------------------- 2 files changed, 68 insertions(+), 70 deletions(-) commit b3a3b2da3edaca8314785576928c090000de77f1 @@ -5540,7 +5578,7 @@ Updated Lithuanian translation - po/lt.po | 71 +++++++++++++++++++++++++++++++--------------------------------- + po/lt.po | 71 ++++++++++++++++++++++++++++++++++------------------------------------- 1 file changed, 34 insertions(+), 37 deletions(-) commit 69fbc60c913ca63de53dc94d0f331ffbb33d08f7 @@ -5549,7 +5587,7 @@ Updated slovak translation - po/sk.po | 182 +++++++++++++++++++++++++++++++++++++-------------------------- + po/sk.po | 182 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------------- 1 file changed, 107 insertions(+), 75 deletions(-) commit 31782910f2c247f66187631cfb16582d618f5f07 @@ -5567,7 +5605,7 @@ Updated Czech translation - po/cs.po | 70 +++++++++++++++++++++++++++++++--------------------------------- + po/cs.po | 70 ++++++++++++++++++++++++++++++++++------------------------------------ 1 file changed, 34 insertions(+), 36 deletions(-) commit 490877ad1372041ec4f9007dcccdb524e37c3f18 @@ -5576,7 +5614,7 @@ Updated Brazilian Portuguese translation - po/pt_BR.po | 65 +++++++++++++++++++++++++++++++------------------------------ + po/pt_BR.po | 65 +++++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 33 insertions(+), 32 deletions(-) commit ee9b0d2228b4dcf7a670cc93e449a0503227cf49 @@ -5666,7 +5704,7 @@ Updated Galician translations - po/gl.po | 131 +++++++++++++++++++++++++++++++++++---------------------------- + po/gl.po | 131 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------ 1 file changed, 73 insertions(+), 58 deletions(-) commit 22446a6f7ad76560361c45a295bc4c5f053e81f1 @@ -5677,13 +5715,13 @@ Each provider will use the same func - src/libbiji/biji-local-note.c | 31 ++++++++++- - src/libbiji/biji-local-note.h | 3 +- - src/libbiji/biji-note-book.c | 14 ++--- - src/libbiji/biji-note-obj.c | 13 +++-- - src/libbiji/biji-tracker.c | 82 +++++------------------------- - src/libbiji/biji-tracker.h | 2 - - src/libbiji/provider/biji-local-provider.c | 25 +++++---- + src/libbiji/biji-local-note.c | 31 +++++++++++++++++++++++++++++-- + src/libbiji/biji-local-note.h | 3 ++- + src/libbiji/biji-note-book.c | 14 ++++++++------ + src/libbiji/biji-note-obj.c | 13 ++++++++----- + src/libbiji/biji-tracker.c | 82 +++++++++++++--------------------------------------------------------------------- + src/libbiji/biji-tracker.h | 2 -- + src/libbiji/provider/biji-local-provider.c | 25 +++++++++++++++---------- 7 files changed, 75 insertions(+), 95 deletions(-) commit ae960d385a02f7153d6bb568ea763c6e14c58b0b @@ -5694,8 +5732,8 @@ biji local note was included twice - src/libbiji/provider/biji-local-note.c | 211 --------------------------------- - src/libbiji/provider/biji-local-note.h | 59 --------- + src/libbiji/provider/biji-local-note.c | 211 -------------------------------------------------------------------------------------------- + src/libbiji/provider/biji-local-note.h | 59 -------------------------- 2 files changed, 270 deletions(-) commit 3f889f811302290154cf255ef15b4e498bffba31 @@ -5732,7 +5770,7 @@ [l10n] Updated Italian translation. - po/it.po | 296 ++++++++++++++++++++++++++++++++++++++++++++++----------------- + po/it.po | 296 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 218 insertions(+), 78 deletions(-) commit 42bf71b007ef2f8db693f0784bea4d491396e371 @@ -5741,7 +5779,7 @@ Updated Brazilian Portuguese translation - po/pt_BR.po | 127 +++++++++++++++++++++++++++++++++--------------------------- + po/pt_BR.po | 127 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------------- 1 file changed, 71 insertions(+), 56 deletions(-) commit 52e61a7996b283405579e6326311abd5447d6f4d @@ -5790,7 +5828,7 @@ Updated Hungarian translation - po/hu.po | 143 ++++++++++++++++++++++++++++++++++----------------------------- + po/hu.po | 143 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------------------- 1 file changed, 78 insertions(+), 65 deletions(-) commit 7d2cecd0204ee475e00767b97a1b1476d88b23e9 @@ -5808,7 +5846,7 @@ Added Friulian translation - po/fur.po | 343 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/fur.po | 343 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 343 insertions(+) commit 662ba3da49fc99240537936df512de23dd9a0327 @@ -5828,13 +5866,13 @@ Update index page, add introduction page, add rename page and fix a typo - .../figures/HighContrast_apps_scalable_bijiben.svg | 110 +++++++++++++++++++++ - help/C/figures/notes-scr.png | Bin 0 -> 36477 bytes - help/C/index.page | 38 ++++--- - help/C/introduction.page | 37 +++++++ - help/C/rename.page | 32 ++++++ - help/C/search.page | 2 +- - help/Makefile.am | 5 +- + help/C/figures/HighContrast_apps_scalable_bijiben.svg | 110 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + help/C/figures/notes-scr.png | Bin 0 -> 36477 bytes + help/C/index.page | 38 ++++++++++++++++----------- + help/C/introduction.page | 37 ++++++++++++++++++++++++++ + help/C/rename.page | 32 +++++++++++++++++++++++ + help/C/search.page | 2 +- + help/Makefile.am | 5 +++- 7 files changed, 207 insertions(+), 17 deletions(-) commit 6f6837cc287f16c57c22423dbc4771e7e5c6ab9b @@ -5843,7 +5881,7 @@ Updated Polish translation - po/pl.po | 237 ++++++++++++++++++++++++++++++++++++++++++++++----------------- + po/pl.po | 237 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------- 1 file changed, 173 insertions(+), 64 deletions(-) commit 8b63300ecc04c5bea832b53860df0622580b536d @@ -5870,7 +5908,7 @@ Updated Slovenian translation - po/sl.po | 173 +++++++++++++++++++++++++++++++++++++++------------------------ + po/sl.po | 173 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------- 1 file changed, 107 insertions(+), 66 deletions(-) commit 3c0d89c706597ef0ff5337a528188c9d01e51985 @@ -5879,8 +5917,8 @@ Updated Traditional Chinese translation(Hong Kong and Taiwan) - po/zh_HK.po | 129 +++++++++++++++++++++++++++++++++--------------------------- - po/zh_TW.po | 129 +++++++++++++++++++++++++++++++++--------------------------- + po/zh_HK.po | 129 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------------- + po/zh_TW.po | 129 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------------- 2 files changed, 144 insertions(+), 114 deletions(-) commit 1ac562a30cc354f032b2155619cf74c96922f497 @@ -5898,7 +5936,7 @@ Updated Spanish translation - po/es.po | 132 ++++++++++++++++++++++++++++++++++++--------------------------- + po/es.po | 132 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------------- 1 file changed, 75 insertions(+), 57 deletions(-) commit b4c9fab777489e305d0e55e862d0b65124ed581e @@ -5907,7 +5945,7 @@ Updated Norwegian bokmål translation - po/nb.po | 123 ++++++++++++++++++++++++++++++++++----------------------------- + po/nb.po | 123 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------------------------- 1 file changed, 66 insertions(+), 57 deletions(-) commit b1d1ee653d6387e84c58befffcc8408aecca3641 @@ -5916,7 +5954,7 @@ Updated Lithuanian translation - po/lt.po | 167 ++++++++++++++++++++++++++++++++++++++------------------------- + po/lt.po | 167 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------- 1 file changed, 100 insertions(+), 67 deletions(-) commit c2b69c83c004e7f47461142d4bbc98de673ee57a @@ -5925,7 +5963,7 @@ Updated Czech translation - po/cs.po | 125 ++++++++++++++++++++++++++++++++++----------------------------- + po/cs.po | 125 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------------------------- 1 file changed, 67 insertions(+), 58 deletions(-) commit 579bc132ec8fb700145546876afc3941195ff376 @@ -5934,7 +5972,7 @@ Tajik translation updated - po/tg.po | 132 ++++++++++++++++++++++++++++++++++++--------------------------- + po/tg.po | 132 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------------- 1 file changed, 75 insertions(+), 57 deletions(-) commit db21cb000e622edaed25e58ce1d14148fef38a58 @@ -5943,7 +5981,7 @@ Updated Hebrew translation. - po/he.po | 131 +++++++++++++++++++++++++++++++++++---------------------------- + po/he.po | 131 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------- 1 file changed, 72 insertions(+), 59 deletions(-) commit 86f927efce1b7d101760cd45f2dc96273f9adc1b @@ -5952,10 +5990,10 @@ selections: Update the selection bar to newer pattern - src/bjb-main-toolbar.c | 9 ++--- - src/bjb-main-view.c | 8 +--- - src/bjb-selection-toolbar.c | 93 ++++++++++++++------------------------------- - src/bjb-selection-toolbar.h | 4 +- + src/bjb-main-toolbar.c | 9 ++++----- + src/bjb-main-view.c | 8 ++------ + src/bjb-selection-toolbar.c | 93 ++++++++++++++++++++++++++++----------------------------------------------------------------- + src/bjb-selection-toolbar.h | 4 ++-- 4 files changed, 36 insertions(+), 78 deletions(-) commit e6137536efdf382572122e853ebbe0ce5f299b49 @@ -5997,14 +6035,14 @@ po/POTFILES.in | 2 + src/Makefile.am | 2 + - src/bjb-bijiben.c | 13 +- + src/bjb-bijiben.c | 13 ++- src/bjb-editor-toolbar.c | 6 +- src/bjb-main-toolbar.c | 10 +- src/bjb-main-view.c | 8 +- - src/bjb-settings-dialog.c | 535 ++++++++++++++++++++++++++++++++++++++++++++++ - src/bjb-settings-dialog.h | 61 ++++++ - src/bjb-settings.c | 190 ++++++++-------- - src/bjb-settings.h | 30 ++- + src/bjb-settings-dialog.c | 535 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/bjb-settings-dialog.h | 61 ++++++++++++ + src/bjb-settings.c | 190 +++++++++++++++++-------------------- + src/bjb-settings.h | 30 ++++-- 10 files changed, 733 insertions(+), 124 deletions(-) commit 03557160c9552a24c9fc849b79959a408ae86fa8 @@ -6028,18 +6066,18 @@ format src/libbiji/biji-info-set.h | 2 +- - src/libbiji/biji-note-book.c | 72 ++++++++- - src/libbiji/biji-note-book.h | 11 +- + src/libbiji/biji-note-book.c | 72 ++++++++++++++++++++++++++++- + src/libbiji/biji-note-book.h | 11 ++++- src/libbiji/biji-note-id.c | 2 + src/libbiji/libbiji.h | 1 + - src/libbiji/provider/biji-local-note.c | 211 +++++++++++++++++++++++++ - src/libbiji/provider/biji-local-note.h | 59 +++++++ - src/libbiji/provider/biji-local-provider.c | 27 +++- - src/libbiji/provider/biji-own-cloud-note.c | 124 ++++++++++++--- - src/libbiji/provider/biji-own-cloud-provider.c | 96 +++++++++-- - src/libbiji/provider/biji-own-cloud-provider.h | 3 + - src/libbiji/provider/biji-provider.c | 7 + - src/libbiji/provider/biji-provider.h | 36 ++++- + src/libbiji/provider/biji-local-note.c | 211 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/provider/biji-local-note.h | 59 ++++++++++++++++++++++++ + src/libbiji/provider/biji-local-provider.c | 27 ++++++++++- + src/libbiji/provider/biji-own-cloud-note.c | 124 +++++++++++++++++++++++++++++++++++++++---------- + src/libbiji/provider/biji-own-cloud-provider.c | 96 ++++++++++++++++++++++++++++++++------ + src/libbiji/provider/biji-own-cloud-provider.h | 3 ++ + src/libbiji/provider/biji-provider.c | 7 +++ + src/libbiji/provider/biji-provider.h | 36 +++++++++++++-- 13 files changed, 604 insertions(+), 47 deletions(-) commit 56ce2f19b7945efe724cba1f679b927d719b78bb @@ -6048,7 +6086,7 @@ Updated Brazilian Portuguese translation - po/pt_BR.po | 82 +++++++++++++++++++++++++++++++++++++++---------------------- + po/pt_BR.po | 82 ++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 52 insertions(+), 30 deletions(-) commit 68357b46044217c5915badb9a7f6f1cd7b584eec @@ -6057,7 +6095,7 @@ Update Chinese simplified translation - po/zh_CN.po | 260 +++++++++++++++++++++++++++++++++++++++++++++--------------- + po/zh_CN.po | 260 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 196 insertions(+), 64 deletions(-) commit ff370aadf4c8c0a53ee37d02778deeaf288356ed @@ -6066,7 +6104,7 @@ Updated Hungarian translation - po/hu.po | 264 +++++++++++++++++++++++++++++++++++++++++++++++---------------- + po/hu.po | 264 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 197 insertions(+), 67 deletions(-) commit b8d612f476d68343b9130d4c4883eec7777464ff @@ -6075,7 +6113,7 @@ Updated German translation - po/de.po | 119 +++++++++++++++++++++++++++++++++++++++------------------------ + po/de.po | 119 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------------- 1 file changed, 73 insertions(+), 46 deletions(-) commit 4af64703245dc3fa88357a09446bfb62f87afd91 @@ -6084,7 +6122,7 @@ Updated Galician translations - po/gl.po | 134 ++++++++++++++++++++++++++++++++++++++------------------------- + po/gl.po | 134 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------- 1 file changed, 80 insertions(+), 54 deletions(-) commit 25d90d59bb259eaa110507235a62b2ca123fa3fd @@ -6093,7 +6131,7 @@ Updated Hebrew translation. - po/he.po | 174 ++++++++++++++++++++++++++++++++++++++++----------------------- + po/he.po | 174 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------- 1 file changed, 112 insertions(+), 62 deletions(-) commit e0de494a001bb62121630a7956202c35e9945481 @@ -6138,7 +6176,7 @@ Tajik translation added - po/tg.po | 334 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/tg.po | 334 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 334 insertions(+) commit 54a1d06c14230fdfca27da7216886fbe31772b91 @@ -6165,8 +6203,8 @@ Updated Traditional Chinese translation(Hong Kong and Taiwan) - po/zh_HK.po | 251 +++++++++++++++++++++++++++++++++++++++++++++--------------- - po/zh_TW.po | 251 +++++++++++++++++++++++++++++++++++++++++++++--------------- + po/zh_HK.po | 251 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------ + po/zh_TW.po | 251 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------ 2 files changed, 376 insertions(+), 126 deletions(-) commit 469907134d1083d25e9e186c8e0f766f6e9a8886 @@ -6210,7 +6248,7 @@ Do not log anything without title. src/libbiji/biji-note-obj.c | 1 + - src/libbiji/biji-zeitgeist.c | 96 ++++++++++++++++++++++++++++++++++++++++++-- + src/libbiji/biji-zeitgeist.c | 96 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---- 2 files changed, 93 insertions(+), 4 deletions(-) commit 631746e5996138886e3665cdf7831abbf84c4fdf @@ -6231,17 +6269,17 @@ Tell the user something is wrong there rather crashing more or less silently. - src/bjb-bijiben.c | 36 +++++++++++++++------ - src/bjb-empty-results-box.c | 75 +++++++++++++++++++++++++++++++------------- - src/bjb-empty-results-box.h | 3 +- + src/bjb-bijiben.c | 36 ++++++++++++++++++++++++++---------- + src/bjb-empty-results-box.c | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------- + src/bjb-empty-results-box.h | 3 ++- src/bjb-main-toolbar.c | 1 + - src/bjb-window-base.c | 8 +++++ + src/bjb-window-base.c | 8 ++++++++ src/bjb-window-base.h | 1 + src/libbiji/Makefile.am | 2 ++ - src/libbiji/biji-error.c | 47 +++++++++++++++++++++++++++ - src/libbiji/biji-error.h | 48 ++++++++++++++++++++++++++++ - src/libbiji/biji-note-book.c | 61 +++++++++++++++++++++++++---------- - src/libbiji/biji-note-book.h | 3 +- + src/libbiji/biji-error.c | 47 +++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/biji-error.h | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/biji-note-book.c | 61 ++++++++++++++++++++++++++++++++++++++++++++----------------- + src/libbiji/biji-note-book.h | 3 ++- 11 files changed, 235 insertions(+), 50 deletions(-) commit 2392c299220a0b780ce505bbb91b93b6b64abf89 @@ -6250,7 +6288,7 @@ l10n: Update Japanese translation - po/ja.po | 112 ++++++++++++++++++++++++++++++++++----------------------------- + po/ja.po | 112 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------------------- 1 file changed, 61 insertions(+), 51 deletions(-) commit 243cc0a3cf02bfdd4dc80efea93d39543a6af204 @@ -6300,10 +6338,10 @@ NoteBook creates the zg log and pushes the data source. - src/libbiji/biji-note-book.c | 9 +++++++ + src/libbiji/biji-note-book.c | 9 +++++++++ src/libbiji/biji-note-book.h | 3 +++ - src/libbiji/biji-zeitgeist.c | 63 +++++++++++++++++++++++++++++--------------- - src/libbiji/biji-zeitgeist.h | 7 ++++- + src/libbiji/biji-zeitgeist.c | 63 ++++++++++++++++++++++++++++++++++++++++++--------------------- + src/libbiji/biji-zeitgeist.h | 7 ++++++- 4 files changed, 60 insertions(+), 22 deletions(-) commit 318346c87e420201be841a8a4451aa8516617db0 @@ -6331,7 +6369,7 @@ Updated Norwegian bokmål translation - po/nb.po | 81 ++++++++++++++++++++++++++++++++++++++-------------------------- + po/nb.po | 81 ++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------- 1 file changed, 48 insertions(+), 33 deletions(-) commit 5beea9ff56464a41f15a69558abaf984cca06274 @@ -6341,7 +6379,7 @@ Added Indonesian translation po/LINGUAS | 1 + - po/id.po | 324 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/id.po | 324 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 325 insertions(+) commit 917756bbebf0fe2a8e9f416258e8389c66f3ba43 @@ -6359,7 +6397,7 @@ Updated Spanish translation - po/es.po | 119 ++++++++++++++++++++++++++++++++++++--------------------------- + po/es.po | 119 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------------- 1 file changed, 69 insertions(+), 50 deletions(-) commit 9bc804e4ded773ff9ce8419667c36b7198f67436 @@ -6400,7 +6438,7 @@ Updated Polish translation - po/pl.po | 73 +++++++++++++++++++++++++++++++--------------------------------- + po/pl.po | 73 +++++++++++++++++++++++++++++++++++-------------------------------------- 1 file changed, 35 insertions(+), 38 deletions(-) commit 3b082948c76c1ec097357da1c2489201a2417496 @@ -6409,7 +6447,7 @@ Updated Brazilian Portuguese translation - po/pt_BR.po | 111 +++++++++++++++++++++++++++++++----------------------------- + po/pt_BR.po | 111 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------ 1 file changed, 57 insertions(+), 54 deletions(-) commit 6af0778e7e7757b1db1e921ebc0fbaf6612c874a @@ -6418,7 +6456,7 @@ Updated Czech translation - po/cs.po | 97 ++++++++++++++++++++++++++++++++-------------------------------- + po/cs.po | 97 ++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------- 1 file changed, 48 insertions(+), 49 deletions(-) commit bc08780f1ff8bd4c82d306aa39200084d0cfb68d @@ -6430,7 +6468,7 @@ The CreativeCommons icon might be used for accessibility. Fixes #703404 - data/icons/HighContrast_apps_scalable_bijiben.svg | 110 ++++++++++++++++++++++ + data/icons/HighContrast_apps_scalable_bijiben.svg | 110 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ data/icons/Makefile.am | 1 + 2 files changed, 111 insertions(+) @@ -6496,7 +6534,7 @@ mainToolbar: Use GtkButton subclasses instead of GdHeaderButton configure.ac | 1 - - src/bjb-main-toolbar.c | 52 +++++++++++++++++++++++++++++--------------------- + src/bjb-main-toolbar.c | 52 ++++++++++++++++++++++++++++++---------------------- 2 files changed, 30 insertions(+), 23 deletions(-) commit f2c7322896f8eed09a043d0644bcfedeb109dd9f @@ -6507,14 +6545,14 @@ Port Import Dialog to GtkListBox - .gitmodules | 3 -- + .gitmodules | 3 --- Makefile.am | 2 +- - autogen.sh | 7 ---- - configure.ac | 17 +------- + autogen.sh | 7 ------- + configure.ac | 17 +---------------- egg-list-box | 1 - - m4/ax_config_dir.m4 | 109 ------------------------------------------------ + m4/ax_config_dir.m4 | 109 ----------------------------------------------------------------------------------------------------------- po/POTFILES.skip | 1 - - src/bjb-import-dialog.c | 52 ++++++++++++----------- + src/bjb-import-dialog.c | 52 +++++++++++++++++++++++++++------------------------ 8 files changed, 30 insertions(+), 162 deletions(-) commit 173974013e288e6e27e506c1457dffffccd179da @@ -6523,7 +6561,7 @@ Updated Norwegian bokmål translation - po/nb.po | 139 +++++++++++++++++++++++++++++++-------------------------------- + po/nb.po | 139 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------------- 1 file changed, 69 insertions(+), 70 deletions(-) commit 11dd105ad55f9333ecbba98bf4c5e6dcfabca96b @@ -6585,7 +6623,7 @@ data/icons/hicolor_apps_256x256_bijiben.png | Bin 0 -> 22451 bytes data/icons/hicolor_apps_32x32_bijiben.png | Bin 1282 -> 1484 bytes data/icons/hicolor_apps_48x48_bijiben.png | Bin 2325 -> 2561 bytes - data/icons/hicolor_apps_scalable_bijiben.svg | 2414 ++++++++++++++++++++++++-- + data/icons/hicolor_apps_scalable_bijiben.svg | 2414 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----- 8 files changed, 2278 insertions(+), 137 deletions(-) commit dc70ddd6eebdd8244c6925a3ee205e171fc59c0e @@ -6618,8 +6656,8 @@ mainToolbar: inherit GtkHeaderBar, not GdMainToolbar configure.ac | 1 - - src/bjb-main-toolbar.c | 155 ++++++++++++++++++++++++++++++------------------- - src/bjb-main-toolbar.h | 16 +++-- + src/bjb-main-toolbar.c | 155 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------- + src/bjb-main-toolbar.h | 16 +++++++----- 3 files changed, 104 insertions(+), 68 deletions(-) commit b676e913160bde11d15dbd4284b265235491ecf8 @@ -6654,16 +6692,16 @@ Local notes should use the same principles src/libbiji/Makefile.am | 2 + - src/libbiji/biji-note-book.c | 234 ++++------------ + src/libbiji/biji-note-book.c | 234 +++++++++++------------------------------------------- src/libbiji/biji-note-book.h | 2 +- src/libbiji/biji-note-id.h | 1 + src/libbiji/libbiji.h | 1 + src/libbiji/provider/Makefile.am | 2 + - src/libbiji/provider/biji-local-provider.c | 364 +++++++++++++++++++++++++ - src/libbiji/provider/biji-local-provider.h | 66 +++++ - src/libbiji/provider/biji-own-cloud-provider.c | 81 ++---- - src/libbiji/provider/biji-provider.c | 105 ++++++- - src/libbiji/provider/biji-provider.h | 7 + + src/libbiji/provider/biji-local-provider.c | 364 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/provider/biji-local-provider.h | 66 ++++++++++++++++ + src/libbiji/provider/biji-own-cloud-provider.c | 81 +++++++------------ + src/libbiji/provider/biji-provider.c | 105 +++++++++++++++++++++++- + src/libbiji/provider/biji-provider.h | 7 ++ 11 files changed, 620 insertions(+), 245 deletions(-) commit 4e2873396991718ab2e1a4c0212114308ae9fa75 @@ -6672,7 +6710,7 @@ Updated German translation - po/de.po | 224 ++++++++++++++++++++++++++++++++++++++++++++++----------------- + po/de.po | 224 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------- 1 file changed, 164 insertions(+), 60 deletions(-) commit 5d42dc86993ae28f96db7f34e84312795f70b36a @@ -6682,7 +6720,7 @@ l10n: Add Japanese translation po/LINGUAS | 1 + - po/ja.po | 314 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/ja.po | 314 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 315 insertions(+) commit cfba2a4413f2d8ad18873053c2d17f7628133324 @@ -6733,43 +6771,43 @@ But no new note, no UI to setup anything and wrong startup configure.ac | 1 + - src/bjb-bijiben.c | 103 ++- + src/bjb-bijiben.c | 103 ++++++++++-- src/bjb-controller.c | 12 +- - src/bjb-editor-toolbar.c | 266 ++++---- - src/bjb-main-toolbar.c | 93 +-- + src/bjb-editor-toolbar.c | 266 +++++++++++++++-------------- + src/bjb-main-toolbar.c | 93 +++++----- src/bjb-main-view.c | 2 + src/bjb-main-view.h | 2 + src/bjb-note-tag-dialog.c | 10 +- - src/bjb-selection-toolbar.c | 23 +- + src/bjb-selection-toolbar.c | 23 ++- src/bjb-share.c | 6 +- src/libbiji/Makefile.am | 12 +- - src/libbiji/biji-collection.c | 39 +- + src/libbiji/biji-collection.c | 39 +++-- src/libbiji/biji-collection.h | 2 +- - src/libbiji/biji-info-set.c | 44 ++ - src/libbiji/biji-info-set.h | 64 ++ - src/libbiji/biji-item.c | 87 ++- - src/libbiji/biji-item.h | 14 + - src/libbiji/biji-local-note.c | 212 ++++++ - src/libbiji/biji-local-note.h | 59 ++ - src/libbiji/biji-note-book.c | 244 +++++-- - src/libbiji/biji-note-book.h | 57 +- - src/libbiji/biji-note-id.c | 214 ++++--- - src/libbiji/biji-note-id.h | 46 +- - src/libbiji/biji-note-obj.c | 342 ++++------ - src/libbiji/biji-note-obj.h | 144 +++-- - src/libbiji/biji-tracker.c | 467 +++++++++++--- - src/libbiji/biji-tracker.h | 44 +- - src/libbiji/deserializer/biji-lazy-deserializer.c | 35 +- + src/libbiji/biji-info-set.c | 44 +++++ + src/libbiji/biji-info-set.h | 64 +++++++ + src/libbiji/biji-item.c | 87 +++++++++- + src/libbiji/biji-item.h | 14 ++ + src/libbiji/biji-local-note.c | 212 +++++++++++++++++++++++ + src/libbiji/biji-local-note.h | 59 +++++++ + src/libbiji/biji-note-book.c | 244 ++++++++++++++++++++++----- + src/libbiji/biji-note-book.h | 57 +++++-- + src/libbiji/biji-note-id.c | 214 ++++++++++++++--------- + src/libbiji/biji-note-id.h | 46 +++-- + src/libbiji/biji-note-obj.c | 342 ++++++++++++++++--------------------- + src/libbiji/biji-note-obj.h | 144 ++++++++++------ + src/libbiji/biji-tracker.c | 467 +++++++++++++++++++++++++++++++++++++++++++-------- + src/libbiji/biji-tracker.h | 44 +++-- + src/libbiji/deserializer/biji-lazy-deserializer.c | 35 +++- src/libbiji/editor/biji-webkit-editor.c | 7 +- src/libbiji/libbiji.h | 1 + src/libbiji/provider/Makefile.am | 1 + - src/libbiji/provider/biji-own-cloud-note.c | 288 +++++++++ - src/libbiji/provider/biji-own-cloud-note.h | 61 ++ - src/libbiji/provider/biji-own-cloud-provider.c | 745 ++++++++++++++++++++++ - src/libbiji/provider/biji-own-cloud-provider.h | 61 ++ - src/libbiji/provider/biji-provider.c | 74 +++ - src/libbiji/provider/biji-provider.h | 59 ++ - src/libbiji/serializer/biji-lazy-serializer.c | 33 +- + src/libbiji/provider/biji-own-cloud-note.c | 288 +++++++++++++++++++++++++++++++ + src/libbiji/provider/biji-own-cloud-note.h | 61 +++++++ + src/libbiji/provider/biji-own-cloud-provider.c | 745 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/provider/biji-own-cloud-provider.h | 61 +++++++ + src/libbiji/provider/biji-provider.c | 74 ++++++++ + src/libbiji/provider/biji-provider.h | 59 +++++++ + src/libbiji/serializer/biji-lazy-serializer.c | 33 +++- 38 files changed, 3244 insertions(+), 730 deletions(-) commit 850286f7c05df6f16f9f61eaf3ab1ad262e39ca8 @@ -6779,7 +6817,7 @@ Added German translation po/LINGUAS | 1 + - po/de.po | 238 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/de.po | 238 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 239 insertions(+) commit 17bc96576fb7a871a1713744a03f07c2c4fbfe21 @@ -6788,7 +6826,7 @@ Updated Brazilian Portuguese translation - po/pt_BR.po | 105 ++++++++++++++++++++++++++++++++++++++---------------------- + po/pt_BR.po | 105 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------- 1 file changed, 67 insertions(+), 38 deletions(-) commit a89cee075a905ee1da6e1392cc4ad432a43f4539 @@ -6797,7 +6835,7 @@ Updated Greek translation - po/el.po | 208 +++++++++++++++++++++++++++++++++++++++++++++++---------------- + po/el.po | 208 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 157 insertions(+), 51 deletions(-) commit 3762402567b6a3bb5196bdb468ddb5d035b6f961 @@ -6806,7 +6844,7 @@ Updated slovak translation - po/sk.po | 206 ++++++++++++++++++++++++++++++++++++++++++++------------------- + po/sk.po | 206 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------ 1 file changed, 146 insertions(+), 60 deletions(-) commit bad088b00b8841a9d58d41a566b8464850a5f732 @@ -6815,7 +6853,7 @@ Updated Slovenian translation - po/sl.po | 107 +++++++++++++++++++++++++++++++++++++++------------------------ + po/sl.po | 107 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------- 1 file changed, 67 insertions(+), 40 deletions(-) commit 59275c9fa7b40c52805a496230808a616cad641a @@ -6824,7 +6862,7 @@ Updated Czech translation - po/cs.po | 100 +++++++++++++++++++++++++++++++++++++++------------------------ + po/cs.po | 100 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------- 1 file changed, 62 insertions(+), 38 deletions(-) commit f94c8476b2e27ad404148e9ffaad6dd8bfab6a7f @@ -6834,7 +6872,7 @@ Added Lithuanian translation po/LINGUAS | 1 + - po/lt.po | 317 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/lt.po | 317 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 318 insertions(+) commit b5657f14959a2706f78bb667c29255aef4fa761f @@ -6853,7 +6891,7 @@ Updated Norwegian bokmål translation - po/nb.po | 309 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/nb.po | 309 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 309 insertions(+) commit fde7f979a48d00cd31d84a27c4fa8587e6f1789a @@ -6862,7 +6900,7 @@ Updated Galician translations - po/gl.po | 276 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---- + po/gl.po | 276 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 259 insertions(+), 17 deletions(-) commit 3648a65b302dacebcba921d9c62475c2e1e7f42b @@ -6896,7 +6934,7 @@ Do not use generic icon if we have better - src/bijiben-shell-search-provider.c | 62 ++++++++++++++++++++++++++++--------- + src/bijiben-shell-search-provider.c | 62 ++++++++++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 48 insertions(+), 14 deletions(-) commit 442789c441c4439faf6dfff9f7f0ac692695cba8 @@ -6906,9 +6944,9 @@ selectionToolbar - mainView : cleanup src/bjb-main-toolbar.c | 2 +- - src/bjb-main-view.c | 105 -------------------------------------------- - src/bjb-main-view.h | 11 +---- - src/bjb-selection-toolbar.c | 84 ++++++++++++++++++++++++++++++----- + src/bjb-main-view.c | 105 ------------------------------------------------------------------------------------------------------- + src/bjb-main-view.h | 11 +---------- + src/bjb-selection-toolbar.c | 84 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------- 4 files changed, 76 insertions(+), 126 deletions(-) commit 8975f7f7fce376818c4a37876d8d16b2b9046c61 @@ -6930,8 +6968,8 @@ cleanup: bjb_window_base construction in constructed - src/bjb-bijiben.c | 9 ++++- - src/bjb-window-base.c | 100 ++++++++++++++++++++++++-------------------------- + src/bjb-bijiben.c | 9 +++++++-- + src/bjb-window-base.c | 100 +++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------------- 2 files changed, 54 insertions(+), 55 deletions(-) commit 5600a0511cae90408596b6e1a7b2ad489f826eb4 @@ -6941,7 +6979,7 @@ [l10n] Added Turkish translation po/LINGUAS | 1 + - po/tr.po | 339 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/tr.po | 339 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 340 insertions(+) commit dbc8bd06f073919faf186697585715649403e9c8 @@ -6950,7 +6988,7 @@ Updated Spanish translation - po/es.po | 69 +++++++++++++++++++++++++++++++++++----------------------------- + po/es.po | 69 ++++++++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 38 insertions(+), 31 deletions(-) commit db3acb6b625f3c68fd4d70ae1e906afb774ad933 @@ -6989,12 +7027,12 @@ po/POTFILES.in | 1 + src/Makefile.am | 2 + - src/bjb-controller.c | 135 ++++++++++++++++------ - src/bjb-controller.h | 3 + - src/bjb-load-more-button.c | 236 +++++++++++++++++++++++++++++++++++++++ - src/bjb-load-more-button.h | 78 +++++++++++++ - src/bjb-main-toolbar.c | 41 ++++--- - src/bjb-main-view.c | 11 +- + src/bjb-controller.c | 135 ++++++++++++++++++++++++++++++++++++++++++-------------- + src/bjb-controller.h | 3 ++ + src/bjb-load-more-button.c | 236 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/bjb-load-more-button.h | 78 +++++++++++++++++++++++++++++++++ + src/bjb-main-toolbar.c | 41 +++++++++++------ + src/bjb-main-view.c | 11 ++++- src/libbiji/biji-marshalers.list | 1 + 9 files changed, 458 insertions(+), 50 deletions(-) @@ -7008,13 +7046,13 @@ libbiji deals with GAsyncResult and triggers the expected callback. - src/bjb-controller.c | 39 ++--- - src/bjb-note-tag-dialog.c | 11 +- - src/libbiji/biji-collection.c | 16 +- - src/libbiji/biji-note-book.c | 7 +- - src/libbiji/biji-note-obj.c | 16 +- - src/libbiji/biji-tracker.c | 343 +++++++++++++++++++++++++----------------- - src/libbiji/biji-tracker.h | 92 ++++++----- + src/bjb-controller.c | 39 ++++-------- + src/bjb-note-tag-dialog.c | 11 ++-- + src/libbiji/biji-collection.c | 16 ++--- + src/libbiji/biji-note-book.c | 7 +-- + src/libbiji/biji-note-obj.c | 16 ++++- + src/libbiji/biji-tracker.c | 343 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------- + src/libbiji/biji-tracker.h | 92 +++++++++++++++------------ 7 files changed, 299 insertions(+), 225 deletions(-) commit 994676ef5878f112eb6913a65446ab5f422debcc @@ -7047,11 +7085,11 @@ po/POTFILES.in | 1 + src/Makefile.am | 2 + - src/bjb-app-menu.c | 175 ++------------- - src/bjb-bijiben.c | 27 +-- + src/bjb-app-menu.c | 175 ++++------------------------------ + src/bjb-bijiben.c | 27 +----- src/bjb-bijiben.h | 2 +- - src/bjb-import-dialog.c | 557 ++++++++++++++++++++++++++++++++++++++++++++++++ - src/bjb-import-dialog.h | 65 ++++++ + src/bjb-import-dialog.c | 557 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/bjb-import-dialog.h | 65 +++++++++++++ 7 files changed, 647 insertions(+), 182 deletions(-) commit 286c01599b3ac8edc82dde5a649a7d409afb6491 @@ -7060,12 +7098,12 @@ eggListBox : import as a git submodule - .gitmodules | 3 ++ + .gitmodules | 3 +++ Makefile.am | 2 +- - autogen.sh | 7 ++++ - configure.ac | 34 ++++++++++++++-- + autogen.sh | 7 +++++++ + configure.ac | 34 ++++++++++++++++++++++++++++++---- egg-list-box | 1 + - m4/ax_config_dir.m4 | 109 ++++++++++++++++++++++++++++++++++++++++++++++++++++ + m4/ax_config_dir.m4 | 109 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/POTFILES.skip | 1 + 7 files changed, 152 insertions(+), 5 deletions(-) @@ -7075,8 +7113,8 @@ Updated Serbian translation - po/sr.po | 161 ++++++++++++++++++++++++++++++++++++++------------------- - po/sr@latin.po | 161 ++++++++++++++++++++++++++++++++++++++------------------- + po/sr.po | 161 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------- + po/sr@latin.po | 161 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------- 2 files changed, 214 insertions(+), 108 deletions(-) commit 7a7af2ba2de404c12e24429d43f55a3d98d8a6e5 @@ -7086,7 +7124,7 @@ Updated Russian translation po/LINGUAS | 1 + - po/ru.po | 323 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/ru.po | 323 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 324 insertions(+) commit 82ee5a63331c947a9cd5ab648c8326face40c6a1 @@ -7095,7 +7133,7 @@ Updated Spanish translation - po/es.po | 86 +++++++++++++++++++++++++++++++++------------------------------- + po/es.po | 86 ++++++++++++++++++++++++++++++++++++++++++++------------------------------------------ 1 file changed, 44 insertions(+), 42 deletions(-) commit 43219f59bb0d42a45a7f76c85e590e326101db64 @@ -7125,14 +7163,14 @@ The biji_item_add_collection is responsible for refreshing the collection itself afterward - src/bjb-note-tag-dialog.c | 36 +++++++++++++++-------- - src/libbiji/biji-collection.c | 7 ++++- - src/libbiji/biji-collection.h | 4 +++ - src/libbiji/biji-item.c | 4 +-- - src/libbiji/biji-item.h | 12 ++++++-- - src/libbiji/biji-note-obj.c | 26 ++++++++++------ - src/libbiji/biji-tracker.c | 23 +++++++++------ - src/libbiji/biji-tracker.h | 14 +++++++-- + src/bjb-note-tag-dialog.c | 36 ++++++++++++++++++++++++------------ + src/libbiji/biji-collection.c | 7 ++++++- + src/libbiji/biji-collection.h | 4 ++++ + src/libbiji/biji-item.c | 4 ++-- + src/libbiji/biji-item.h | 12 +++++++++--- + src/libbiji/biji-note-obj.c | 26 +++++++++++++++++--------- + src/libbiji/biji-tracker.c | 23 ++++++++++++++--------- + src/libbiji/biji-tracker.h | 14 +++++++++++--- src/libbiji/deserializer/biji-lazy-deserializer.c | 2 +- 9 files changed, 88 insertions(+), 40 deletions(-) @@ -7142,7 +7180,7 @@ Updated Czech translation - po/cs.po | 108 ++++++++++++++++++++++++++++++++++++++++++--------------------- + po/cs.po | 108 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------ 1 file changed, 72 insertions(+), 36 deletions(-) commit 731ed01e56a9777f66aa8b13ac82a993b560eb01 @@ -7151,7 +7189,7 @@ Updated Brazilian Portuguese translation - po/pt_BR.po | 113 +++++++++++++++++++++++++++++++++++++++++++----------------- + po/pt_BR.po | 113 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 82 insertions(+), 31 deletions(-) commit d99e91218a8d7bed050c09b05c22b527e3a6f76a @@ -7190,18 +7228,18 @@ The associated retrieves provide both collection label, urn and mtime. Notes use the same format and so does the controller. - src/bjb-controller.c | 20 +++++++-------- - src/bjb-note-tag-dialog.c | 54 +++++++++++++++++++++++++--------------- - src/libbiji/biji-collection.c | 43 ++++++++++++++++++++++++++------ - src/libbiji/biji-collection.h | 5 +++- - src/libbiji/biji-item.c | 8 +++--- - src/libbiji/biji-item.h | 4 +-- - src/libbiji/biji-note-book.c | 6 ++++- - src/libbiji/biji-note-id.c | 7 ++++++ + src/bjb-controller.c | 20 ++++++++++---------- + src/bjb-note-tag-dialog.c | 54 ++++++++++++++++++++++++++++++++++-------------------- + src/libbiji/biji-collection.c | 43 +++++++++++++++++++++++++++++++++++-------- + src/libbiji/biji-collection.h | 5 ++++- + src/libbiji/biji-item.c | 8 +++++--- + src/libbiji/biji-item.h | 4 ++-- + src/libbiji/biji-note-book.c | 6 +++++- + src/libbiji/biji-note-id.c | 7 +++++++ src/libbiji/biji-note-id.h | 2 ++ - src/libbiji/biji-note-obj.c | 11 +++++---- - src/libbiji/biji-tracker.c | 57 ++++++++++++++++++++++++++++++++++--------- - src/libbiji/biji-tracker.h | 17 +++++++++++++ + src/libbiji/biji-note-obj.c | 11 ++++++----- + src/libbiji/biji-tracker.c | 57 ++++++++++++++++++++++++++++++++++++++++++++++----------- + src/libbiji/biji-tracker.h | 17 +++++++++++++++++ 12 files changed, 173 insertions(+), 61 deletions(-) commit 02521db181b389e2d4f1b216c5a0ae4bbf1f6301 @@ -7230,7 +7268,7 @@ Updated Hebrew translation. - po/he.po | 296 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/he.po | 296 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 296 insertions(+) commit 042f1eb946dba3ed350e9089bbf9ef66c9c94c33 @@ -7242,25 +7280,25 @@ path getter is no more allocated to remain the same than title src/bjb-bijiben.c | 3 +- - src/bjb-controller.c | 18 +-- + src/bjb-controller.c | 18 ++++----- src/bjb-rename-note.c | 2 +- - src/bjb-rename-note.h | 5 +- - src/bjb-share.c | 5 +- - src/libbiji/biji-collection.c | 6 +- + src/bjb-rename-note.h | 5 ++- + src/bjb-share.c | 5 ++- + src/libbiji/biji-collection.c | 6 +-- src/libbiji/biji-item.c | 4 +- - src/libbiji/biji-item.h | 19 ++- - src/libbiji/biji-note-book.c | 20 +-- + src/libbiji/biji-item.h | 19 +++++---- + src/libbiji/biji-note-book.c | 20 +++++----- src/libbiji/biji-note-book.h | 4 +- - src/libbiji/biji-note-id.c | 23 ++- - src/libbiji/biji-note-id.h | 6 +- - src/libbiji/biji-note-obj.c | 175 +++++++++++----------- - src/libbiji/biji-string.c | 6 +- + src/libbiji/biji-note-id.c | 23 +++++++---- + src/libbiji/biji-note-id.h | 6 +-- + src/libbiji/biji-note-obj.c | 175 +++++++++++++++++++++++++++++++++++++++------------------------------------------ + src/libbiji/biji-string.c | 6 +-- src/libbiji/biji-string.h | 4 +- - src/libbiji/biji-tracker.c | 28 ++-- + src/libbiji/biji-tracker.c | 28 ++++++------- src/libbiji/biji-tracker.h | 4 +- - src/libbiji/biji-zeitgeist.c | 6 +- - src/libbiji/deserializer/biji-lazy-deserializer.c | 5 +- - src/libbiji/serializer/biji-lazy-serializer.c | 7 +- + src/libbiji/biji-zeitgeist.c | 6 +-- + src/libbiji/deserializer/biji-lazy-deserializer.c | 5 +-- + src/libbiji/serializer/biji-lazy-serializer.c | 7 ++-- 20 files changed, 171 insertions(+), 179 deletions(-) commit 156dfabb985f2488812fc1c89d95071dc48eb9b3 @@ -7271,7 +7309,7 @@ Look for both trashed and changing items (only color...) - src/libbiji/biji-collection.c | 55 +++++++++++++++++++++++++++++++++++++------ + src/libbiji/biji-collection.c | 55 ++++++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 48 insertions(+), 7 deletions(-) commit f477332199ffc9e478c71727b1fa8c1da314c4d5 @@ -7307,9 +7345,9 @@ When items are added (at construct), update the icon and emit a signal - src/libbiji/biji-collection.c | 130 +++++++++++++++++++++++++++++++++++++----- + src/libbiji/biji-collection.c | 130 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------- src/libbiji/biji-collection.h | 2 +- - src/libbiji/biji-note-book.c | 8 ++- + src/libbiji/biji-note-book.c | 8 ++++--- src/libbiji/biji-tracker.c | 2 +- 4 files changed, 124 insertions(+), 18 deletions(-) @@ -7344,7 +7382,7 @@ This was broken was amending the store rather than building from scratch. - src/bjb-controller.c | 125 ++++++++++++++++++++++++++++++++------------------- + src/bjb-controller.c | 125 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------- 1 file changed, 78 insertions(+), 47 deletions(-) commit a9bffcb7306f3a4a73bcd31fc074ebd9dba5fc2a @@ -7356,7 +7394,7 @@ Also fix 699654 configure.ac | 1 + - src/bjb-search-toolbar.c | 112 ++++++++++++++++++++--------------------------- + src/bjb-search-toolbar.c | 112 ++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------------ 2 files changed, 49 insertions(+), 64 deletions(-) commit 5b8b9f310ab27444156c4b0a43c5f08323890932 @@ -7365,7 +7403,7 @@ Updated Slovenian translation - po/sl.po | 181 +++++++++++++++++++++++++++++++++++++++++++++------------------ + po/sl.po | 181 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------- 1 file changed, 130 insertions(+), 51 deletions(-) commit c57220554abf25fb9accf8379bcab7a2e6334293 @@ -7525,7 +7563,7 @@ controller: Handle adding collections - src/bjb-controller.c | 55 +++++++++++++++++++--------------------------------- + src/bjb-controller.c | 55 ++++++++++++++++++++----------------------------------- 1 file changed, 20 insertions(+), 35 deletions(-) commit 981075ed334bf31c8ad64ba2a6a1f2431c0ad913 @@ -7538,10 +7576,10 @@ for the sake of note book. src/bjb-bijiben.c | 2 +- - src/bjb-note-tag-dialog.c | 10 +++- - src/libbiji/biji-note-book.c | 38 ++++++++++--- + src/bjb-note-tag-dialog.c | 10 +++++--- + src/libbiji/biji-note-book.c | 38 ++++++++++++++++++++++------- src/libbiji/biji-note-book.h | 2 +- - src/libbiji/biji-tracker.c | 133 ++++++++++++++++++++++++++++++++++++++----- + src/libbiji/biji-tracker.c | 133 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------ src/libbiji/biji-tracker.h | 2 +- 6 files changed, 157 insertions(+), 30 deletions(-) @@ -7551,7 +7589,7 @@ Updated Spanish translation - po/es.po | 134 ++++++++++++++++++++++++++++++++++++++++++++++----------------- + po/es.po | 134 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------- 1 file changed, 98 insertions(+), 36 deletions(-) commit bed58ca4a1254490c59e129062230b579683b05c @@ -7596,13 +7634,13 @@ Tracker always needs these urn and the book, too Collections are unique while title, not. - src/bjb-controller.c | 31 +++++++++++------------ - src/bjb-controller.h | 4 +-- - src/bjb-main-toolbar.c | 15 ++++++------ - src/bjb-main-view.c | 22 +++++++++-------- - src/libbiji/biji-collection.c | 50 +++++++++++++++++++++++++------------ + src/bjb-controller.c | 31 ++++++++++++++----------------- + src/bjb-controller.h | 4 ++-- + src/bjb-main-toolbar.c | 15 ++++++++------- + src/bjb-main-view.c | 22 ++++++++++++---------- + src/libbiji/biji-collection.c | 50 ++++++++++++++++++++++++++++++++++---------------- src/libbiji/biji-collection.h | 2 +- - src/libbiji/biji-note-book.c | 57 ++++++++++++++++++++++++++++--------------- + src/libbiji/biji-note-book.c | 57 +++++++++++++++++++++++++++++++++++++-------------------- 7 files changed, 108 insertions(+), 73 deletions(-) commit 294d9990cd527768a3748324aa6747aa7fdf2a66 @@ -7650,7 +7688,7 @@ Updated Brazilian Portuguese translation - po/pt_BR.po | 76 +++++++++++++++++++++++++++++++++++-------------------------- + po/pt_BR.po | 76 ++++++++++++++++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 44 insertions(+), 32 deletions(-) commit 8023ae40e8ee570f1badc0ca7732517f89c0ac28 @@ -7659,7 +7697,7 @@ update Punjabi Translation - po/pa.po | 99 +++++++++++++++++++++++++++++++++++++++++----------------------- + po/pa.po | 99 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------ 1 file changed, 63 insertions(+), 36 deletions(-) commit 382c5549352f8959efa6c6e976be130bac3f985d @@ -7674,7 +7712,7 @@ src/bjb-editor-toolbar.c | 2 +- src/bjb-main-toolbar.c | 2 +- src/bjb-main-view.c | 2 +- - src/libbiji/biji-note-book.c | 47 +++++++++++++------------------------------- + src/libbiji/biji-note-book.c | 47 ++++++++++++++--------------------------------- src/libbiji/biji-note-book.h | 7 +------ 5 files changed, 18 insertions(+), 42 deletions(-) @@ -7709,12 +7747,12 @@ mainview : clean up some code, window and window-controller have more control. main view is now rather a simple widget. - src/bjb-main-toolbar.c | 14 ++--- - src/bjb-main-view.c | 29 +---------- - src/bjb-main-view.h | 4 -- - src/bjb-search-toolbar.c | 12 +---- - src/bjb-window-base.c | 132 ++++++++++++++++++++++++++++++----------------- - src/bjb-window-base.h | 5 ++ + src/bjb-main-toolbar.c | 14 +++--------- + src/bjb-main-view.c | 29 ++---------------------- + src/bjb-main-view.h | 4 ---- + src/bjb-search-toolbar.c | 12 ++-------- + src/bjb-window-base.c | 132 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------- + src/bjb-window-base.h | 5 ++++ 6 files changed, 97 insertions(+), 99 deletions(-) commit ea606a6bd3b6c7054b5eea769d6949a3fd9284d3 @@ -7782,12 +7820,12 @@ The collection can be seen and user can simply go back - src/bjb-controller.c | 62 +++++++++++++++++++++++++++++++++- - src/bjb-controller.h | 4 +++ - src/bjb-main-toolbar.c | 84 +++++++++++++++++++++++++++++++++------------- - src/bjb-main-view.c | 8 ++++- - src/libbiji/biji-tracker.c | 70 +++++++++++++++++++++++++++++++++++++- - src/libbiji/biji-tracker.h | 8 +++++ + src/bjb-controller.c | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- + src/bjb-controller.h | 4 ++++ + src/bjb-main-toolbar.c | 84 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------ + src/bjb-main-view.c | 8 +++++++- + src/libbiji/biji-tracker.c | 70 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- + src/libbiji/biji-tracker.h | 8 ++++++++ 6 files changed, 209 insertions(+), 27 deletions(-) commit 68f6e61b7b50450427286794a3212ce5bb71858c @@ -7852,19 +7890,19 @@ the callbacks should work with both cases src/bjb-bijiben.c | 2 +- - src/bjb-main-toolbar.c | 4 +-- - src/bjb-main-view.c | 77 ++++++++++++++++++++++++------------------- - src/bjb-main-view.h | 8 ++--- - src/bjb-note-tag-dialog.c | 46 +++++++++++++------------- - src/bjb-selection-toolbar.c | 8 ++--- - src/libbiji/biji-collection.c | 24 +++++++++++--- - src/libbiji/biji-item.c | 12 +++++-- - src/libbiji/biji-item.h | 19 +++-------- - src/libbiji/biji-note-book.c | 17 ++++------ - src/libbiji/biji-note-book.h | 4 +-- - src/libbiji/biji-note-obj.c | 27 ++++++++------- - src/libbiji/biji-note-obj.h | 4 --- - src/libbiji/biji-tracker.c | 8 ++--- + src/bjb-main-toolbar.c | 4 ++-- + src/bjb-main-view.c | 77 +++++++++++++++++++++++++++++++++++++++++++---------------------------------- + src/bjb-main-view.h | 8 ++++---- + src/bjb-note-tag-dialog.c | 46 +++++++++++++++++++++++----------------------- + src/bjb-selection-toolbar.c | 8 ++++---- + src/libbiji/biji-collection.c | 24 ++++++++++++++++++++---- + src/libbiji/biji-item.c | 12 +++++++++--- + src/libbiji/biji-item.h | 19 +++++-------------- + src/libbiji/biji-note-book.c | 17 ++++++----------- + src/libbiji/biji-note-book.h | 4 ++-- + src/libbiji/biji-note-obj.c | 27 +++++++++++++++------------ + src/libbiji/biji-note-obj.h | 4 ---- + src/libbiji/biji-tracker.c | 8 ++++---- 14 files changed, 138 insertions(+), 122 deletions(-) commit f154ac73f581cc091c45f0412c80ee0941a28358 @@ -7876,15 +7914,15 @@ Collections are now created and returned per NoteBook. Visible on retrieve, but cannot be activated - src/bjb-controller.c | 26 +++- + src/bjb-controller.c | 26 +++++++-- src/libbiji/Makefile.am | 2 + - src/libbiji/biji-collection.c | 291 ++++++++++++++++++++++++++++++++++++++++++ - src/libbiji/biji-collection.h | 59 +++++++++ - src/libbiji/biji-item.c | 13 +- - src/libbiji/biji-item.h | 30 ++++- - src/libbiji/biji-note-book.c | 68 ++++++---- + src/libbiji/biji-collection.c | 291 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/biji-collection.h | 59 +++++++++++++++++++++ + src/libbiji/biji-item.c | 13 +++-- + src/libbiji/biji-item.h | 30 +++++++++-- + src/libbiji/biji-note-book.c | 68 ++++++++++++++++-------- src/libbiji/biji-note-book.h | 2 - - src/libbiji/biji-note-obj.c | 40 +++--- + src/libbiji/biji-note-obj.c | 40 +++++++------- src/libbiji/libbiji.h | 3 +- 10 files changed, 474 insertions(+), 60 deletions(-) @@ -7894,7 +7932,7 @@ Updated Brazilian Portuguese translation - po/pt_BR.po | 92 ++++++++++++++++++++++++++++++++++++------------------------- + po/pt_BR.po | 92 ++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------- 1 file changed, 54 insertions(+), 38 deletions(-) commit 70aa5040086110d54de9cfcae591d94cd35d5d01 @@ -7906,7 +7944,7 @@ Currently, every item is a note. But controller will need at some point to carefully check type. - src/bjb-controller.c | 116 +++++++++++++++++++++++-------------------------- + src/bjb-controller.c | 116 +++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------------------------- src/bjb-controller.h | 2 +- src/bjb-main-toolbar.c | 2 +- 3 files changed, 57 insertions(+), 63 deletions(-) @@ -7920,20 +7958,20 @@ Title, Uuid, Icon, Emblem, Mtime, are provided via parent bijiItem rather directly. - src/bjb-bijiben.c | 4 +- - src/bjb-controller.c | 79 ++++++++++++----------- - src/bjb-main-toolbar.c | 12 ++-- + src/bjb-bijiben.c | 4 ++-- + src/bjb-controller.c | 79 +++++++++++++++++++++++++++++++++++++++++++------------------------------------ + src/bjb-main-toolbar.c | 12 ++++++++---- src/bjb-share.c | 2 +- - src/libbiji/biji-item.c | 34 ++++++++-- - src/libbiji/biji-item.h | 26 +++++++- - src/libbiji/biji-note-book.c | 11 ++-- - src/libbiji/biji-note-book.h | 6 +- - src/libbiji/biji-note-obj.c | 53 ++++++++++----- - src/libbiji/biji-note-obj.h | 12 ---- - src/libbiji/biji-tracker.c | 9 +-- - src/libbiji/biji-zeitgeist.c | 6 +- - src/libbiji/deserializer/biji-lazy-deserializer.c | 4 +- - src/libbiji/serializer/biji-lazy-serializer.c | 9 ++- + src/libbiji/biji-item.c | 34 ++++++++++++++++++++++++++++++---- + src/libbiji/biji-item.h | 26 +++++++++++++++++++++++--- + src/libbiji/biji-note-book.c | 11 ++++++----- + src/libbiji/biji-note-book.h | 6 +++--- + src/libbiji/biji-note-obj.c | 53 ++++++++++++++++++++++++++++++++++++++--------------- + src/libbiji/biji-note-obj.h | 12 ------------ + src/libbiji/biji-tracker.c | 9 +++++---- + src/libbiji/biji-zeitgeist.c | 6 +++--- + src/libbiji/deserializer/biji-lazy-deserializer.c | 4 ++-- + src/libbiji/serializer/biji-lazy-serializer.c | 9 ++++++--- 14 files changed, 170 insertions(+), 97 deletions(-) commit 69904b8e22cb7c0d9b1b74fc582d3eeaf03aea5b @@ -7946,10 +7984,10 @@ Item will be able to allow generic getters src/libbiji/Makefile.am | 2 ++ - src/libbiji/biji-item.c | 69 +++++++++++++++++++++++++++++++++++++++++++++ - src/libbiji/biji-item.h | 59 ++++++++++++++++++++++++++++++++++++++ + src/libbiji/biji-item.c | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/biji-item.h | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/libbiji/biji-note-obj.c | 2 +- - src/libbiji/biji-note-obj.h | 6 ++-- + src/libbiji/biji-note-obj.h | 6 ++++-- src/libbiji/libbiji.h | 1 + 6 files changed, 136 insertions(+), 3 deletions(-) @@ -7990,7 +8028,7 @@ Updated Czech translation - po/cs.po | 91 +++++++++++++++++++++++++++++++++++++--------------------------- + po/cs.po | 91 +++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------- 1 file changed, 53 insertions(+), 38 deletions(-) commit 227b56f001085871ed7c5da3b5751c5b57e5ba9e @@ -7999,7 +8037,7 @@ Updated Spanish translation - po/es.po | 91 +++++++++++++++++++++++++++++++++++++--------------------------- + po/es.po | 91 +++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------- 1 file changed, 53 insertions(+), 38 deletions(-) commit eeb03809d1b409f3e8bff162ea31c91b71836844 @@ -8026,8 +8064,8 @@ the user might have no note, but we can also inform about no result - src/bjb-empty-results-box.c | 53 +++++++++++++++++++++++++++++++++++++-------- - src/bjb-empty-results-box.h | 9 ++++++++ + src/bjb-empty-results-box.c | 53 ++++++++++++++++++++++++++++++++++++++++++++--------- + src/bjb-empty-results-box.h | 9 +++++++++ 2 files changed, 53 insertions(+), 9 deletions(-) commit 06523e97b0c91428c833b96089df398baf36e888 @@ -8071,10 +8109,10 @@ The controller has to work with the BjbWindowBase - src/bjb-controller.c | 78 +++++++++++++++++++++++++++------------------------ - src/bjb-controller.h | 13 ++++----- - src/bjb-main-view.c | 7 ++--- - src/bjb-window-base.c | 3 +- + src/bjb-controller.c | 78 ++++++++++++++++++++++++++++++++++++++++++------------------------------------ + src/bjb-controller.h | 13 ++++++------- + src/bjb-main-view.c | 7 +++---- + src/bjb-window-base.c | 3 ++- src/bjb-window-base.h | 1 - 5 files changed, 53 insertions(+), 49 deletions(-) @@ -8107,13 +8145,13 @@ src/bjb-app-menu.c | 2 +- src/bjb-bijiben.c | 2 +- - src/bjb-main-toolbar.c | 490 +++++++++++++++++++++++++++++++++++++++---------- - src/bjb-main-toolbar.h | 10 +- - src/bjb-main-view.c | 102 ++++++++-- - src/bjb-main-view.h | 13 ++ - src/bjb-note-view.c | 298 +----------------------------- - src/bjb-window-base.c | 81 +++++--- - src/bjb-window-base.h | 10 +- + src/bjb-main-toolbar.c | 490 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------- + src/bjb-main-toolbar.h | 10 +-- + src/bjb-main-view.c | 102 ++++++++++++++++++++--- + src/bjb-main-view.h | 13 +++ + src/bjb-note-view.c | 298 ++---------------------------------------------------------------- + src/bjb-window-base.c | 81 ++++++++++++------ + src/bjb-window-base.h | 10 +-- 9 files changed, 568 insertions(+), 440 deletions(-) commit f93eac8813587bd26563c725b2bf3639a5b75fda @@ -8125,10 +8163,10 @@ the box shows no note exists. It migth be improved to also handle the case of search. Or a different box might be used. - data/icons/hicolor_actions_scalable_note.svg | 132 +++++++------------------- - src/Makefile.am | 2 + - src/bjb-empty-results-box.c | 136 +++++++++++++++++++++++++++ - src/bjb-empty-results-box.h | 76 +++++++++++++++ + data/icons/hicolor_actions_scalable_note.svg | 132 ++++++++++++++++++++++------------------------------------------------------------- + src/Makefile.am | 2 ++ + src/bjb-empty-results-box.c | 136 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/bjb-empty-results-box.h | 76 ++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 249 insertions(+), 97 deletions(-) commit 65bb2b53f4aeb1450945a269977af023d8f98117 @@ -8150,11 +8188,11 @@ See #698245 : make search feature visible. - src/bjb-main-toolbar.c | 60 ++++++++++++++++++++++++++++++++++++++++++++---- + src/bjb-main-toolbar.c | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++---- src/bjb-main-toolbar.h | 2 ++ - src/bjb-main-view.c | 16 +++++++++++++ - src/bjb-main-view.h | 5 ++++ - src/bjb-search-toolbar.c | 40 +++++++++++++++++++++++++++++++- + src/bjb-main-view.c | 16 ++++++++++++++++ + src/bjb-main-view.h | 5 +++++ + src/bjb-search-toolbar.c | 40 +++++++++++++++++++++++++++++++++++++++- src/bjb-search-toolbar.h | 4 ++++ 6 files changed, 122 insertions(+), 5 deletions(-) @@ -8164,7 +8202,7 @@ Update Simplified Chinese translation - po/zh_CN.po | 87 +++++++++++++++++++++++++++++++++++++++++-------------------- + po/zh_CN.po | 87 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 59 insertions(+), 28 deletions(-) commit 3eaa64f396ead1803397a840cffeb5f5fd160470 @@ -8275,9 +8313,9 @@ and might be useful for later on src/bjb-controller.c | 2 +- - src/libbiji/biji-note-obj.c | 66 ++++++++++++++++++++++++++++++++++++++++---- + src/libbiji/biji-note-obj.c | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----- src/libbiji/biji-note-obj.h | 2 ++ - src/utils/bjb-icons-colors.c | 42 ---------------------------- + src/utils/bjb-icons-colors.c | 42 ------------------------------------------ src/utils/bjb-icons-colors.h | 2 -- 5 files changed, 64 insertions(+), 50 deletions(-) @@ -8311,7 +8349,7 @@ Added Greek translation po/LINGUAS | 1 + - po/el.po | 241 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/el.po | 241 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 242 insertions(+) commit 5b05b29816376f606bacb95d21d5528e02a72c57 @@ -8321,7 +8359,7 @@ Added slovak translation po/LINGUAS | 1 + - po/sk.po | 258 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/sk.po | 258 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 259 insertions(+) commit 37242254ee6c07358188e7c2e6814360075614d7 @@ -8339,7 +8377,7 @@ Finnish translation update by Jiri Grönroos - po/fi.po | 239 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/fi.po | 239 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 239 insertions(+) commit 6d0a8fec2a6c2c2e60b9e824b3440c478353a1cc @@ -8349,7 +8387,7 @@ Adding Punjabi Translation and update LINGUAS file po/LINGUAS | 1 + - po/pa.po | 240 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/pa.po | 240 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 241 insertions(+) commit c1b15b8b1b8c0617f40b07c99b88ab97bd7fde44 @@ -8367,7 +8405,7 @@ Initial Hungarian translation - po/hu.po | 242 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/hu.po | 242 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 242 insertions(+) commit 8170e062fad4a869733eb684950a49aed28d4fe4 @@ -8376,9 +8414,9 @@ Updated Traditional Chinese translation(Hong Kong and Taiwan) - po/LINGUAS | 2 + - po/zh_HK.po | 236 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - po/zh_TW.po | 236 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/LINGUAS | 2 ++ + po/zh_HK.po | 236 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/zh_TW.po | 236 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 474 insertions(+) commit b3ff28992942ab2b1ecd6c85311fc03d24b1e108 @@ -8577,7 +8615,7 @@ Updated Danish translation - po/da.po | 240 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/da.po | 240 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 240 insertions(+) commit f094b9270b30a1e14db7c934281bd05c279a35c7 @@ -8597,7 +8635,7 @@ This code will not be used and this removes a warning when compiling - src/libbiji/editor/biji-editor-selection.c | 108 ----------------------------- + src/libbiji/editor/biji-editor-selection.c | 108 ---------------------------------------------------------------------------------------- 1 file changed, 108 deletions(-) commit a2c836cc14cb85c20c02e53b489f6912e7060274 @@ -8629,7 +8667,7 @@ l10n: Added Italian translation po/LINGUAS | 1 + - po/it.po | 236 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/it.po | 236 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 237 insertions(+) commit 4360e1dbea9722c407a510106a702e141d4a669c @@ -8643,19 +8681,19 @@ GtkClutter is still used for note view configure.ac | 1 + - src/bjb-bijiben.c | 24 ++++---- - src/bjb-main-toolbar.c | 66 ++++++++------------ - src/bjb-main-toolbar.h | 7 +-- - src/bjb-main-view.c | 105 +++++++------------------------ - src/bjb-main-view.h | 7 +-- - src/bjb-note-view.c | 71 ++++++++++----------- - src/bjb-note-view.h | 8 +-- - src/bjb-search-toolbar.c | 106 +++++++++++--------------------- - src/bjb-search-toolbar.h | 12 ++-- - src/bjb-selection-toolbar.c | 117 ++++++----------------------------- - src/bjb-selection-toolbar.h | 10 ++- - src/bjb-window-base.c | 146 ++++++++++++++++++++------------------------ - src/bjb-window-base.h | 19 ++---- + src/bjb-bijiben.c | 24 ++++++++--------- + src/bjb-main-toolbar.c | 66 ++++++++++++++++++----------------------------- + src/bjb-main-toolbar.h | 7 ++--- + src/bjb-main-view.c | 105 +++++++++++++++++--------------------------------------------------------- + src/bjb-main-view.h | 7 ++--- + src/bjb-note-view.c | 71 ++++++++++++++++++++++++++------------------------ + src/bjb-note-view.h | 8 +++--- + src/bjb-search-toolbar.c | 106 ++++++++++++++++++++++++++------------------------------------------------- + src/bjb-search-toolbar.h | 12 ++++----- + src/bjb-selection-toolbar.c | 117 ++++++++++++++-------------------------------------------------------------------- + src/bjb-selection-toolbar.h | 10 +++---- + src/bjb-window-base.c | 146 ++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------------------------- + src/bjb-window-base.h | 19 ++++---------- 14 files changed, 242 insertions(+), 457 deletions(-) commit 4abaac3440d4c21ac564bf0bd2868bc0d2fae676 @@ -8749,11 +8787,11 @@ Only rebuild the whole tree if mass change .gitignore | 2 ++ - src/bjb-controller.c | 46 +++++++++++++++++++++++++--------------- + src/bjb-controller.c | 46 +++++++++++++++++++++++++++++----------------- src/bjb-main-view.c | 1 - src/bjb-window-base.c | 1 - src/libbiji/biji-marshalers.list | 2 +- - src/libbiji/biji-note-book.c | 45 +++++++++++++++++++-------------------- + src/libbiji/biji-note-book.c | 45 ++++++++++++++++++++++----------------------- src/libbiji/biji-note-book.h | 5 +++-- src/libbiji/biji-note-obj.c | 2 -- 8 files changed, 57 insertions(+), 47 deletions(-) @@ -8778,16 +8816,16 @@ Marshallers list is easier to build with libbiji on its own Makefile. - src/Makefile.am | 34 +----- + src/Makefile.am | 34 +---------------- src/bjb-bijiben.c | 2 +- - src/bjb-controller.c | 182 ++++++++++++++++++++++++++++---- + src/bjb-controller.c | 182 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------ src/bjb-controller.h | 2 + - src/bjb-main-view.h | 4 + - src/libbiji/Makefile.am | 73 +++++++++++++ + src/bjb-main-view.h | 4 ++ + src/libbiji/Makefile.am | 73 +++++++++++++++++++++++++++++++++++++ src/libbiji/biji-date-time.c | 2 +- src/libbiji/biji-marshalers.list | 1 + - src/libbiji/biji-note-book.c | 47 +++++---- - src/libbiji/biji-note-book.h | 14 ++- + src/libbiji/biji-note-book.c | 47 +++++++++++++++--------- + src/libbiji/biji-note-book.h | 14 ++++++- src/libbiji/biji-tracker.h | 2 +- src/libbiji/biji-zeitgeist.c | 2 +- src/libbiji/editor/biji-webkit-editor.c | 1 + @@ -8853,7 +8891,7 @@ Updated Brazilian Portuguese translation - po/pt_BR.po | 70 ++++++++++++++++++++++++++++++++++++++++++------------------- + po/pt_BR.po | 70 +++++++++++++++++++++++++++++++++++++++++++++++++--------------------- 1 file changed, 49 insertions(+), 21 deletions(-) commit d4f28f3275c2b057c903c1810c3c7acf90057214 @@ -8872,9 +8910,9 @@ Fix leaks on path, color and dates strings - src/bjb-main-view.c | 11 +++++---- - src/libbiji/biji-tracker.c | 19 ++++++++++----- - src/libbiji/serializer/biji-lazy-serializer.c | 35 +++++++++++++++++---------- + src/bjb-main-view.c | 11 ++++++----- + src/libbiji/biji-tracker.c | 19 +++++++++++++------ + src/libbiji/serializer/biji-lazy-serializer.c | 35 ++++++++++++++++++++++------------- 3 files changed, 41 insertions(+), 24 deletions(-) commit 5c352ae5b5b8e0c787b7e291001e603ea543bde5 @@ -8926,13 +8964,13 @@ Use a GtkNotebook to store the main view rather than destroying the main view. - src/bjb-main-view.c | 56 +++++++++++++++++++++++++---------- + src/bjb-main-view.c | 56 ++++++++++++++++++++++++++++++++++++++++---------------- src/bjb-main-view.h | 2 ++ - src/bjb-note-view.c | 20 ++++--------- - src/bjb-search-toolbar.c | 76 ++++++++++++++++++++++++++++++++---------------- - src/bjb-search-toolbar.h | 4 +++ - src/bjb-window-base.c | 67 +++++++++++++++++++++++++++--------------- - src/bjb-window-base.h | 20 ++++++------- + src/bjb-note-view.c | 20 ++++++-------------- + src/bjb-search-toolbar.c | 76 +++++++++++++++++++++++++++++++++++++++++++++++++++------------------------- + src/bjb-search-toolbar.h | 4 ++++ + src/bjb-window-base.c | 67 +++++++++++++++++++++++++++++++++++++++++++------------------------ + src/bjb-window-base.h | 20 +++++++++----------- 7 files changed, 155 insertions(+), 90 deletions(-) commit 59312f9dd4fdea0c0fa69582335c22bca36f41fa @@ -8950,12 +8988,12 @@ Tracker: use DataContainer rather than tags - src/bjb-controller.c | 22 ++--- - src/bjb-note-tag-dialog.c | 80 +++++++++++------- - src/libbiji/biji-note-obj.c | 14 ++-- - src/libbiji/biji-note-obj.h | 8 +- - src/libbiji/biji-tracker.c | 99 ++++++++++++----------- - src/libbiji/biji-tracker.h | 29 ++++--- + src/bjb-controller.c | 22 +++++++++---------- + src/bjb-note-tag-dialog.c | 80 +++++++++++++++++++++++++++++++++++++++++++----------------------- + src/libbiji/biji-note-obj.c | 14 ++++++------ + src/libbiji/biji-note-obj.h | 8 +++---- + src/libbiji/biji-tracker.c | 99 ++++++++++++++++++++++++++++++++++++++++++++-------------------------------------- + src/libbiji/biji-tracker.h | 29 +++++++++++++++--------- src/libbiji/deserializer/biji-lazy-deserializer.c | 2 +- src/libbiji/serializer/biji-lazy-serializer.c | 2 +- 8 files changed, 148 insertions(+), 108 deletions(-) @@ -8989,11 +9027,11 @@ https://bugzilla.gnome.org/show_bug.cgi?id=692791 https://bugzilla.gnome.org/show_bug.cgi?id=692790 - src/bjb-note-tag-dialog.c | 118 +++++++++++++++++++--- - src/libbiji/biji-note-obj.c | 6 +- - src/libbiji/biji-tracker.c | 67 +++++++++--- - src/libbiji/biji-tracker.h | 6 +- - src/libbiji/deserializer/biji-lazy-deserializer.c | 3 +- + src/bjb-note-tag-dialog.c | 118 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------- + src/libbiji/biji-note-obj.c | 6 +++-- + src/libbiji/biji-tracker.c | 67 +++++++++++++++++++++++++++++++++++++--------- + src/libbiji/biji-tracker.h | 6 ++++- + src/libbiji/deserializer/biji-lazy-deserializer.c | 3 ++- 5 files changed, 170 insertions(+), 30 deletions(-) commit 97bfcec7ea24446cc5e81ab91372e3f1881c9f70 @@ -9011,7 +9049,7 @@ Updated Slovenian translation - po/sl.po | 103 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++------ + po/sl.po | 103 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 94 insertions(+), 9 deletions(-) commit de90f2f0e2057071e61d420b1e1b0c851a07c22f @@ -9062,7 +9100,7 @@ Czech translation - po/cs.po | 210 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/cs.po | 210 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 210 insertions(+) commit bebce56c931ec111a041d8186aa75ee115ace6b1 @@ -9083,7 +9121,7 @@ Control a selects all notes when selection mode Escape cancels the selection mode (and still allows to escape the search bar) - src/bjb-main-view.c | 49 ++++++++++++++++++++++++++++++++++++++++++------ + src/bjb-main-view.c | 49 +++++++++++++++++++++++++++++++++++++++++++------ src/bjb-search-toolbar.c | 18 ++++++++---------- 2 files changed, 51 insertions(+), 16 deletions(-) @@ -9093,7 +9131,7 @@ Fix small leaks on main view notes selection - src/bjb-main-view.c | 67 +++++++++++++++++++++-------------------------------- + src/bjb-main-view.c | 67 +++++++++++++++++++++++++++---------------------------------------- 1 file changed, 27 insertions(+), 40 deletions(-) commit 03fecea0d31fd9a6f6a5a934ea6619055e1f9b02 @@ -9142,7 +9180,7 @@ Updated Brazilian Portuguese translation - po/pt_BR.po | 64 +++++++++++++++++++++++++++++++++++++++++++++++-------------- + po/pt_BR.po | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 50 insertions(+), 14 deletions(-) commit 36b778d036b7b349162a97c81ea2c14ae54697bd @@ -9189,7 +9227,7 @@ Add Simplified Chinese translation po/LINGUAS | 1 + - po/zh_CN.po | 207 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/zh_CN.po | 207 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 208 insertions(+) commit af0e9e00aa3c0e9aa2e9ad47d7516533af4fe82d @@ -9217,8 +9255,8 @@ Updated Serbian translation - po/sr.po | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++------ - po/sr@latin.po | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++------ + po/sr.po | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------ + po/sr@latin.po | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------ 2 files changed, 120 insertions(+), 12 deletions(-) commit 788c261a6796dbaacf092e5ab32256716109c942 @@ -9248,10 +9286,10 @@ https://bugzilla.gnome.org/show_bug.cgi?id=690860 - src/libbiji/biji-note-book.c | 14 +- - src/libbiji/deserializer/biji-lazy-deserializer.c | 210 ++++++---------------- - src/libbiji/editor/biji-webkit-editor.c | 29 ++- - src/libbiji/serializer/biji-lazy-serializer.c | 172 +----------------- + src/libbiji/biji-note-book.c | 14 +++++- + src/libbiji/deserializer/biji-lazy-deserializer.c | 210 +++++++++++++++++++++------------------------------------------------------------ + src/libbiji/editor/biji-webkit-editor.c | 29 +++++------- + src/libbiji/serializer/biji-lazy-serializer.c | 172 +----------------------------------------------------------------- 4 files changed, 81 insertions(+), 344 deletions(-) commit 71fac7f34c5c122c04a8bc53a6068636608c7986 @@ -9271,8 +9309,8 @@ configure.ac | 2 +- data/bijiben-search-provider.ini | 2 +- - data/shell-search-provider-dbus-interfaces.xml | 113 ++++++++---- - src/bijiben-shell-search-provider.c | 240 ++++++++++--------------- + data/shell-search-provider-dbus-interfaces.xml | 113 ++++++++++++++++++++++++++++------------ + src/bijiben-shell-search-provider.c | 240 +++++++++++++++++++++++++++++++++++------------------------------------------------- 4 files changed, 181 insertions(+), 176 deletions(-) commit 0b6c79034ffe0c61ad3235af338b5ecf625570b5 @@ -9384,7 +9422,7 @@ [l10n] Added Catalan translation po/LINGUAS | 1 + - po/ca.po | 181 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/ca.po | 181 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 182 insertions(+) commit 279fbfbe38aee5aac5a7a0f4fd9ea4e80e7686d0 @@ -9402,7 +9440,7 @@ Added Brazilian Portuguese Translation - po/pt_BR.po | 176 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/pt_BR.po | 176 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 176 insertions(+) commit ebdfdd46399b559d45ea8cfb01c58d305f63f382 @@ -9429,7 +9467,7 @@ fr.po Update fr translation - po/fr.po | 114 ++++++++++++++++++++++++++++++++++++++++++++++++++++----------- + po/fr.po | 114 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------- 1 file changed, 95 insertions(+), 19 deletions(-) commit 832dd76965b72338e0b0973b517868084e09c184 @@ -9525,7 +9563,7 @@ Also fix title and close button. See https://bugzilla.gnome.org/show_bug.cgi?id=690211 - src/bjb-settings.c | 87 ++++++++++++++++++++++++++++++++---------------------- + src/bjb-settings.c | 87 ++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------- 1 file changed, 52 insertions(+), 35 deletions(-) commit e8e54d039707ce04c44344e96783b9cb6aab735c @@ -9556,7 +9594,7 @@ And use asyc func - src/bjb-bijiben.c | 68 ++++++++++++++++++++++++++++++++++--------------------- + src/bjb-bijiben.c | 68 ++++++++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 42 insertions(+), 26 deletions(-) commit 28865af8246b64fe608717ce53dced3af7ff64e6 @@ -9578,7 +9616,7 @@ This is just some UI fix. - src/bjb-app-menu.c | 178 ++++++++++++++++++++++++++++++++++++++++++++++------- + src/bjb-app-menu.c | 178 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------- 1 file changed, 155 insertions(+), 23 deletions(-) commit a58e22f82d9804ed619249a41753d4dacd07f9c3 @@ -9589,10 +9627,10 @@ First load notes then serialize. Use children_enumerate_async, check for template, fix color - src/bjb-bijiben.c | 177 +++++++++++++++++++++++++------------------ - src/libbiji/biji-note-book.c | 34 +++++---- - src/libbiji/biji-note-book.h | 4 +- - src/libbiji/biji-note-obj.h | 2 + + src/bjb-bijiben.c | 177 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------ + src/libbiji/biji-note-book.c | 34 ++++++++++---------- + src/libbiji/biji-note-book.h | 4 ++- + src/libbiji/biji-note-obj.h | 2 ++ 4 files changed, 127 insertions(+), 90 deletions(-) commit f8b2d276109db9681bdb5d1d980bdfc846fb1fb7 @@ -9603,9 +9641,9 @@ Evolution of this part is unclear but this changes simplify things - src/bjb-note-tag-dialog.c | 8 +- - src/libbiji/biji-note-obj.c | 149 +++++++--------------- - src/libbiji/biji-note-obj.h | 35 ++--- + src/bjb-note-tag-dialog.c | 8 ++--- + src/libbiji/biji-note-obj.c | 149 +++++++++++++++++++++++++++------------------------------------------------------ + src/libbiji/biji-note-obj.h | 35 ++++++------------- src/libbiji/deserializer/biji-lazy-deserializer.c | 3 +- src/libbiji/serializer/biji-lazy-serializer.c | 2 +- 5 files changed, 66 insertions(+), 131 deletions(-) @@ -9630,13 +9668,13 @@ Tracker is now properly handled by libiji for Main View - src/bjb-controller.c | 55 +++++---------- - src/bjb-note-tag-dialog.c | 22 +----- - src/libbiji/biji-note-book.c | 156 ------------------------------------------- - src/libbiji/biji-note-book.h | 8 +-- - src/libbiji/biji-note-obj.c | 40 ++++++----- - src/libbiji/biji-tracker.c | 54 +++++++++++++++ - src/libbiji/biji-tracker.h | 4 ++ + src/bjb-controller.c | 55 ++++++++++++------------------------ + src/bjb-note-tag-dialog.c | 22 ++------------- + src/libbiji/biji-note-book.c | 156 ------------------------------------------------------------------------------------------------------ + src/libbiji/biji-note-book.h | 8 +----- + src/libbiji/biji-note-obj.c | 40 +++++++++++++------------- + src/libbiji/biji-tracker.c | 54 +++++++++++++++++++++++++++++++++++ + src/libbiji/biji-tracker.h | 4 +++ 7 files changed, 98 insertions(+), 241 deletions(-) commit a449467bf75e32acd3878a9197bd9d0a2cfb14c0 @@ -9645,8 +9683,8 @@ noteBook: remove duplicates - src/libbiji/biji-note-book.c | 72 ++++++++++++-------------------------------- - src/libbiji/biji-note-book.h | 24 +++------------ + src/libbiji/biji-note-book.c | 72 ++++++++++++++++++++---------------------------------------------------- + src/libbiji/biji-note-book.h | 24 +++++------------------- 2 files changed, 25 insertions(+), 71 deletions(-) commit d14a1539a455a0a84bf7f943bb85e162c9168e24 @@ -9655,8 +9693,8 @@ noteBook: remove unused func - src/libbiji/biji-note-book.c | 52 ++++---------------------------------------- - src/libbiji/biji-note-book.h | 42 ++++++++++++----------------------- + src/libbiji/biji-note-book.c | 52 ++++------------------------------------------------ + src/libbiji/biji-note-book.h | 42 ++++++++++++++---------------------------- 2 files changed, 18 insertions(+), 76 deletions(-) commit 14b489a772608ecb7c31007289ab3be7362e25f9 @@ -9696,9 +9734,9 @@ Added Serbian translation - po/LINGUAS | 2 + - po/sr.po | 154 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - po/sr@latin.po | 154 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/LINGUAS | 2 ++ + po/sr.po | 154 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/sr@latin.po | 154 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 310 insertions(+) commit e142011814f9165874cb9181b972b001e05832e6 @@ -9709,11 +9747,11 @@ It's now up to the note creator to make title unique, previous notes are not checked. But renaming note performs the check. - src/bjb-bijiben.c | 5 +- - src/libbiji/biji-note-book.c | 88 +++++++++++++++++---------------- - src/libbiji/biji-note-book.h | 3 +- - src/libbiji/biji-note-obj.c | 37 ++++++++++---- - src/libbiji/editor/biji-webkit-editor.c | 19 ++++--- + src/bjb-bijiben.c | 5 ++++- + src/libbiji/biji-note-book.c | 88 ++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------ + src/libbiji/biji-note-book.h | 3 ++- + src/libbiji/biji-note-obj.c | 37 ++++++++++++++++++++++++++++--------- + src/libbiji/editor/biji-webkit-editor.c | 19 ++++++++++++------- 5 files changed, 92 insertions(+), 60 deletions(-) commit a2a1f621c93fb3df59f9943fc4538f5896ccb946 @@ -9724,11 +9762,11 @@ The notebook creates the cache dir. When note is deleted, icon file is deleted (not trashed). - src/libbiji/biji-note-book.c | 10 ++++++++ - src/libbiji/biji-note-obj.c | 30 ++++++++++++++++++++--- + src/libbiji/biji-note-book.c | 10 ++++++++++ + src/libbiji/biji-note-obj.c | 30 ++++++++++++++++++++++++++---- src/libbiji/biji-note-obj.h | 2 +- - src/libbiji/deserializer/biji-lazy-deserializer.c | 15 +++--------- - src/libbiji/serializer/biji-lazy-serializer.c | 24 +++--------------- + src/libbiji/deserializer/biji-lazy-deserializer.c | 15 +++------------ + src/libbiji/serializer/biji-lazy-serializer.c | 24 +++--------------------- 5 files changed, 43 insertions(+), 38 deletions(-) commit 5a42310e1269a513c0c98bb2c3e3ddd827f31192 @@ -9749,11 +9787,11 @@ XDG cache dir is used, data lost would just slow down. - src/libbiji/biji-note-obj.c | 23 +++++++++++++++ + src/libbiji/biji-note-obj.c | 23 +++++++++++++++++++++++ src/libbiji/biji-note-obj.h | 2 ++ - src/libbiji/deserializer/biji-lazy-deserializer.c | 29 ++++++++++++++++++ + src/libbiji/deserializer/biji-lazy-deserializer.c | 29 +++++++++++++++++++++++++++++ src/libbiji/editor/biji-webkit-editor.c | 1 + - src/libbiji/serializer/biji-lazy-serializer.c | 36 +++++++++++++++++++++++ + src/libbiji/serializer/biji-lazy-serializer.c | 36 ++++++++++++++++++++++++++++++++++++ 5 files changed, 91 insertions(+) commit 6fcbcfcf8c3fc3c1919b199a8af6e566745309dd @@ -9771,7 +9809,7 @@ Added Slovenian translation - po/sl.po | 157 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/sl.po | 157 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 157 insertions(+) commit 95facc801097df57e7a10426849fa2b7042c64cc @@ -9790,7 +9828,7 @@ Updated Spanish translation po/LINGUAS | 1 + - po/es.po | 155 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/es.po | 155 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 156 insertions(+) commit 156e6e9e0f71fcc4805cdc626c376df35a90d31a @@ -9846,7 +9884,7 @@ Added Polish translation po/LINGUAS | 1 + - po/pl.po | 158 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/pl.po | 158 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 159 insertions(+) commit 3fc96d0345cbd8e591b24c2353650c18317def73 @@ -9870,9 +9908,9 @@ This commit still relies on standard gtk color chooser dialog See https://bugzilla.gnome.org/show_bug.cgi?id=689143 - src/Makefile.am | 2 + - src/bjb-color-button.c | 177 ++++++++++++++++++++++++++++++++++++++++++++ - src/bjb-color-button.h | 54 ++++++++++++++ + src/Makefile.am | 2 ++ + src/bjb-color-button.c | 177 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/bjb-color-button.h | 54 ++++++++++++++++++++++++++++++++ src/bjb-note-view.c | 3 +- src/bjb-selection-toolbar.c | 3 +- 5 files changed, 237 insertions(+), 2 deletions(-) @@ -10012,7 +10050,7 @@ Tag removal is still to be fixed src/bjb-note-tag-dialog.c | 2 +- - src/libbiji/biji-tracker.c | 68 ++++++++++++++++++---------------------------- + src/libbiji/biji-tracker.c | 68 ++++++++++++++++++++++++++------------------------------------------ src/libbiji/biji-tracker.h | 2 +- 3 files changed, 28 insertions(+), 44 deletions(-) @@ -10046,9 +10084,9 @@ Do not try to do anything with a note that does not exist anymore - src/libbiji/biji-note-id.c | 8 ++++ - src/libbiji/biji-note-obj.c | 89 +++++++++++++++++++++++++++------------------ - src/libbiji/biji-tracker.c | 9 +++-- + src/libbiji/biji-note-id.c | 8 ++++++++ + src/libbiji/biji-note-obj.c | 89 +++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------ + src/libbiji/biji-tracker.c | 9 ++++++--- 3 files changed, 67 insertions(+), 39 deletions(-) commit 90166245fefd24ff6b8af7754896cacc11dc1552 @@ -10178,7 +10216,7 @@ Added French translation po/LINGUAS | 1 + - po/fr.po | 99 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/fr.po | 99 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 100 insertions(+) commit f7f8cb4ff438ef7a8cee5eed07d6f34b4a2dd61f @@ -10207,7 +10245,7 @@ Added Galician translations po/LINGUAS | 1 + - po/gl.po | 79 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/gl.po | 79 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 80 insertions(+) commit ffb997b959afd91771271174e9130402c15dc392 @@ -10235,7 +10273,7 @@ src/bjb-main-toolbar.c | 10 +--------- src/libbiji/biji-note-book.c | 4 +++- - src/libbiji/biji-note-obj.c | 34 +++++++++++++++++++++++++++++++++ + src/libbiji/biji-note-obj.c | 34 ++++++++++++++++++++++++++++++++++ src/libbiji/biji-note-obj.h | 4 ++++ src/libbiji/editor/biji-webkit-editor.c | 15 +++++++++++++++ 5 files changed, 57 insertions(+), 10 deletions(-) @@ -10255,12 +10293,12 @@ Import Notes: move to an initial UI (external data app menu item) - src/bjb-app-menu.c | 57 ++++++++++++++++++++++++++++++++++++++ - src/bjb-bijiben.c | 67 ++++++++++++++++++++++++++++++++++++--------- - src/bjb-bijiben.h | 5 ++-- - src/bjb-settings.c | 6 ++-- + src/bjb-app-menu.c | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/bjb-bijiben.c | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++++++------------- + src/bjb-bijiben.h | 5 +++-- + src/bjb-settings.c | 6 ++---- src/libbiji/biji-note-obj.c | 2 +- - src/resources/app-menu.ui | 4 +++ + src/resources/app-menu.ui | 4 ++++ 6 files changed, 121 insertions(+), 20 deletions(-) commit 1c62da2b53d560aa71e65bea5447d8da5d77bc13 @@ -10334,11 +10372,11 @@ Settings: dialog with font and color - src/bjb-app-menu.c | 45 +++++++++---- - src/bjb-note-view.c | 9 ++- - src/bjb-settings.c | 159 ++++++++++++++++++++++++++-------------------- - src/bjb-settings.h | 9 +-- - src/resources/app-menu.ui | 16 ++--- + src/bjb-app-menu.c | 45 ++++++++++++++++++++++-------- + src/bjb-note-view.c | 9 ++++-- + src/bjb-settings.c | 159 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------------- + src/bjb-settings.h | 9 ++---- + src/resources/app-menu.ui | 16 +++++------ 5 files changed, 139 insertions(+), 99 deletions(-) commit abf51004848399954273a4c4fb34d0f2022546b3 @@ -10368,8 +10406,8 @@ Tracker is now in better shape but notes tags are "in-memory" - src/libbiji/biji-tracker.c | 131 ++++++++------------------------------------- - src/libbiji/biji-tracker.h | 5 -- + src/libbiji/biji-tracker.c | 131 +++++++++++++++++++------------------------------------------------------------------------------------- + src/libbiji/biji-tracker.h | 5 ---- 2 files changed, 23 insertions(+), 113 deletions(-) commit 58185747dd120df54a98fd91021d75e2b8d1ef02 @@ -10381,7 +10419,7 @@ Amending database won't block anymore. The priority should be amended. Also, note update should be reviewed. - src/libbiji/biji-tracker.c | 50 +++++++++++++++------------------------------- + src/libbiji/biji-tracker.c | 50 ++++++++++++++++---------------------------------- 1 file changed, 16 insertions(+), 34 deletions(-) commit 5c2e7303da26a0795604eef3d5b5eaa6c049eb23 @@ -10424,9 +10462,9 @@ Tracker : get_all_tags => async version - src/bjb-note-tag-dialog.c | 24 +++++++++++++------ - src/libbiji/biji-tracker.c | 60 ++++++++++++++++++++++++++++++++++++++++++++++ - src/libbiji/biji-tracker.h | 8 +++++-- + src/bjb-note-tag-dialog.c | 24 +++++++++++++++++------- + src/libbiji/biji-tracker.c | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/biji-tracker.h | 8 ++++++-- 3 files changed, 83 insertions(+), 9 deletions(-) commit b605baadefaee5cf7117596dd69a38c5d4a64da8 @@ -10499,10 +10537,10 @@ Trash note rather than hard delete src/libbiji/biji-note-book.c | 2 +- - src/libbiji/biji-note-id.c | 8 +++-- - src/libbiji/biji-note-id.h | 3 ++ - src/libbiji/biji-note-obj.c | 72 +++++++++++++++++++++++++++++++------------- - src/libbiji/biji-note-obj.h | 5 ++- + src/libbiji/biji-note-id.c | 8 ++++++-- + src/libbiji/biji-note-id.h | 3 +++ + src/libbiji/biji-note-obj.c | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++--------------------- + src/libbiji/biji-note-obj.h | 5 ++++- 5 files changed, 65 insertions(+), 25 deletions(-) commit 83b8e7411eb1762555c61cefa8858cda8f1ff7c2 @@ -10515,11 +10553,11 @@ it to use a slightly stronger stroke in the future. libgd | 2 +- - src/Makefile.am | 3 +- - src/app-menu.ui | 34 ---------- - src/bjb.gresource.xml | 3 +- - src/libbiji/biji-note-obj.c | 127 ++------------------------------------ - src/resources/app-menu.ui | 34 ++++++++++ + src/Makefile.am | 3 ++- + src/app-menu.ui | 34 -------------------------- + src/bjb.gresource.xml | 3 ++- + src/libbiji/biji-note-obj.c | 127 ++++--------------------------------------------------------------------------------------------- + src/resources/app-menu.ui | 34 ++++++++++++++++++++++++++ src/resources/thumbnail-frame.png | Bin 0 -> 832 bytes 7 files changed, 44 insertions(+), 159 deletions(-) @@ -10569,7 +10607,7 @@ Autotool: Src Makefile: little reorg and add clean - src/Makefile.am | 86 ++++++++++++++++++++++++++++++--------------------------- + src/Makefile.am | 86 +++++++++++++++++++++++++++++++++++++++++++++----------------------------------------- 1 file changed, 45 insertions(+), 41 deletions(-) commit 7996df479df224bfa6b5065af3ed3ae6b8c3d38c @@ -10606,7 +10644,7 @@ Shell Provider: initial (sync blocking) tracker implementation src/Makefile.am | 2 + - src/bijiben-shell-search-provider.c | 244 ++++++++++++++++++++++++++++++++++++ + src/bijiben-shell-search-provider.c | 244 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 246 insertions(+) commit 6269eeceba1b4e05fafe081d67b0fbb0adaca2a5 @@ -10615,13 +10653,13 @@ UNUSED) ShellSearchProvider skeleton - .gitignore | 4 + - data/Makefile.am | 19 +- - data/bijiben-search-provider.ini | 5 + - data/org.gnome.Bijiben.SearchProvider.service.in | 4 + - data/shell-search-provider-dbus-interfaces.xml | 40 ++++ - src/Makefile.am | 26 +++ - src/bijiben-shell-search-provider.c | 223 +++++++++++++++++++++++ + .gitignore | 4 ++ + data/Makefile.am | 19 ++++++- + data/bijiben-search-provider.ini | 5 ++ + data/org.gnome.Bijiben.SearchProvider.service.in | 4 ++ + data/shell-search-provider-dbus-interfaces.xml | 40 +++++++++++++++ + src/Makefile.am | 26 ++++++++++ + src/bijiben-shell-search-provider.c | 223 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 7 files changed, 319 insertions(+), 2 deletions(-) commit e4a01ada7da59aceb1103b6b3d5d53cd816a51e4 @@ -10630,9 +10668,9 @@ BijiNoteID: now has a GFile property - src/libbiji/biji-note-id.c | 106 +++++++++++++++++++++++++++++++++----------- - src/libbiji/biji-note-id.h | 4 +- - src/libbiji/biji-note-obj.c | 5 ++- + src/libbiji/biji-note-id.c | 106 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------- + src/libbiji/biji-note-id.h | 4 ++-- + src/libbiji/biji-note-obj.c | 5 +++-- 3 files changed, 86 insertions(+), 29 deletions(-) commit 2ee247358e1013dcadd7eaa0cb7abc3bf40c22ce @@ -10670,13 +10708,13 @@ BijiNoteId: clean up create date and set it when new note - src/libbiji/biji-note-book.c | 4 +- - src/libbiji/biji-note-id.c | 87 +++++++++++---------- - src/libbiji/biji-note-id.h | 37 +++++---- - src/libbiji/biji-note-obj.c | 94 +++++++++++++++-------- - src/libbiji/biji-note-obj.h | 20 ++++- - src/libbiji/deserializer/biji-lazy-deserializer.c | 9 ++- - src/libbiji/editor/biji-webkit-editor.c | 8 +- + src/libbiji/biji-note-book.c | 4 ++-- + src/libbiji/biji-note-id.c | 87 ++++++++++++++++++++++++++++++++++++++++----------------------------------- + src/libbiji/biji-note-id.h | 37 +++++++++++++++++++------------- + src/libbiji/biji-note-obj.c | 94 ++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------- + src/libbiji/biji-note-obj.h | 20 ++++++++++++++---- + src/libbiji/deserializer/biji-lazy-deserializer.c | 9 ++++---- + src/libbiji/editor/biji-webkit-editor.c | 8 ++++--- 7 files changed, 159 insertions(+), 100 deletions(-) commit 4f92ababf224a0d00b07fa8712d07a1e2de5a9dc @@ -10709,7 +10747,7 @@ g_list_copy tags Simplify things - src/bjb-note-tag-dialog.c | 209 +++++++++++++++++++++++++--------------------- + src/bjb-note-tag-dialog.c | 209 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------- 1 file changed, 115 insertions(+), 94 deletions(-) commit e9ebaafe3b5f82045d2426ff3c5891f62db1381d @@ -10775,9 +10813,9 @@ Dialog will be able to handle several notes src/Makefile.am | 2 + - src/bjb-note-tag-dialog.c | 389 ++++++++++++++++++++++++++++++++++++++++++++++ - src/bjb-note-tag-dialog.h | 58 +++++++ - src/bjb-note-view.c | 232 ++------------------------- + src/bjb-note-tag-dialog.c | 389 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/bjb-note-tag-dialog.h | 58 ++++++++++++++++ + src/bjb-note-view.c | 232 +++------------------------------------------------------------ 4 files changed, 458 insertions(+), 223 deletions(-) commit 906e73459644e848754d961c9612496da2a75079 @@ -10786,9 +10824,9 @@ Editor:DragNDrop: first implementation for images link - src/libbiji/deserializer/biji-lazy-deserializer.c | 63 ++++++++++++++++++++ - src/libbiji/editor/biji-webkit-editor.c | 4 ++ - src/libbiji/serializer/biji-lazy-serializer.c | 70 ++++++++++++++++++++--- + src/libbiji/deserializer/biji-lazy-deserializer.c | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/editor/biji-webkit-editor.c | 4 ++++ + src/libbiji/serializer/biji-lazy-serializer.c | 70 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------- 3 files changed, 128 insertions(+), 9 deletions(-) commit 507d06806bbd5a6988026c4e8f96a0af8c8a064f @@ -10797,7 +10835,7 @@ Editor: on_content_changed: use native func to retrieve raw text - src/libbiji/editor/biji-webkit-editor.c | 80 +++------------------------------ + src/libbiji/editor/biji-webkit-editor.c | 80 +++++++------------------------------------------------------------------------- 1 file changed, 7 insertions(+), 73 deletions(-) commit fea243e23ab32a72d3e227f209ca56510c4d8e76 @@ -10806,8 +10844,8 @@ Serialize: make sure we serialize xml manually - src/libbiji/deserializer/biji-lazy-deserializer.c | 3 + - src/libbiji/serializer/biji-lazy-serializer.c | 216 +++++++++++++++++----- + src/libbiji/deserializer/biji-lazy-deserializer.c | 3 ++ + src/libbiji/serializer/biji-lazy-serializer.c | 216 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------- 2 files changed, 169 insertions(+), 50 deletions(-) commit 1c5f7fcdae7969e19dab6693b0f509db313a015e @@ -10819,8 +10857,8 @@ More targets should be supported and guchar utf has to be converted to be correct. Also, NoteBook has to be cleanup using new_note (title, text, html, ...) - src/bjb-main-view.c | 47 ++++++++++++++++++++++++++++++++++++++++++++ - src/libbiji/biji-note-book.c | 40 +++++++++++++++++++++++++++++++++---- + src/bjb-main-view.c | 47 +++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/biji-note-book.c | 40 ++++++++++++++++++++++++++++++++++++---- src/libbiji/biji-note-book.h | 5 +++++ 3 files changed, 88 insertions(+), 4 deletions(-) @@ -10839,9 +10877,9 @@ NoteID: start fixing accessors for memory, starting with deserialization - src/libbiji/biji-note-id.c | 18 +++++++++----- - src/libbiji/biji-note-obj.c | 9 +++---- - src/libbiji/deserializer/biji-lazy-deserializer.c | 29 +++++++++++++++++------ + src/libbiji/biji-note-id.c | 18 ++++++++++++------ + src/libbiji/biji-note-obj.c | 9 +++++---- + src/libbiji/deserializer/biji-lazy-deserializer.c | 29 ++++++++++++++++++++++------- 3 files changed, 39 insertions(+), 17 deletions(-) commit 55c658c396103e47e26b226dd166f47a61ebfec1 @@ -10877,13 +10915,13 @@ NoteObj: make NoteID private - use note_new (path) and gobj property path - src/bjb-controller.c | 4 +- - src/libbiji/biji-note-book.c | 24 ++----- - src/libbiji/biji-note-id.c | 19 ++++++ - src/libbiji/biji-note-id.h | 17 ++++- - src/libbiji/biji-note-obj.c | 91 +++++++++++++++++++++++++-- - src/libbiji/biji-note-obj.h | 8 ++- - src/libbiji/serializer/biji-lazy-serializer.c | 13 ++-- + src/bjb-controller.c | 4 ++-- + src/libbiji/biji-note-book.c | 24 ++++++----------------- + src/libbiji/biji-note-id.c | 19 ++++++++++++++++++ + src/libbiji/biji-note-id.h | 17 +++++++++++++++- + src/libbiji/biji-note-obj.c | 91 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----- + src/libbiji/biji-note-obj.h | 8 +++++--- + src/libbiji/serializer/biji-lazy-serializer.c | 13 ++++++------- 7 files changed, 140 insertions(+), 36 deletions(-) commit 7fb4f6025dc8977a95087dd02165fb596d35cea7 @@ -10901,7 +10939,7 @@ Test : import tomboy gnote when bjb first runs - src/bjb-bijiben.c | 98 ++++++++++++++++++++++++++++++++++++++++++++++++++++--- + src/bjb-bijiben.c | 98 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 94 insertions(+), 4 deletions(-) commit a9cd49b8a4bc2605001aadec27640c8d052ea201 @@ -10930,16 +10968,16 @@ BijiNoteObj: clean up some old accessor eg left margin - src/Makefile.am | 2 - - src/bjb-controller.c | 4 +- - src/libbiji/biji-note-book.c | 6 +-- - src/libbiji/biji-note-obj.c | 55 ++++++----------------- - src/libbiji/biji-note-obj.h | 4 +- - src/libbiji/biji-note-watcher.c | 18 -------- - src/libbiji/biji-note-watcher.h | 13 ------ - src/libbiji/biji-tracker.c | 12 ++--- + src/Makefile.am | 2 -- + src/bjb-controller.c | 4 ++-- + src/libbiji/biji-note-book.c | 6 +++--- + src/libbiji/biji-note-obj.c | 55 ++++++++++++++----------------------------------------- + src/libbiji/biji-note-obj.h | 4 +--- + src/libbiji/biji-note-watcher.c | 18 ------------------ + src/libbiji/biji-note-watcher.h | 13 ------------- + src/libbiji/biji-tracker.c | 12 ++++++------ src/libbiji/biji-zeitgeist.c | 2 +- - src/libbiji/deserializer/biji-lazy-deserializer.c | 4 +- + src/libbiji/deserializer/biji-lazy-deserializer.c | 4 ++-- 10 files changed, 29 insertions(+), 91 deletions(-) commit d9bde8f72eb0e1b1d25b1290dc67863f40a30db5 @@ -10998,9 +11036,9 @@ MainToolbar : update label when search performed Add the signal to controller - src/bjb-controller.c | 42 +++++++++++++++++++---------- - src/bjb-main-toolbar.c | 73 +++++++++++++++++++++++++++++++++++++++----------- - src/bjb-main-toolbar.h | 4 ++- + src/bjb-controller.c | 42 ++++++++++++++++++++++++++++-------------- + src/bjb-main-toolbar.c | 73 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------- + src/bjb-main-toolbar.h | 4 +++- src/bjb-main-view.c | 2 +- 4 files changed, 90 insertions(+), 31 deletions(-) @@ -11010,7 +11048,7 @@ WebkitEdtior owns it selection and finalizes it - src/libbiji/editor/biji-webkit-editor.c | 61 +++++++++++++++------------------ + src/libbiji/editor/biji-webkit-editor.c | 61 +++++++++++++++++++++++++++---------------------------------- 1 file changed, 27 insertions(+), 34 deletions(-) commit 6a7b4b0e86dc9388bd3bcbf3984359854eee89fe @@ -11038,13 +11076,13 @@ _str_replace : free some leaks - src/bjb-share.c | 39 ++++++++++++--- - src/bjb-share.h | 20 +++++++- - src/libbiji/biji-note-obj.h | 18 +++++-- - src/libbiji/biji-string.c | 60 +++++++++++------------ - src/libbiji/biji-tracker.c | 52 ++++++++++++++++---- - src/libbiji/biji-tracker.h | 18 +++++++ - src/libbiji/deserializer/biji-lazy-deserializer.c | 7 +-- + src/bjb-share.c | 39 ++++++++++++++++++++++++++++++++------- + src/bjb-share.h | 20 +++++++++++++++++++- + src/libbiji/biji-note-obj.h | 18 ++++++++++++++---- + src/libbiji/biji-string.c | 60 ++++++++++++++++++++++++++++++------------------------------ + src/libbiji/biji-tracker.c | 52 ++++++++++++++++++++++++++++++++++++++++++---------- + src/libbiji/biji-tracker.h | 18 ++++++++++++++++++ + src/libbiji/deserializer/biji-lazy-deserializer.c | 7 ++++--- 7 files changed, 159 insertions(+), 55 deletions(-) commit e8ea1d5ba7d06d4526a8757b7d14148a6eb5f18e @@ -11063,8 +11101,8 @@ Add biji_str_ : replace and _mass_replace src/Makefile.am | 2 ++ - src/libbiji/biji-string.c | 83 +++++++++++++++++++++++++++++++++++++++++++++++ - src/libbiji/biji-string.h | 39 ++++++++++++++++++++++ + src/libbiji/biji-string.c | 83 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/biji-string.h | 39 +++++++++++++++++++++++++++++++++++++++ src/libbiji/libbiji.h | 1 + 4 files changed, 125 insertions(+) @@ -11084,13 +11122,13 @@ Timeout : save note after 3s - src/bjb-note-view.c | 6 +- - src/libbiji/biji-note-book.c | 6 +- - src/libbiji/biji-note-obj.c | 115 ++++++++++++-------------- - src/libbiji/biji-note-obj.h | 8 +- + src/bjb-note-view.c | 6 ++--- + src/libbiji/biji-note-book.c | 6 ++--- + src/libbiji/biji-note-obj.c | 115 +++++++++++++++++++++++++++++++++++++++++-------------------------------------------- + src/libbiji/biji-note-obj.h | 8 +----- src/libbiji/editor/biji-webkit-editor.c | 2 +- - src/libbiji/serializer/biji-lazy-serializer.c | 24 ++++-- - src/libbiji/serializer/biji-lazy-serializer.h | 4 +- + src/libbiji/serializer/biji-lazy-serializer.c | 24 +++++++++++------- + src/libbiji/serializer/biji-lazy-serializer.h | 4 +-- 7 files changed, 79 insertions(+), 86 deletions(-) commit 85bc14160258afe7ffcaf1034118ab21f13f4a0d @@ -11129,9 +11167,9 @@ configure.ac | 3 ++- src/Makefile.am | 2 ++ - src/bjb-editor-toolbar.c | 9 ++------ + src/bjb-editor-toolbar.c | 9 ++------- src/bjb-main-toolbar.c | 8 +------- - src/libbiji/biji-note-book.c | 49 ++++++++++++++++++++++++++++++-------------- + src/libbiji/biji-note-book.c | 49 ++++++++++++++++++++++++++++++++++--------------- src/libbiji/biji-note-book.h | 4 ++-- 6 files changed, 43 insertions(+), 32 deletions(-) @@ -11141,8 +11179,8 @@ Initial UNUSED timeout - src/libbiji/biji-timeout.c | 120 +++++++++++++++++++++++++++++++++++++++++++++ - src/libbiji/biji-timeout.h | 61 +++++++++++++++++++++++ + src/libbiji/biji-timeout.c | 120 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/biji-timeout.h | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 181 insertions(+) commit 620a1f8a564cd5067c36fa65c2b6580c6eb9f126 @@ -11151,7 +11189,7 @@ Initial GHashTable for replacing GList - src/libbiji/biji-note-book.c | 176 ++++++++++++++++++++++++------------------- + src/libbiji/biji-note-book.c | 176 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------------- 1 file changed, 97 insertions(+), 79 deletions(-) commit 99d9616fac21be3c2ccb574c7efd780461586423 @@ -11161,7 +11199,7 @@ Deserializer : plug leak src/libbiji/biji-note-book.c | 5 +---- - src/libbiji/deserializer/biji-lazy-deserializer.c | 26 ++++++++++++++++++----- + src/libbiji/deserializer/biji-lazy-deserializer.c | 26 +++++++++++++++++++++----- src/libbiji/deserializer/biji-lazy-deserializer.h | 4 +--- 3 files changed, 23 insertions(+), 12 deletions(-) @@ -11190,13 +11228,13 @@ Small cleanup src/bjb-main-toolbar.c | 2 +- - src/bjb-main-view.c | 4 ++- - src/bjb-note-view.c | 11 +++----- - src/bjb-selection-toolbar.c | 5 ++++ - src/libbiji/biji-note-obj.c | 46 +++++++-------------------------- - src/libbiji/biji-note-obj.h | 8 ------ - src/libbiji/biji-tracker.c | 9 +++---- - src/libbiji/editor/biji-webkit-editor.c | 31 +++++++++++++++------- + src/bjb-main-view.c | 4 +++- + src/bjb-note-view.c | 11 ++++------- + src/bjb-selection-toolbar.c | 5 +++++ + src/libbiji/biji-note-obj.c | 46 ++++++++++------------------------------------ + src/libbiji/biji-note-obj.h | 8 -------- + src/libbiji/biji-tracker.c | 9 ++++----- + src/libbiji/editor/biji-webkit-editor.c | 31 +++++++++++++++++++++---------- 8 files changed, 48 insertions(+), 68 deletions(-) commit 65b57d720d44b8651fdbc88ebc91bbf6a5f91d26 @@ -11254,9 +11292,9 @@ Initial note CSS stylesheet - data/Default.css | 8 +++++++ - data/Makefile.am | 15 +++++++++---- - src/libbiji/editor/biji-webkit-editor.c | 37 ++++++++++++++++++++++++++------- + data/Default.css | 8 ++++++++ + data/Makefile.am | 15 +++++++++++---- + src/libbiji/editor/biji-webkit-editor.c | 37 +++++++++++++++++++++++++++++-------- 3 files changed, 48 insertions(+), 12 deletions(-) commit f16b3d6b70a37bff05903739d427ba6375af1065 @@ -11265,9 +11303,9 @@ Accelerators: bold italic strike undo close-note - src/bjb-editor-toolbar.c | 33 +++++++++++++- - src/bjb-note-view.c | 37 ++++++++++------ - src/libbiji/editor/biji-editor-selection.c | 69 +++++++++++++++--------------- + src/bjb-editor-toolbar.c | 33 ++++++++++++++++++++++++++++++++- + src/bjb-note-view.c | 37 ++++++++++++++++++++++++------------- + src/libbiji/editor/biji-editor-selection.c | 69 ++++++++++++++++++++++++++++++++++----------------------------------- 3 files changed, 90 insertions(+), 49 deletions(-) commit 4b36a733563204984a94a00a9b6a92368b4a5c4b @@ -11285,10 +11323,10 @@ Add bullets, list, undo and redo to note menu - src/bjb-note-view.c | 62 +++++++++++++++++++-- - src/libbiji/biji-note-obj.h | 8 +-- - src/libbiji/deserializer/biji-lazy-deserializer.c | 30 ++++++++--- - src/libbiji/editor/biji-webkit-editor.c | 66 ++++++++++++++--------- + src/bjb-note-view.c | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---- + src/libbiji/biji-note-obj.h | 8 +++++--- + src/libbiji/deserializer/biji-lazy-deserializer.c | 30 +++++++++++++++++++++++------- + src/libbiji/editor/biji-webkit-editor.c | 66 +++++++++++++++++++++++++++++++++++++++++------------------------- src/libbiji/editor/biji-webkit-editor.h | 1 - 5 files changed, 127 insertions(+), 40 deletions(-) @@ -11307,13 +11345,13 @@ move zeitgeist skeleton to libbiji - src/Makefile.am | 4 +-- - src/bjb-note-view.c | 21 +++++++++++--- - src/bjb-zeitgeist-dataprovider.c | 54 ------------------------------------ - src/bjb-zeitgeist-dataprovider.h | 3 -- - src/libbiji/biji-note-obj.c | 19 +++++++++++++ - src/libbiji/biji-zeitgeist.c | 60 ++++++++++++++++++++++++++++++++++++++++ - src/libbiji/biji-zeitgeist.h | 26 +++++++++++++++++ + src/Makefile.am | 4 ++-- + src/bjb-note-view.c | 21 +++++++++++++++++---- + src/bjb-zeitgeist-dataprovider.c | 54 ------------------------------------------------------ + src/bjb-zeitgeist-dataprovider.h | 3 --- + src/libbiji/biji-note-obj.c | 19 +++++++++++++++++++ + src/libbiji/biji-zeitgeist.c | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/biji-zeitgeist.h | 26 ++++++++++++++++++++++++++ src/libbiji/libbiji.h | 1 + 8 files changed, 125 insertions(+), 63 deletions(-) @@ -11381,7 +11419,7 @@ SearchToolbar: no EASE_IN_QUAD mode since animation breaks search entry focus - src/bjb-search-toolbar.c | 53 ++++++++++++++++++++---------------------------- + src/bjb-search-toolbar.c | 53 ++++++++++++++++++++++------------------------------- 1 file changed, 22 insertions(+), 31 deletions(-) commit 41fce6ba4c8cc36a9b1f0a91995fd3f0d3db8ffb @@ -11400,17 +11438,17 @@ CleanUp: Delete TagView. Move tracker to libbiji. src/Makefile.am | 6 +- - src/bjb-app-menu.c | 16 -- + src/bjb-app-menu.c | 16 --- src/bjb-bijiben.c | 2 - src/bjb-main-view.c | 2 - src/bjb-note-view.c | 1 - - src/bjb-tags-view.c | 581 --------------------------------------------- - src/bjb-tags-view.h | 57 ----- - src/bjb-tracker.c | 318 ------------------------- - src/bjb-tracker.h | 24 -- + src/bjb-tags-view.c | 581 -------------------------------------------------------------------------------------------------------- + src/bjb-tags-view.h | 57 ----------- + src/bjb-tracker.c | 318 --------------------------------------------------------- + src/bjb-tracker.h | 24 ----- src/bjb-window-base.c | 1 - - src/libbiji/biji-tracker.c | 281 ++++++++++++++++++++++ - src/libbiji/biji-tracker.h | 30 +++ + src/libbiji/biji-tracker.c | 281 ++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/biji-tracker.h | 30 ++++++ src/libbiji/libbiji.h | 1 + 13 files changed, 314 insertions(+), 1006 deletions(-) @@ -11443,41 +11481,41 @@ configure.ac | 2 +- src/Makefile.am | 20 +- - src/bjb-editor-toolbar.c | 182 +-- + src/bjb-editor-toolbar.c | 182 ++++----- src/bjb-editor-toolbar.h | 2 +- src/bjb-main-toolbar.c | 12 +- src/bjb-main-view.c | 11 +- - src/bjb-note-view.c | 43 +- + src/bjb-note-view.c | 43 +-- src/bjb-tracker.c | 2 +- src/libbiji/biji-note-book.c | 34 +- - src/libbiji/biji-note-buffer.c | 1290 ---------------- - src/libbiji/biji-note-buffer.h | 109 -- - src/libbiji/biji-note-editor.c | 258 ---- - src/libbiji/biji-note-editor.h | 49 - - src/libbiji/biji-note-obj.c | 304 ++-- - src/libbiji/biji-note-obj.h | 47 +- - src/libbiji/biji-note-tag.c | 178 --- - src/libbiji/biji-note-tag.h | 67 - - src/libbiji/biji-note-watcher.c | 78 +- + src/libbiji/biji-note-buffer.c | 1290 ------------------------------------------------------------- + src/libbiji/biji-note-buffer.h | 109 ------ + src/libbiji/biji-note-editor.c | 258 ------------- + src/libbiji/biji-note-editor.h | 49 --- + src/libbiji/biji-note-obj.c | 304 +++++++++------ + src/libbiji/biji-note-obj.h | 47 ++- + src/libbiji/biji-note-tag.c | 178 --------- + src/libbiji/biji-note-tag.h | 67 ---- + src/libbiji/biji-note-watcher.c | 78 +--- src/libbiji/biji-note-watcher.h | 10 +- - src/libbiji/biji-read-tomboy.c | 500 ------ + src/libbiji/biji-read-tomboy.c | 500 ------------------------ src/libbiji/biji-read-tomboy.h | 20 - - src/libbiji/biji-serialize.c | 492 ------ - src/libbiji/biji-serialize.h | 25 - + src/libbiji/biji-serialize.c | 492 ------------------------ + src/libbiji/biji-serialize.h | 25 -- src/libbiji/deserializer/Makefile.am | 0 - src/libbiji/deserializer/biji-lazy-deserializer.c | 560 +++++++ - src/libbiji/deserializer/biji-lazy-deserializer.h | 58 + + src/libbiji/deserializer/biji-lazy-deserializer.c | 560 +++++++++++++++++++++++++++ + src/libbiji/deserializer/biji-lazy-deserializer.h | 58 +++ src/libbiji/editor/Makefile.am | 0 - src/libbiji/editor/biji-editor-selection.c | 1682 +++++++++++++++++++++ - src/libbiji/editor/biji-editor-selection.h | 207 +++ - src/libbiji/editor/biji-editor-utils.c | 90 ++ - src/libbiji/editor/biji-editor-utils.h | 28 + - src/libbiji/editor/biji-webkit-editor.c | 368 +++++ - src/libbiji/editor/biji-webkit-editor.h | 69 + + src/libbiji/editor/biji-editor-selection.c | 1682 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/editor/biji-editor-selection.h | 207 ++++++++++ + src/libbiji/editor/biji-editor-utils.c | 90 +++++ + src/libbiji/editor/biji-editor-utils.h | 28 ++ + src/libbiji/editor/biji-webkit-editor.c | 368 ++++++++++++++++++ + src/libbiji/editor/biji-webkit-editor.h | 69 ++++ src/libbiji/libbiji.h | 5 +- src/libbiji/serializer/Makefile.am | 0 - src/libbiji/serializer/biji-lazy-serializer.c | 247 +++ - src/libbiji/serializer/biji-lazy-serializer.h | 64 + + src/libbiji/serializer/biji-lazy-serializer.c | 247 ++++++++++++ + src/libbiji/serializer/biji-lazy-serializer.h | 64 ++++ 37 files changed, 3744 insertions(+), 3369 deletions(-) commit 591e3c301e2f716e868c55339d8301a0e53f25a6 @@ -11497,10 +11535,10 @@ Instead of manually creating a drawing area. - src/bjb-note-view.c | 120 ++++++++++--------------------------------- - src/libbiji/biji-note-obj.c | 27 ++++++---- + src/bjb-note-view.c | 120 ++++++++++++++++++++++++------------------------------------------------------------------------------ + src/libbiji/biji-note-obj.c | 27 +++++++++++++---------- src/libbiji/biji-note-obj.h | 2 +- - src/libbiji/biji-serialize.c | 10 ++-- + src/libbiji/biji-serialize.c | 10 ++++----- 4 files changed, 49 insertions(+), 110 deletions(-) commit eb3c51d381def3a46e164618b34861a8fafe4a7c @@ -11532,15 +11570,15 @@ Cleanups for BijibenApplication window creation - src/bjb-app-menu.c | 4 +-- - src/bjb-bijiben.c | 69 ++++++++++++++++++------------------------------ - src/bjb-bijiben.h | 7 +++-- + src/bjb-app-menu.c | 4 +--- + src/bjb-bijiben.c | 69 +++++++++++++++++++++++++-------------------------------------------- + src/bjb-bijiben.h | 7 +++---- src/bjb-editor-toolbar.c | 2 +- src/bjb-note-view.c | 2 +- - src/bjb-settings.c | 4 +-- + src/bjb-settings.c | 4 ++-- src/bjb-tags-view.c | 3 +-- - src/bjb-window-base.c | 16 ++--------- - src/bjb-window-base.h | 4 +-- + src/bjb-window-base.c | 16 ++-------------- + src/bjb-window-base.h | 4 +--- 9 files changed, 37 insertions(+), 74 deletions(-) commit 841f185a780039bc9767beedb6fd9f1aaf331fc1 @@ -11551,14 +11589,14 @@ src/bjb-app-menu.c | 2 ++ src/bjb-editor-toolbar.c | 2 +- - src/bjb-main-view.c | 4 +-- - src/bjb-selection-toolbar.c | 57 -------------------------------- - src/bjb-tags-view.c | 3 +- - src/bjb-window-base.c | 6 ++-- - src/libbiji/biji-note-buffer.c | 17 ---------- - src/libbiji/biji-note-editor.c | 4 +-- - src/libbiji/biji-note-tag.c | 72 +++++++++++++++++++++-------------------- - src/libbiji/biji-note-watcher.c | 21 ++++++++++-- + src/bjb-main-view.c | 4 +--- + src/bjb-selection-toolbar.c | 57 --------------------------------------------------------- + src/bjb-tags-view.c | 3 +-- + src/bjb-window-base.c | 6 ++++-- + src/libbiji/biji-note-buffer.c | 17 ----------------- + src/libbiji/biji-note-editor.c | 4 ++-- + src/libbiji/biji-note-tag.c | 72 +++++++++++++++++++++++++++++++++++++----------------------------------- + src/libbiji/biji-note-watcher.c | 21 ++++++++++++++++++--- 10 files changed, 66 insertions(+), 122 deletions(-) commit 85fe4a1aeacafaf00dbb2363b2662b1c263f08ba @@ -11584,14 +11622,14 @@ - plug some memory leaks - remove and streamline some unused code - src/bjb-bijiben.c | 133 +++++++----------- + src/bjb-bijiben.c | 133 +++++++++++++++---------------------------- src/bjb-bijiben.h | 3 +- src/bjb-controller.c | 2 +- - src/bjb-window-base.c | 12 -- + src/bjb-window-base.c | 12 ---- src/bjb-window-base.h | 2 - - src/libbiji/biji-note-book.c | 317 ++++++++++++++++++++++++++++++------------- - src/libbiji/biji-note-book.h | 9 +- - src/libbiji/biji-note-id.c | 40 +++--- + src/libbiji/biji-note-book.c | 317 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------ + src/libbiji/biji-note-book.h | 9 +-- + src/libbiji/biji-note-id.c | 40 +++++++------ src/libbiji/biji-note-id.h | 2 +- 9 files changed, 295 insertions(+), 225 deletions(-) @@ -11668,8 +11706,8 @@ BjbWindowBase: get rid of useless property, more stuff to init, fix warnings - src/bjb-window-base.c | 123 ++++++++++++-------------------------------------- - src/bjb-window-base.h | 2 - + src/bjb-window-base.c | 123 ++++++++++++++++++++++++++----------------------------------------------------------------------------------- + src/bjb-window-base.h | 2 -- 2 files changed, 29 insertions(+), 96 deletions(-) commit 54e72c9aacfb8b54bc28e87220cff41668a1d378 @@ -11678,7 +11716,7 @@ BjbWindowBase application property to fix crash when a second window closed - src/bjb-window-base.c | 111 ++++++++++++++++++++++++-------------------------- + src/bjb-window-base.c | 111 +++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------------------- 1 file changed, 54 insertions(+), 57 deletions(-) commit efafa6ff5ff7af063149414d101cad7179041d23 @@ -11696,8 +11734,8 @@ Toolbars: clean up and finish removing deprecated clutter animation - src/bjb-editor-toolbar.c | 5 +- - src/bjb-selection-toolbar.c | 253 +++----------------------------------------- + src/bjb-editor-toolbar.c | 5 +-- + src/bjb-selection-toolbar.c | 253 ++++++------------------------------------------------------------------------------------------------- 2 files changed, 14 insertions(+), 244 deletions(-) commit 4098b250365b1f6e8840513eeac4ddb6db3f6425 @@ -11716,7 +11754,7 @@ libgd : finalize port remove widgets hierarchy, add link and amend includes - src/Makefile.am | 19 +- + src/Makefile.am | 19 +-- src/bjb-controller.c | 4 +- src/bjb-controller.h | 3 +- src/bjb-main-toolbar.h | 3 +- @@ -11724,20 +11762,20 @@ src/bjb-note-view.c | 2 +- src/bjb-selection-toolbar.c | 1 + src/bjb-selection-toolbar.h | 3 +- - src/widgets/gd-main-icon-view.c | 203 --------- - src/widgets/gd-main-icon-view.h | 74 ---- - src/widgets/gd-main-list-view.c | 224 ---------- - src/widgets/gd-main-list-view.h | 80 ---- - src/widgets/gd-main-toolbar.c | 405 ------------------ - src/widgets/gd-main-toolbar.h | 96 ----- - src/widgets/gd-main-view-generic.c | 154 ------- - src/widgets/gd-main-view-generic.h | 106 ----- - src/widgets/gd-main-view.c | 725 -------------------------------- - src/widgets/gd-main-view.h | 95 ----- - src/widgets/gd-toggle-pixbuf-renderer.c | 198 --------- - src/widgets/gd-toggle-pixbuf-renderer.h | 75 ---- - src/widgets/gd-two-lines-renderer.c | 528 ----------------------- - src/widgets/gd-two-lines-renderer.h | 75 ---- + src/widgets/gd-main-icon-view.c | 203 -------------------------- + src/widgets/gd-main-icon-view.h | 74 ---------- + src/widgets/gd-main-list-view.c | 224 ---------------------------- + src/widgets/gd-main-list-view.h | 80 ---------- + src/widgets/gd-main-toolbar.c | 405 --------------------------------------------------- + src/widgets/gd-main-toolbar.h | 96 ------------ + src/widgets/gd-main-view-generic.c | 154 -------------------- + src/widgets/gd-main-view-generic.h | 106 -------------- + src/widgets/gd-main-view.c | 725 ------------------------------------------------------------------------------------------- + src/widgets/gd-main-view.h | 95 ------------ + src/widgets/gd-toggle-pixbuf-renderer.c | 198 ------------------------- + src/widgets/gd-toggle-pixbuf-renderer.h | 75 ---------- + src/widgets/gd-two-lines-renderer.c | 528 ------------------------------------------------------------------ + src/widgets/gd-two-lines-renderer.h | 75 ---------- 22 files changed, 13 insertions(+), 3065 deletions(-) commit da692133ee557eeacab134a9849c6e6c75128e3a @@ -11777,11 +11815,11 @@ libbiji - completely remove libbiji.c - src/Makefile.am | 27 ++++++++--------- - src/libbiji/biji-note-book.c | 52 ++++++++++++++++++++++++++++++++ - src/libbiji/biji-note-book.h | 12 ++++++++ - src/libbiji/libbiji.c | 70 -------------------------------------------- - src/libbiji/libbiji.h | 22 -------------- + src/Makefile.am | 27 +++++++++++++-------------- + src/libbiji/biji-note-book.c | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/biji-note-book.h | 12 ++++++++++++ + src/libbiji/libbiji.c | 70 ---------------------------------------------------------------------- + src/libbiji/libbiji.h | 22 ---------------------- 5 files changed, 77 insertions(+), 106 deletions(-) commit a145bef11c5fa3456d48dd27dd8372ea9d3fe5d6 @@ -11790,10 +11828,10 @@ libibiji : still cleaning - src/libbiji/biji-note-book.c | 9 ++----- - src/libbiji/biji-note-book.h | 7 ------ - src/libbiji/libbiji.c | 58 +++++++++++++++++--------------------------- - src/libbiji/libbiji.h | 5 +--- + src/libbiji/biji-note-book.c | 9 ++------- + src/libbiji/biji-note-book.h | 7 ------- + src/libbiji/libbiji.c | 58 ++++++++++++++++++++++------------------------------------ + src/libbiji/libbiji.h | 5 +---- 4 files changed, 25 insertions(+), 54 deletions(-) commit bc00b4494a77454373e38d353dd42681035678e4 @@ -11802,10 +11840,10 @@ libbiji: move note book accessors to note book - src/libbiji/biji-note-book.c | 130 +++++++++++++++++++++++++++++++++++++++++ - src/libbiji/biji-note-book.h | 33 ++++++++++- - src/libbiji/libbiji.c | 136 ------------------------------------------- - src/libbiji/libbiji.h | 40 +------------ + src/libbiji/biji-note-book.c | 130 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/biji-note-book.h | 33 ++++++++++++++++++++++++- + src/libbiji/libbiji.c | 136 ------------------------------------------------------------------------------------------------------ + src/libbiji/libbiji.h | 40 +----------------------------- 4 files changed, 163 insertions(+), 176 deletions(-) commit a53ff127a20fda9ab7e1bf6bb3a41ea4d124a2b0 @@ -11814,10 +11852,10 @@ libbiji: move biji note obj accessors to biji note obj - src/libbiji/biji-note-obj.c | 111 ++++++++++++++++++++++++++++++++++++++++++++ - src/libbiji/biji-note-obj.h | 24 ++++++++++ - src/libbiji/libbiji.c | 111 -------------------------------------------- - src/libbiji/libbiji.h | 15 +----- + src/libbiji/biji-note-obj.c | 111 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/biji-note-obj.h | 24 +++++++++++++++++++++++ + src/libbiji/libbiji.c | 111 ------------------------------------------------------------------------------------------------------- + src/libbiji/libbiji.h | 15 +------------- 4 files changed, 136 insertions(+), 125 deletions(-) commit 0a3f19c2e21de8c3ac12f8798b926c8705c097f2 @@ -11826,10 +11864,10 @@ Libiji : move editor part to biji note buffer - src/libbiji/biji-note-buffer.c | 128 +++++++++++++++++++++++++++++++++++++ - src/libbiji/biji-note-buffer.h | 41 +++++++++++- - src/libbiji/libbiji.c | 141 ----------------------------------------- - src/libbiji/libbiji.h | 36 ----------- + src/libbiji/biji-note-buffer.c | 128 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/biji-note-buffer.h | 41 ++++++++++++++++++++++++++++- + src/libbiji/libbiji.c | 141 ---------------------------------------------------------------------------------------------------- + src/libbiji/libbiji.h | 36 -------------------------- 4 files changed, 168 insertions(+), 178 deletions(-) commit d9b4be31524ecc690883883c13a9bf6341ac88fc @@ -11860,7 +11898,7 @@ src/Makefile.am | 2 ++ src/bjb-note-view.c | 8 +++++++- - src/libbiji/biji-date-time.c | 45 ++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/biji-date-time.c | 45 +++++++++++++++++++++++++++++++++++++++++++++ src/libbiji/biji-date-time.h | 20 ++++++++++++++++++++ src/libbiji/biji-note-obj.c | 8 ++++++++ src/libbiji/biji-note-obj.h | 5 ++++- @@ -11881,8 +11919,8 @@ EditorToolbar : fix link button and animation data/icons/Makefile.am | 2 ++ - data/icons/hicolor_actions_scalable_link.svg | 21 ++++++++++++ - src/bjb-editor-toolbar.c | 51 +++++++++++++++++----------- + data/icons/hicolor_actions_scalable_link.svg | 21 +++++++++++++++++++++ + src/bjb-editor-toolbar.c | 51 ++++++++++++++++++++++++++++++++------------------- 3 files changed, 55 insertions(+), 19 deletions(-) commit cc117d5e661471b596e08755c8f14329706fb1cc @@ -11920,7 +11958,7 @@ EditorToolbar : fix alignment - src/bjb-editor-toolbar.c | 81 +++++++++++++++++++++++------------------------- + src/bjb-editor-toolbar.c | 81 +++++++++++++++++++++++++++++++++++++++------------------------------------------ 1 file changed, 39 insertions(+), 42 deletions(-) commit 514f23747774bb449ca494d5c968589100bc0ad7 @@ -11957,7 +11995,7 @@ BjbNoteView cleanup use constructed bjb_note_view_constructed is now used. current_note is now note. - src/bjb-note-view.c | 175 ++++++++++++++++++---------------------------------- + src/bjb-note-view.c | 175 ++++++++++++++++++++++++++++++++++++++------------------------------------------------------------------------- 1 file changed, 60 insertions(+), 115 deletions(-) commit 53dd69fe8fa0eac09c4051bd7c5a9190cac3f840 @@ -11966,7 +12004,7 @@ BjbNoteView Add window and note properties - src/bjb-note-view.c | 94 ++++++++++++++++++++++++++++++++++++++++++++++++----- + src/bjb-note-view.c | 94 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 86 insertions(+), 8 deletions(-) commit b8830481602b83c21f94efec8e97262de0cc0afc @@ -11999,17 +12037,17 @@ Main view : list : initial small icon for list view Size is not handled yet. Hardcoded 16x16. List model is not proper neither. - data/icons/Makefile.am | 6 +- + data/icons/Makefile.am | 6 +++-- data/icons/hicolor_actions_16x16_note.png | Bin 0 -> 617 bytes data/icons/hicolor_actions_24x24_note.png | Bin 0 -> 964 bytes data/icons/hicolor_actions_48x48_note.png | Bin 1853 -> 2644 bytes - src/bjb-controller.c | 108 ++++++++++++++++++++---------- - src/bjb-controller.h | 2 + - src/bjb-main-toolbar.c | 6 +- - src/bjb-main-view.c | 13 +++- - src/bjb-main-view.h | 2 + - src/utils/bjb-icons-colors.c | 39 ++++++++++- - src/utils/bjb-icons-colors.h | 10 +-- + src/bjb-controller.c | 108 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------ + src/bjb-controller.h | 2 ++ + src/bjb-main-toolbar.c | 6 +++-- + src/bjb-main-view.c | 13 ++++++++++- + src/bjb-main-view.h | 2 ++ + src/utils/bjb-icons-colors.c | 39 +++++++++++++++++++++++++++++++- + src/utils/bjb-icons-colors.h | 10 +++++---- 11 files changed, 140 insertions(+), 46 deletions(-) commit 3d8536f9dd9e64e7f2014515bef7f6d28502aeda @@ -12019,7 +12057,7 @@ MainView : Initial NotePixbuf frame Stuff from ephy. Not uptodate with upstream which uses a property. - src/libbiji/biji-note-obj.c | 159 +++++++++++++++++++++++++++++++++++++------- + src/libbiji/biji-note-obj.c | 159 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 134 insertions(+), 25 deletions(-) commit f82894950cf67cad8a0130675b10186083804695 @@ -12028,7 +12066,7 @@ small clean up on read tomboy coding guidelines - src/libbiji/biji-read-tomboy.c | 685 ++++++++++++++--------------------------- + src/libbiji/biji-read-tomboy.c | 685 ++++++++++++++++++++++++++++++++++------------------------------------------------------------------ 1 file changed, 232 insertions(+), 453 deletions(-) commit 62fb2c2760bbfe58727ae48be3eca7a18287f87c @@ -12037,7 +12075,7 @@ Little clean up on Xml node switch - src/libbiji/biji-read-tomboy.c | 45 ++++++++++++++++++------------------------ + src/libbiji/biji-read-tomboy.c | 45 +++++++++++++++++++-------------------------- 1 file changed, 19 insertions(+), 26 deletions(-) commit 4360666e4c8310cef54e54d6ace55590682910c5 @@ -12046,9 +12084,9 @@ Move Notes Icon to libiji so it's own by BijiNoteObj - src/bjb-controller.c | 115 ++++++------------------------------ - src/libbiji/biji-note-obj.c | 141 +++++++++++++++++++++++++++++++++++++------- - src/libbiji/biji-note-obj.h | 2 + + src/bjb-controller.c | 115 ++++++++++++++---------------------------------------------------------------------- + src/libbiji/biji-note-obj.c | 141 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------- + src/libbiji/biji-note-obj.h | 2 ++ 3 files changed, 139 insertions(+), 119 deletions(-) commit 37e4c61fcc928da55c7f0fc2acab577dbf950397 @@ -12065,11 +12103,11 @@ Draft for editor toolbar Almost all func working (linking is unstable). The UI has to be improved. - src/bjb-bijiben.c | 23 +- - src/bjb-editor-toolbar.c | 555 ++++++++++++++++------------------------------- - src/bjb-note-view.c | 180 +++------------ + src/bjb-bijiben.c | 23 +++-- + src/bjb-editor-toolbar.c | 555 +++++++++++++++++++++++++++++++++++----------------------------------------------------------------------- + src/bjb-note-view.c | 180 ++++++----------------------------- src/bjb-note-view.h | 2 + - src/bjb-window-base.c | 15 +- + src/bjb-window-base.c | 15 ++- src/bjb-window-base.h | 3 + 6 files changed, 243 insertions(+), 535 deletions(-) @@ -12089,9 +12127,9 @@ Initial EditorToolbar src/Makefile.am | 2 + - src/bjb-editor-toolbar.c | 673 +++++++++++++++++++++++++++++++++++++++++++++++ - src/bjb-editor-toolbar.h | 65 +++++ - src/bjb-note-view.c | 65 +---- + src/bjb-editor-toolbar.c | 673 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/bjb-editor-toolbar.h | 65 +++++++++++ + src/bjb-note-view.c | 65 ++--------- 4 files changed, 747 insertions(+), 58 deletions(-) commit b195ccf86a87f78d45482658385fd98d66ed542b @@ -12108,7 +12146,7 @@ Note main toolbar : Fix color button clicked - src/bjb-note-view.c | 55 ++++++++++++++++++++++++++++++++++++++--------------- + src/bjb-note-view.c | 55 ++++++++++++++++++++++++++++++++++++++++--------------- 1 file changed, 40 insertions(+), 15 deletions(-) commit 5cb52f10bc2aa67ed988be8e119ccda2c8bd542e @@ -12120,8 +12158,8 @@ src/Makefile.am | 2 - src/bjb-main-view.c | 1 - src/bjb-note-view.c | 6 +- - src/widgets/bjb-menu-tool.c | 603 ------------------------------------------ - src/widgets/bjb-menu-tool.h | 45 ---- + src/widgets/bjb-menu-tool.c | 603 ----------------------------------------------------------------------------------------------------- + src/widgets/bjb-menu-tool.h | 45 -------- src/widgets/gd-main-toolbar.c | 4 - 6 files changed, 2 insertions(+), 659 deletions(-) @@ -12141,7 +12179,7 @@ Note view : GtkMenuButton - src/bjb-note-view.c | 326 +++++++++++++++++++++------------------------------- + src/bjb-note-view.c | 326 ++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------------------- 1 file changed, 128 insertions(+), 198 deletions(-) commit 05a40fd7925abe54307dfd651861bb8df0043092 @@ -12151,7 +12189,7 @@ Use Clutter actor for NoteView Again, this breaks lot of stuff and has to be fixed before master - src/bjb-note-view.c | 337 ++++++++++++++++++++++++---------------------------- + src/bjb-note-view.c | 337 +++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------------ 1 file changed, 155 insertions(+), 182 deletions(-) commit 8e4a8424c16daededd026eb4d5214aa41c8eb386 @@ -12170,7 +12208,7 @@ MainView : Fix Layout Remove constraints src/bjb-main-toolbar.c | 4 ++-- - src/bjb-main-view.c | 65 ++++++++++++++++---------------------------------- + src/bjb-main-view.c | 65 ++++++++++++++++++++--------------------------------------------- src/bjb-window-base.c | 2 ++ 3 files changed, 24 insertions(+), 47 deletions(-) @@ -12226,8 +12264,8 @@ Remove BjbViewModeButton src/Makefile.am | 2 - - src/widgets/bjb-view-mode-button.c | 197 ------------------------------------- - src/widgets/bjb-view-mode-button.h | 68 ------------- + src/widgets/bjb-view-mode-button.c | 197 ------------------------------------------------------------------------------------------------ + src/widgets/bjb-view-mode-button.h | 68 --------------------------------- 3 files changed, 267 deletions(-) commit de9211e9c1727677fb56ea8dcf6d6c02d33f1c6e @@ -12237,9 +12275,9 @@ Initial Toolbar from gd-main-toolbar src/Makefile.am | 2 + - src/bjb-main-toolbar.c | 456 +++++++++++++++++++++++++++++++++++++++++++++ - src/bjb-main-toolbar.h | 64 +++++++ - src/bjb-main-view.c | 288 +++------------------------- + src/bjb-main-toolbar.c | 456 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/bjb-main-toolbar.h | 64 +++++++++++++++ + src/bjb-main-view.c | 288 ++++++++---------------------------------------------------------- src/bjb-main-view.h | 4 +- src/widgets/gd-main-view.c | 2 +- src/widgets/gd-main-view.h | 4 +- @@ -12252,9 +12290,9 @@ Initial Search Entry src/Makefile.am | 6 +- - src/bjb-main-view.c | 220 ++---------------------- - src/bjb-search-toolbar.c | 425 +++++++++++++++++++++++++++++++++++++++++++++++ - src/bjb-search-toolbar.h | 44 +++++ + src/bjb-main-view.c | 220 ++++--------------------------------------------------- + src/bjb-search-toolbar.c | 425 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/bjb-search-toolbar.h | 44 +++++++++++ 4 files changed, 488 insertions(+), 207 deletions(-) commit e516fe2a4e1da6974efe1f805014546a866f79a3 @@ -12264,13 +12302,13 @@ First draft for Notes-Search Selection-Toolbar src/Makefile.am | 4 +- - src/bjb-main-view.c | 134 ++++---- - src/bjb-note-view.c | 31 +- - src/bjb-selection-panel.c | 39 --- - src/bjb-selection-panel.h | 9 - - src/bjb-selection-toolbar.c | 618 +++++++++++++++++++++++++++++++++++++ - src/bjb-selection-toolbar.h | 65 ++++ - src/widgets/bjb-view-mode-button.c | 173 ++++++----- + src/bjb-main-view.c | 134 ++++++++++++--------- + src/bjb-note-view.c | 31 +++-- + src/bjb-selection-panel.c | 39 ------ + src/bjb-selection-panel.h | 9 -- + src/bjb-selection-toolbar.c | 618 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/bjb-selection-toolbar.h | 65 ++++++++++ + src/widgets/bjb-view-mode-button.c | 173 ++++++++++++++------------- src/widgets/bjb-view-mode-button.h | 12 +- 9 files changed, 873 insertions(+), 212 deletions(-) @@ -12281,10 +12319,10 @@ Full clutter layout : main view Window base provides a clutter actor to be filled by Search Notes & Notes view. This commit introduces regression on memory, performance, usability. - src/bjb-main-view.c | 306 ++++++++++++++++++++++++++-------------------- + src/bjb-main-view.c | 306 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------------- src/bjb-main-view.h | 1 - src/bjb-note-view.c | 2 +- - src/bjb-selection-panel.c | 40 +++--- + src/bjb-selection-panel.c | 40 +++++++++----- src/bjb-selection-panel.h | 3 +- 5 files changed, 200 insertions(+), 152 deletions(-) @@ -12313,16 +12351,16 @@ Initial move to Clutter NotesSearch & NoteEditor - src/bjb-app-menu.c | 4 +- - src/bjb-bijiben.c | 13 ++--- - src/bjb-main-view.c | 128 ++++++++++++++++++++++++++-------------------- - src/bjb-main-view.h | 17 ++++--- - src/bjb-note-view.c | 138 +++++++++++++++++++++++++++----------------------- - src/bjb-note-view.h | 17 +++---- - src/bjb-tags-view.c | 12 +++-- - src/bjb-tags-view.h | 11 ++-- - src/bjb-window-base.c | 116 +++++++++++++++++++++++------------------- - src/bjb-window-base.h | 9 ++-- + src/bjb-app-menu.c | 4 ++-- + src/bjb-bijiben.c | 13 ++++++----- + src/bjb-main-view.c | 128 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------- + src/bjb-main-view.h | 17 +++++++------- + src/bjb-note-view.c | 138 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------- + src/bjb-note-view.h | 17 ++++++-------- + src/bjb-tags-view.c | 12 ++++++---- + src/bjb-tags-view.h | 11 +++++---- + src/bjb-window-base.c | 116 +++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------ + src/bjb-window-base.h | 9 ++++---- 10 files changed, 254 insertions(+), 211 deletions(-) commit ebc498f1e3f8aa7856be51e45be3222485062d74 @@ -12340,7 +12378,7 @@ bjb_main_view_new : clean using constructed() method - src/bjb-main-view.c | 144 ++++++++++++++++++++++++++-------------------------- + src/bjb-main-view.c | 144 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------- 1 file changed, 73 insertions(+), 71 deletions(-) commit 531a5501730379a51fe225800ba428bb07753b7b @@ -12390,7 +12428,7 @@ Update note pixbuf when text changed - src/bjb-controller.c | 49 ++++++++++++++++++++++++++------------------ + src/bjb-controller.c | 49 +++++++++++++++++++++++++++++-------------------- src/libbiji/biji-note-book.c | 2 ++ src/libbiji/biji-note-obj.c | 4 ++++ 3 files changed, 35 insertions(+), 20 deletions(-) @@ -12443,11 +12481,11 @@ Fix search to be window-wide From MainView to NoteView then back, search string is not lost - src/bjb-controller.c | 6 ++++ + src/bjb-controller.c | 6 ++++++ src/bjb-controller.h | 2 ++ - src/bjb-main-view.c | 86 ++++++++++++++++++++++++++++++++++++--------------- - src/bjb-note-view.c | 3 ++ - src/bjb-window-base.c | 37 +++++++++++----------- + src/bjb-main-view.c | 86 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------- + src/bjb-note-view.c | 3 +++ + src/bjb-window-base.c | 37 +++++++++++++++++++------------------ 5 files changed, 91 insertions(+), 43 deletions(-) commit 9b019c8ceaeb9693d24a440a18c575ca3b3b7cf2 @@ -12456,7 +12494,7 @@ Fix bjb-controller.c indent - src/bjb-controller.c | 458 +++++++++++++++++++++++++-------------------------- + src/bjb-controller.c | 458 ++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------------------- 1 file changed, 225 insertions(+), 233 deletions(-) commit b0683a805a3d1ce1b26f3ea12070ec81aff8d8dd @@ -12485,7 +12523,7 @@ BjbController : watch for note book changed (Fixes regression since controller moved to window_base ) - src/bjb-controller.c | 127 +++++++++++++++++++++++++++------------------------ + src/bjb-controller.c | 127 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------------------- 1 file changed, 68 insertions(+), 59 deletions(-) commit ab0adcece62c093415e27b671b0ee8076ffb9463 @@ -12558,12 +12596,12 @@ Move BjbController window-wide to prepare more fixes src/bjb-controller.h | 1 - - src/bjb-main-view.c | 79 ++++++++++++++++++++++++++++++++++++++++++++------- - src/bjb-main-view.h | 4 ++- - src/bjb-note-view.c | 4 ++- - src/bjb-tags-view.c | 36 +++-------------------- - src/bjb-window-base.c | 14 ++++++++- - src/bjb-window-base.h | 4 +++ + src/bjb-main-view.c | 79 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------- + src/bjb-main-view.h | 4 +++- + src/bjb-note-view.c | 4 +++- + src/bjb-tags-view.c | 36 ++++-------------------------------- + src/bjb-window-base.c | 14 +++++++++++++- + src/bjb-window-base.h | 4 ++++ 7 files changed, 96 insertions(+), 46 deletions(-) commit 7ef5cacc1576425cc7fb63b43f6b9d5df0ffc4ba @@ -12573,13 +12611,13 @@ Fix BjbWindowBase name and associated accessors (was : BijiMainWindow) src/bjb-app-menu.c | 2 +- - src/bjb-bijiben.c | 12 +++---- - src/bjb-main-view.c | 20 +++++------ - src/bjb-note-view.c | 18 +++++----- - src/bjb-settings.c | 4 +-- - src/bjb-tags-view.c | 46 ++++++++++++------------ - src/bjb-window-base.c | 98 +++++++++++++++++++++++++-------------------------- - src/bjb-window-base.h | 60 +++++++++++++++---------------- + src/bjb-bijiben.c | 12 ++++++------ + src/bjb-main-view.c | 20 ++++++++++---------- + src/bjb-note-view.c | 18 +++++++++--------- + src/bjb-settings.c | 4 ++-- + src/bjb-tags-view.c | 46 +++++++++++++++++++++++----------------------- + src/bjb-window-base.c | 98 +++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------- + src/bjb-window-base.h | 60 ++++++++++++++++++++++++++++++------------------------------ 8 files changed, 130 insertions(+), 130 deletions(-) commit e939263d7e1567fb7db5b9f5d9bc660fbe6f97c0 @@ -12615,12 +12653,12 @@ Display Notes Color on main view - src/bjb-controller.c | 10 +++++++-- - src/bjb-note-view.c | 51 +++++++++++++++++------------------------- - src/libbiji/biji-note-obj.c | 39 +++++++++++++++++++------------- + src/bjb-controller.c | 10 ++++++++-- + src/bjb-note-view.c | 51 +++++++++++++++++++++------------------------------ + src/libbiji/biji-note-obj.c | 39 ++++++++++++++++++++++++--------------- src/libbiji/biji-note-obj.h | 4 ++-- - src/libbiji/biji-read-tomboy.c | 9 +++++++- - src/libbiji/biji-serialize.c | 9 ++++++-- + src/libbiji/biji-read-tomboy.c | 9 ++++++++- + src/libbiji/biji-serialize.c | 9 +++++++-- 6 files changed, 70 insertions(+), 52 deletions(-) commit 4e0a6e5bbc60882e4e2428e8a4ca147534f3df58 @@ -12629,8 +12667,8 @@ First clean up of window base - src/bjb-bijiben.c | 9 +++--- - src/bjb-window-base.c | 86 +++++++++++++++++++++++++-------------------------- + src/bjb-bijiben.c | 9 ++++----- + src/bjb-window-base.c | 86 ++++++++++++++++++++++++++++++++++++++++++-------------------------------------------- src/bjb-window-base.h | 2 +- 3 files changed, 47 insertions(+), 50 deletions(-) @@ -12640,10 +12678,10 @@ Initial Notes Pixbuf for main view - src/bjb-controller.c | 78 +++++++++++++++++++++++++++++++++++++++++++-------- - src/bjb-main-view.c | 7 +++-- - src/bjb-window-base.c | 45 +---------------------------- - src/bjb-window-base.h | 3 -- + src/bjb-controller.c | 78 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------- + src/bjb-main-view.c | 7 +++++-- + src/bjb-window-base.c | 45 +-------------------------------------------- + src/bjb-window-base.h | 3 --- 4 files changed, 73 insertions(+), 60 deletions(-) commit 48f3d33640e25aa2b2e6fe5f2557985ed7eba08f @@ -12661,8 +12699,8 @@ Fix GtkApplication property for window - src/bjb-window-base.c | 66 +++++++++++++++++++++++++++++++++++++++++++-------- - src/bjb-window-base.h | 17 +++++++++++++ + src/bjb-window-base.c | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------- + src/bjb-window-base.h | 17 +++++++++++++++++ 2 files changed, 73 insertions(+), 10 deletions(-) commit 55f192b7d8638f73645a77951e40ec3edc1df909 @@ -12671,28 +12709,28 @@ Initial move to GdMainView - src/Makefile.am | 18 +- - src/bjb-controller.c | 358 ++++++++++++++++ - src/bjb-controller.h | 86 ++++ - src/bjb-main-view.c | 673 +++++++++-------------------- - src/bjb-toggle-pixbuf-renderer.c | 198 --------- - src/bjb-toggle-pixbuf-renderer.h | 75 ---- + src/Makefile.am | 18 ++- + src/bjb-controller.c | 358 +++++++++++++++++++++++++++++++++++++++++++++ + src/bjb-controller.h | 86 +++++++++++ + src/bjb-main-view.c | 673 ++++++++++++++++++++++++------------------------------------------------------------ + src/bjb-toggle-pixbuf-renderer.c | 198 ------------------------- + src/bjb-toggle-pixbuf-renderer.h | 75 ---------- src/libbiji/biji-note-obj.c | 6 + src/libbiji/biji-note-obj.h | 1 + - src/widgets/bjb-view-mode-button.c | 188 +++++++++ - src/widgets/bjb-view-mode-button.h | 68 +++ - src/widgets/gd-main-icon-view.c | 203 +++++++++ - src/widgets/gd-main-icon-view.h | 74 ++++ - src/widgets/gd-main-list-view.c | 224 ++++++++++ - src/widgets/gd-main-list-view.h | 80 ++++ - src/widgets/gd-main-view-generic.c | 154 +++++++ - src/widgets/gd-main-view-generic.h | 106 +++++ - src/widgets/gd-main-view.c | 725 ++++++++++++++++++++++++++++++++ - src/widgets/gd-main-view.h | 93 ++++ - src/widgets/gd-toggle-pixbuf-renderer.c | 198 +++++++++ - src/widgets/gd-toggle-pixbuf-renderer.h | 75 ++++ - src/widgets/gd-two-lines-renderer.c | 528 +++++++++++++++++++++++ - src/widgets/gd-two-lines-renderer.h | 75 ++++ + src/widgets/bjb-view-mode-button.c | 188 ++++++++++++++++++++++++ + src/widgets/bjb-view-mode-button.h | 68 +++++++++ + src/widgets/gd-main-icon-view.c | 203 ++++++++++++++++++++++++++ + src/widgets/gd-main-icon-view.h | 74 ++++++++++ + src/widgets/gd-main-list-view.c | 224 ++++++++++++++++++++++++++++ + src/widgets/gd-main-list-view.h | 80 ++++++++++ + src/widgets/gd-main-view-generic.c | 154 ++++++++++++++++++++ + src/widgets/gd-main-view-generic.h | 106 ++++++++++++++ + src/widgets/gd-main-view.c | 725 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/widgets/gd-main-view.h | 93 ++++++++++++ + src/widgets/gd-toggle-pixbuf-renderer.c | 198 +++++++++++++++++++++++++ + src/widgets/gd-toggle-pixbuf-renderer.h | 75 ++++++++++ + src/widgets/gd-two-lines-renderer.c | 528 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/widgets/gd-two-lines-renderer.h | 75 ++++++++++ 22 files changed, 3447 insertions(+), 759 deletions(-) commit 827739ad61c3c35a67443bc0c1de94701673f9d3 @@ -12710,90 +12748,90 @@ Usable proto - AUTHORS | 68 ++ - COPYING | 675 +++++++++++++++ + AUTHORS | 68 +++++ + COPYING | 675 +++++++++++++++++++++++++++++++++++++++++++++++++ ChangeLog | 9 + - Makefile.am | 32 + + Makefile.am | 32 +++ NEWS | 0 - TODO | 21 + - autogen.sh | 20 + - configure.ac | 60 ++ - data/Makefile.am | 22 + - data/bijiben.desktop.in | 16 + - data/bijiben.desktop.in.in | 16 + - data/icons/Makefile.am | 82 ++ + TODO | 21 ++ + autogen.sh | 20 ++ + configure.ac | 60 +++++ + data/Makefile.am | 22 ++ + data/bijiben.desktop.in | 16 ++ + data/bijiben.desktop.in.in | 16 ++ + data/icons/Makefile.am | 82 ++++++ data/icons/hicolor_actions_48x48_note.png | Bin 0 -> 1853 bytes - data/icons/hicolor_actions_scalable_note.svg | 136 +++ + data/icons/hicolor_actions_scalable_note.svg | 136 ++++++++++ data/icons/hicolor_apps_16x16_bijiben.png | Bin 0 -> 593 bytes data/icons/hicolor_apps_22x22_bijiben.png | Bin 0 -> 852 bytes data/icons/hicolor_apps_24x24_bijiben.png | Bin 0 -> 966 bytes data/icons/hicolor_apps_32x32_bijiben.png | Bin 0 -> 1282 bytes data/icons/hicolor_apps_48x48_bijiben.png | Bin 0 -> 2325 bytes - data/icons/hicolor_apps_scalable_bijiben.svg | 160 ++++ - data/org.gnome.bijiben.gschema.xml.in | 19 + + data/icons/hicolor_apps_scalable_bijiben.svg | 160 ++++++++++++ + data/org.gnome.bijiben.gschema.xml.in | 19 ++ help/C/figures/bijiben-note.png | Bin 0 -> 14532 bytes - help/C/index.page | 23 + + help/C/index.page | 23 ++ help/Makefile.am | 10 + po/ChangeLog | 0 po/LINGUAS | 2 + po/POTFILES.in | 3 + - src/Makefile.am | 88 ++ - src/bjb-app-menu.c | 142 ++++ + src/Makefile.am | 88 +++++++ + src/bjb-app-menu.c | 142 +++++++++++ src/bjb-app-menu.h | 14 + - src/bjb-bijiben.c | 229 +++++ - src/bjb-bijiben.h | 72 ++ + src/bjb-bijiben.c | 229 +++++++++++++++++ + src/bjb-bijiben.h | 72 ++++++ src/bjb-debug.c | 5 + src/bjb-debug.h | 8 + - src/bjb-main-view.c | 984 +++++++++++++++++++++ - src/bjb-main-view.h | 54 ++ - src/bjb-main.c | 44 + - src/bjb-note-view.c | 1013 ++++++++++++++++++++++ - src/bjb-note-view.h | 48 ++ - src/bjb-rename-note.c | 48 ++ + src/bjb-main-view.c | 984 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/bjb-main-view.h | 54 ++++ + src/bjb-main.c | 44 ++++ + src/bjb-note-view.c | 1013 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/bjb-note-view.h | 48 ++++ + src/bjb-rename-note.c | 48 ++++ src/bjb-rename-note.h | 8 + - src/bjb-selection-panel.c | 27 + + src/bjb-selection-panel.c | 27 ++ src/bjb-selection-panel.h | 10 + - src/bjb-settings.c | 213 +++++ - src/bjb-settings.h | 47 + - src/bjb-share.c | 39 + + src/bjb-settings.c | 213 ++++++++++++++++ + src/bjb-settings.h | 47 ++++ + src/bjb-share.c | 39 +++ src/bjb-share.h | 9 + - src/bjb-tags-view.c | 609 +++++++++++++ - src/bjb-tags-view.h | 56 ++ - src/bjb-toggle-pixbuf-renderer.c | 198 +++++ - src/bjb-toggle-pixbuf-renderer.h | 75 ++ - src/bjb-tracker.c | 318 +++++++ - src/bjb-tracker.h | 24 + - src/bjb-window-base.c | 333 ++++++++ - src/bjb-window-base.h | 67 ++ - src/bjb-zeitgeist-dataprovider.c | 54 ++ + src/bjb-tags-view.c | 609 ++++++++++++++++++++++++++++++++++++++++++++ + src/bjb-tags-view.h | 56 ++++ + src/bjb-toggle-pixbuf-renderer.c | 198 +++++++++++++++ + src/bjb-toggle-pixbuf-renderer.h | 75 ++++++ + src/bjb-tracker.c | 318 +++++++++++++++++++++++ + src/bjb-tracker.h | 24 ++ + src/bjb-window-base.c | 333 ++++++++++++++++++++++++ + src/bjb-window-base.h | 67 +++++ + src/bjb-zeitgeist-dataprovider.c | 54 ++++ src/bjb-zeitgeist-dataprovider.h | 3 + src/libbiji/Makefile.am | 0 - src/libbiji/biji-note-book.c | 366 ++++++++ - src/libbiji/biji-note-book.h | 59 ++ - src/libbiji/biji-note-buffer.c | 1179 ++++++++++++++++++++++++++ - src/libbiji/biji-note-buffer.h | 70 ++ - src/libbiji/biji-note-editor.c | 258 ++++++ - src/libbiji/biji-note-editor.h | 49 ++ - src/libbiji/biji-note-id.c | 153 ++++ - src/libbiji/biji-note-id.h | 61 ++ - src/libbiji/biji-note-obj.c | 532 ++++++++++++ - src/libbiji/biji-note-obj.h | 106 +++ - src/libbiji/biji-note-tag.c | 176 ++++ - src/libbiji/biji-note-tag.h | 67 ++ - src/libbiji/biji-note-watcher.c | 77 ++ - src/libbiji/biji-note-watcher.h | 21 + - src/libbiji/biji-read-tomboy.c | 722 ++++++++++++++++ - src/libbiji/biji-read-tomboy.h | 20 + - src/libbiji/biji-serialize.c | 489 +++++++++++ - src/libbiji/biji-serialize.h | 25 + - src/libbiji/libbiji.c | 459 ++++++++++ - src/libbiji/libbiji.h | 135 +++ - src/utils/bjb-icons-colors.c | 36 + + src/libbiji/biji-note-book.c | 366 +++++++++++++++++++++++++++ + src/libbiji/biji-note-book.h | 59 +++++ + src/libbiji/biji-note-buffer.c | 1179 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/biji-note-buffer.h | 70 +++++ + src/libbiji/biji-note-editor.c | 258 +++++++++++++++++++ + src/libbiji/biji-note-editor.h | 49 ++++ + src/libbiji/biji-note-id.c | 153 +++++++++++ + src/libbiji/biji-note-id.h | 61 +++++ + src/libbiji/biji-note-obj.c | 532 ++++++++++++++++++++++++++++++++++++++ + src/libbiji/biji-note-obj.h | 106 ++++++++ + src/libbiji/biji-note-tag.c | 176 +++++++++++++ + src/libbiji/biji-note-tag.h | 67 +++++ + src/libbiji/biji-note-watcher.c | 77 ++++++ + src/libbiji/biji-note-watcher.h | 21 ++ + src/libbiji/biji-read-tomboy.c | 722 ++++++++++++++++++++++++++++++++++++++++++++++++++++ + src/libbiji/biji-read-tomboy.h | 20 ++ + src/libbiji/biji-serialize.c | 489 +++++++++++++++++++++++++++++++++++ + src/libbiji/biji-serialize.h | 25 ++ + src/libbiji/libbiji.c | 459 +++++++++++++++++++++++++++++++++ + src/libbiji/libbiji.h | 135 ++++++++++ + src/utils/bjb-icons-colors.c | 36 +++ src/utils/bjb-icons-colors.h | 12 + - src/widgets/bjb-menu-tool.c | 603 +++++++++++++ - src/widgets/bjb-menu-tool.h | 45 + - src/widgets/gd-main-toolbar.c | 418 +++++++++ - src/widgets/gd-main-toolbar.h | 96 +++ + src/widgets/bjb-menu-tool.c | 603 +++++++++++++++++++++++++++++++++++++++++++ + src/widgets/bjb-menu-tool.h | 45 ++++ + src/widgets/gd-main-toolbar.c | 418 ++++++++++++++++++++++++++++++ + src/widgets/gd-main-toolbar.h | 96 +++++++ 84 files changed, 12447 insertions(+) commit bdc8b05108e17d25a4e3fed3ea3ef3d768579c42 diff -Nru bijiben-3.14.0/config.guess bijiben-3.14.1/config.guess --- bijiben-3.14.0/config.guess 2014-09-22 21:23:54.000000000 +0000 +++ bijiben-3.14.1/config.guess 2014-10-13 19:38:37.000000000 +0000 @@ -1,10 +1,8 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, -# 2011, 2012, 2013 Free Software Foundation, Inc. +# Copyright 1992-2014 Free Software Foundation, Inc. -timestamp='2012-12-29' +timestamp='2014-03-23' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -26,7 +24,7 @@ # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # -# Originally written by Per Bothner. +# Originally written by Per Bothner. # # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD @@ -52,9 +50,7 @@ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, -2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, -2012, 2013 Free Software Foundation, Inc. +Copyright 1992-2014 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -136,6 +132,27 @@ UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown +case "${UNAME_SYSTEM}" in +Linux|GNU|GNU/*) + # If the system lacks a compiler, then just pick glibc. + # We could probably try harder. + LIBC=gnu + + eval $set_cc_for_build + cat <<-EOF > $dummy.c + #include + #if defined(__UCLIBC__) + LIBC=uclibc + #elif defined(__dietlibc__) + LIBC=dietlibc + #else + LIBC=gnu + #endif + EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'` + ;; +esac + # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in @@ -809,7 +826,7 @@ *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; - i*:MSYS*:*) + *:MSYS*:*) echo ${UNAME_MACHINE}-pc-msys exit ;; i*:windows32*:*) @@ -857,21 +874,21 @@ exit ;; *:GNU:*:*) # the GNU system - echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland - echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu + echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; aarch64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in @@ -884,59 +901,54 @@ EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 - if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi - echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} + if test "$?" = 0 ; then LIBC="gnulibc1" ; fi + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + arc:Linux:*:* | arceb:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then - echo ${UNAME_MACHINE}-unknown-linux-gnueabi + echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi else - echo ${UNAME_MACHINE}-unknown-linux-gnueabihf + echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf fi fi exit ;; avr32*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; cris:Linux:*:*) - echo ${UNAME_MACHINE}-axis-linux-gnu + echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; crisv32:Linux:*:*) - echo ${UNAME_MACHINE}-axis-linux-gnu + echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; frv:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; hexagon:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; i*86:Linux:*:*) - LIBC=gnu - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #ifdef __dietlibc__ - LIBC=dietlibc - #endif -EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` - echo "${UNAME_MACHINE}-pc-linux-${LIBC}" + echo ${UNAME_MACHINE}-pc-linux-${LIBC} exit ;; ia64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m32r*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m68*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build @@ -955,54 +967,63 @@ #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } ;; - or32:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + openrisc*:Linux:*:*) + echo or1k-unknown-linux-${LIBC} + exit ;; + or32:Linux:*:* | or1k*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; padre:Linux:*:*) - echo sparc-unknown-linux-gnu + echo sparc-unknown-linux-${LIBC} exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-gnu + echo hppa64-unknown-linux-${LIBC} exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in - PA7*) echo hppa1.1-unknown-linux-gnu ;; - PA8*) echo hppa2.0-unknown-linux-gnu ;; - *) echo hppa-unknown-linux-gnu ;; + PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; + PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; + *) echo hppa-unknown-linux-${LIBC} ;; esac exit ;; ppc64:Linux:*:*) - echo powerpc64-unknown-linux-gnu + echo powerpc64-unknown-linux-${LIBC} exit ;; ppc:Linux:*:*) - echo powerpc-unknown-linux-gnu + echo powerpc-unknown-linux-${LIBC} + exit ;; + ppc64le:Linux:*:*) + echo powerpc64le-unknown-linux-${LIBC} + exit ;; + ppcle:Linux:*:*) + echo powerpcle-unknown-linux-${LIBC} exit ;; s390:Linux:*:* | s390x:Linux:*:*) - echo ${UNAME_MACHINE}-ibm-linux + echo ${UNAME_MACHINE}-ibm-linux-${LIBC} exit ;; sh64*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sh*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; tile*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; vax:Linux:*:*) - echo ${UNAME_MACHINE}-dec-linux-gnu + echo ${UNAME_MACHINE}-dec-linux-${LIBC} exit ;; x86_64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; xtensa*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. @@ -1235,19 +1256,31 @@ exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown - case $UNAME_PROCESSOR in - i386) - eval $set_cc_for_build - if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then - if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ - (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ - grep IS_64BIT_ARCH >/dev/null - then - UNAME_PROCESSOR="x86_64" - fi - fi ;; - unknown) UNAME_PROCESSOR=powerpc ;; - esac + eval $set_cc_for_build + if test "$UNAME_PROCESSOR" = unknown ; then + UNAME_PROCESSOR=powerpc + fi + if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + case $UNAME_PROCESSOR in + i386) UNAME_PROCESSOR=x86_64 ;; + powerpc) UNAME_PROCESSOR=powerpc64 ;; + esac + fi + fi + elif test "$UNAME_PROCESSOR" = i386 ; then + # Avoid executing cc on OS X 10.9, as it ships with a stub + # that puts up a graphical alert prompting to install + # developer tools. Any system running Mac OS X 10.7 or + # later (Darwin 11 and later) is required to have a 64-bit + # processor. This is not true of the ARM version of Darwin + # that Apple uses in portable devices. + UNAME_PROCESSOR=x86_64 + fi echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) @@ -1338,154 +1371,6 @@ exit ;; esac -eval $set_cc_for_build -cat >$dummy.c < -# include -#endif -main () -{ -#if defined (sony) -#if defined (MIPSEB) - /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, - I don't know.... */ - printf ("mips-sony-bsd\n"); exit (0); -#else -#include - printf ("m68k-sony-newsos%s\n", -#ifdef NEWSOS4 - "4" -#else - "" -#endif - ); exit (0); -#endif -#endif - -#if defined (__arm) && defined (__acorn) && defined (__unix) - printf ("arm-acorn-riscix\n"); exit (0); -#endif - -#if defined (hp300) && !defined (hpux) - printf ("m68k-hp-bsd\n"); exit (0); -#endif - -#if defined (NeXT) -#if !defined (__ARCHITECTURE__) -#define __ARCHITECTURE__ "m68k" -#endif - int version; - version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; - if (version < 4) - printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); - else - printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); - exit (0); -#endif - -#if defined (MULTIMAX) || defined (n16) -#if defined (UMAXV) - printf ("ns32k-encore-sysv\n"); exit (0); -#else -#if defined (CMU) - printf ("ns32k-encore-mach\n"); exit (0); -#else - printf ("ns32k-encore-bsd\n"); exit (0); -#endif -#endif -#endif - -#if defined (__386BSD__) - printf ("i386-pc-bsd\n"); exit (0); -#endif - -#if defined (sequent) -#if defined (i386) - printf ("i386-sequent-dynix\n"); exit (0); -#endif -#if defined (ns32000) - printf ("ns32k-sequent-dynix\n"); exit (0); -#endif -#endif - -#if defined (_SEQUENT_) - struct utsname un; - - uname(&un); - - if (strncmp(un.version, "V2", 2) == 0) { - printf ("i386-sequent-ptx2\n"); exit (0); - } - if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ - printf ("i386-sequent-ptx1\n"); exit (0); - } - printf ("i386-sequent-ptx\n"); exit (0); - -#endif - -#if defined (vax) -# if !defined (ultrix) -# include -# if defined (BSD) -# if BSD == 43 - printf ("vax-dec-bsd4.3\n"); exit (0); -# else -# if BSD == 199006 - printf ("vax-dec-bsd4.3reno\n"); exit (0); -# else - printf ("vax-dec-bsd\n"); exit (0); -# endif -# endif -# else - printf ("vax-dec-bsd\n"); exit (0); -# endif -# else - printf ("vax-dec-ultrix\n"); exit (0); -# endif -#endif - -#if defined (alliant) && defined (i860) - printf ("i860-alliant-bsd\n"); exit (0); -#endif - - exit (1); -} -EOF - -$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && - { echo "$SYSTEM_NAME"; exit; } - -# Apollos put the system type in the environment. - -test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } - -# Convex versions that predate uname can use getsysinfo(1) - -if [ -x /usr/convex/getsysinfo ] -then - case `getsysinfo -f cpu_type` in - c1*) - echo c1-convex-bsd - exit ;; - c2*) - if getsysinfo -f scalar_acc - then echo c32-convex-bsd - else echo c2-convex-bsd - fi - exit ;; - c34*) - echo c34-convex-bsd - exit ;; - c38*) - echo c38-convex-bsd - exit ;; - c4*) - echo c4-convex-bsd - exit ;; - esac -fi - cat >&2 <>confdefs.h <<_ACEOF @@ -2948,7 +2948,7 @@ # Define the identity of the package. PACKAGE='bijiben' - VERSION='3.14.0' + VERSION='3.14.1' cat >>confdefs.h <<_ACEOF @@ -15368,7 +15368,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by bijiben $as_me 3.14.0, which was +This file was extended by bijiben $as_me 3.14.1, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -15434,7 +15434,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -bijiben config.status 3.14.0 +bijiben config.status 3.14.1 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff -Nru bijiben-3.14.0/configure.ac bijiben-3.14.1/configure.ac --- bijiben-3.14.0/configure.ac 2014-09-22 21:23:23.000000000 +0000 +++ bijiben-3.14.1/configure.ac 2014-10-13 19:37:53.000000000 +0000 @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(bijiben, 3.14.0) +AC_INIT(bijiben, 3.14.1) m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) dnl _FOR_DOC diff -Nru bijiben-3.14.0/data/bijiben.desktop.in bijiben-3.14.1/data/bijiben.desktop.in --- bijiben-3.14.0/data/bijiben.desktop.in 2014-09-22 21:23:57.000000000 +0000 +++ bijiben-3.14.1/data/bijiben.desktop.in 2014-10-13 19:38:39.000000000 +0000 @@ -14,4 +14,4 @@ X-GNOME-Bugzilla-Bugzilla=GNOME X-GNOME-Bugzilla-Product=bijiben X-GNOME-Bugzilla-Component=main -X-GNOME-Bugzilla-Version=3.14.0 +X-GNOME-Bugzilla-Version=3.14.1 diff -Nru bijiben-3.14.0/debian/changelog bijiben-3.14.1/debian/changelog --- bijiben-3.14.0/debian/changelog 2014-09-29 06:19:13.000000000 +0000 +++ bijiben-3.14.1/debian/changelog 2014-10-19 08:10:38.000000000 +0000 @@ -1,8 +1,14 @@ -bijiben (3.14.0-1~utopic1) utopic; urgency=medium +bijiben (3.14.1-1~utopic1) utopic; urgency=medium - * Copied from debian + * Sync from Debian - -- Rico Tzschichholz Mon, 29 Sep 2014 08:19:13 +0200 + -- Tim Lunn Sun, 19 Oct 2014 19:10:24 +1100 + +bijiben (3.14.1-1) unstable; urgency=medium + + * New upstream release. + + -- Vincent Cheng Mon, 13 Oct 2014 23:35:22 -0700 bijiben (3.14.0-1) unstable; urgency=medium diff -Nru bijiben-3.14.0/libgd/libgd/gd-main-icon-view.c bijiben-3.14.1/libgd/libgd/gd-main-icon-view.c --- bijiben-3.14.0/libgd/libgd/gd-main-icon-view.c 2014-02-28 21:55:55.000000000 +0000 +++ bijiben-3.14.1/libgd/libgd/gd-main-icon-view.c 2014-10-13 19:05:52.000000000 +0000 @@ -26,6 +26,7 @@ #include #include +#include #define VIEW_ITEM_WIDTH 140 #define VIEW_ITEM_WRAP_WIDTH 128 @@ -34,6 +35,7 @@ struct _GdMainIconViewPrivate { GtkCellRenderer *pixbuf_cell; + GtkCellRenderer *text_cell; gboolean selection_mode; }; @@ -56,6 +58,40 @@ } static void +set_attributes_from_model (GdMainIconView *self) +{ + GtkTreeModel *model = gtk_icon_view_get_model (GTK_ICON_VIEW (self)); + GtkCellLayout *layout = GTK_CELL_LAYOUT (self); + GType icon_gtype; + + if (!model) + return; + + gtk_cell_layout_clear_attributes (layout, self->priv->pixbuf_cell); + gtk_cell_layout_clear_attributes (layout, self->priv->text_cell); + + gtk_cell_layout_add_attribute (layout, self->priv->pixbuf_cell, + "active", GD_MAIN_COLUMN_SELECTED); + gtk_cell_layout_add_attribute (layout, self->priv->pixbuf_cell, + "pulse", GD_MAIN_COLUMN_PULSE); + + icon_gtype = gtk_tree_model_get_column_type (model, GD_MAIN_COLUMN_ICON); + if (icon_gtype == GDK_TYPE_PIXBUF) + gtk_cell_layout_add_attribute (layout, self->priv->pixbuf_cell, + "pixbuf", GD_MAIN_COLUMN_ICON); + else if (icon_gtype == CAIRO_GOBJECT_TYPE_SURFACE) + gtk_cell_layout_add_attribute (layout, self->priv->pixbuf_cell, + "surface", GD_MAIN_COLUMN_ICON); + else + g_assert_not_reached (); + + gtk_cell_layout_add_attribute (layout, self->priv->text_cell, + "text", GD_MAIN_COLUMN_PRIMARY_TEXT); + gtk_cell_layout_add_attribute (layout, self->priv->text_cell, + "line-two", GD_MAIN_COLUMN_SECONDARY_TEXT); +} + +static void gd_main_icon_view_drag_data_get (GtkWidget *widget, GdkDragContext *drag_context, GtkSelectionData *data, @@ -99,17 +135,11 @@ g_object_set (cell, "xalign", 0.5, "yalign", 0.5, + "follow-state", TRUE, NULL); - gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (self), cell, FALSE); - gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (self), cell, - "active", GD_MAIN_COLUMN_SELECTED); - gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (self), cell, - "pixbuf", GD_MAIN_COLUMN_ICON); - gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (self), cell, - "pulse", GD_MAIN_COLUMN_PULSE); - cell = gd_two_lines_renderer_new (); + self->priv->text_cell = cell = gd_two_lines_renderer_new (); g_object_set (cell, "xalign", 0.5, "alignment", PANGO_ALIGN_CENTER, @@ -118,10 +148,8 @@ "text-lines", 3, NULL); gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (self), cell, FALSE); - gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (self), cell, - "text", GD_MAIN_COLUMN_PRIMARY_TEXT); - gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (self), cell, - "line-two", GD_MAIN_COLUMN_SECONDARY_TEXT); + + set_attributes_from_model (self); gtk_icon_view_enable_model_drag_source (GTK_ICON_VIEW (self), GDK_BUTTON1_MASK, @@ -334,6 +362,9 @@ gd_main_icon_view_init (GdMainIconView *self) { self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self, GD_TYPE_MAIN_ICON_VIEW, GdMainIconViewPrivate); + + g_signal_connect (self, "notify::model", + G_CALLBACK (set_attributes_from_model), NULL); } static GtkTreePath * diff -Nru bijiben-3.14.0/libgd/libgd/gd-main-list-view.c bijiben-3.14.1/libgd/libgd/gd-main-list-view.c --- bijiben-3.14.0/libgd/libgd/gd-main-list-view.c 2014-02-28 21:55:55.000000000 +0000 +++ bijiben-3.14.1/libgd/libgd/gd-main-list-view.c 2014-10-13 19:05:52.000000000 +0000 @@ -23,11 +23,14 @@ #include "gd-main-view-generic.h" #include "gd-two-lines-renderer.h" +#include #include struct _GdMainListViewPrivate { GtkTreeViewColumn *tree_col; + GtkCellRenderer *pixbuf_cell; GtkCellRenderer *selection_cell; + GtkCellRenderer *text_cell; gboolean selection_mode; }; @@ -53,6 +56,39 @@ } static void +set_attributes_from_model (GdMainListView *self) +{ + GtkTreeModel *model = gtk_tree_view_get_model (GTK_TREE_VIEW (self)); + GType icon_gtype; + + if (!model) + return; + + gtk_tree_view_column_clear_attributes (self->priv->tree_col, self->priv->pixbuf_cell); + gtk_tree_view_column_clear_attributes (self->priv->tree_col, self->priv->selection_cell); + gtk_tree_view_column_clear_attributes (self->priv->tree_col, self->priv->text_cell); + + + gtk_tree_view_column_add_attribute (self->priv->tree_col, self->priv->selection_cell, + "active", GD_MAIN_COLUMN_SELECTED); + + icon_gtype = gtk_tree_model_get_column_type (model, GD_MAIN_COLUMN_ICON); + if (icon_gtype == GDK_TYPE_PIXBUF) + gtk_tree_view_column_add_attribute (self->priv->tree_col, self->priv->pixbuf_cell, + "pixbuf", GD_MAIN_COLUMN_ICON); + else if (icon_gtype == CAIRO_GOBJECT_TYPE_SURFACE) + gtk_tree_view_column_add_attribute (self->priv->tree_col, self->priv->pixbuf_cell, + "surface", GD_MAIN_COLUMN_ICON); + else + g_assert_not_reached (); + + gtk_tree_view_column_add_attribute (self->priv->tree_col, self->priv->text_cell, + "text", GD_MAIN_COLUMN_PRIMARY_TEXT); + gtk_tree_view_column_add_attribute (self->priv->tree_col, self->priv->text_cell, + "line-two", GD_MAIN_COLUMN_SECONDARY_TEXT); +} + +static void gd_main_list_view_drag_data_get (GtkWidget *widget, GdkDragContext *drag_context, GtkSelectionData *data, @@ -106,10 +142,8 @@ "xalign", 1.0, NULL); gtk_tree_view_column_pack_start (self->priv->tree_col, cell, FALSE); - gtk_tree_view_column_add_attribute (self->priv->tree_col, cell, - "active", GD_MAIN_COLUMN_SELECTED); - cell = gtk_cell_renderer_pixbuf_new (); + self->priv->pixbuf_cell = cell = gtk_cell_renderer_pixbuf_new (); g_object_set (cell, "xalign", 0.5, "yalign", 0.5, @@ -117,10 +151,8 @@ "ypad", 2, NULL); gtk_tree_view_column_pack_start (self->priv->tree_col, cell, FALSE); - gtk_tree_view_column_add_attribute (self->priv->tree_col, cell, - "pixbuf", GD_MAIN_COLUMN_ICON); - cell = gd_two_lines_renderer_new (); + self->priv->text_cell = cell = gd_two_lines_renderer_new (); g_object_set (cell, "xalign", 0.0, "wrap-mode", PANGO_WRAP_WORD_CHAR, @@ -128,10 +160,8 @@ "text-lines", 2, NULL); gtk_tree_view_column_pack_start (self->priv->tree_col, cell, TRUE); - gtk_tree_view_column_add_attribute (self->priv->tree_col, cell, - "text", GD_MAIN_COLUMN_PRIMARY_TEXT); - gtk_tree_view_column_add_attribute (self->priv->tree_col, cell, - "line-two", GD_MAIN_COLUMN_SECONDARY_TEXT); + + set_attributes_from_model (self); gtk_tree_view_enable_model_drag_source (GTK_TREE_VIEW (self), GDK_BUTTON1_MASK, @@ -181,6 +211,9 @@ gd_main_list_view_init (GdMainListView *self) { self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self, GD_TYPE_MAIN_LIST_VIEW, GdMainListViewPrivate); + + g_signal_connect (self, "notify::model", + G_CALLBACK (set_attributes_from_model), NULL); } static GtkTreePath * diff -Nru bijiben-3.14.0/libgd/libgd/gd-main-view.c bijiben-3.14.1/libgd/libgd/gd-main-view.c --- bijiben-3.14.0/libgd/libgd/gd-main-view.c 2014-02-28 21:55:55.000000000 +0000 +++ bijiben-3.14.1/libgd/libgd/gd-main-view.c 2014-10-13 19:05:52.000000000 +0000 @@ -25,6 +25,8 @@ #include "gd-main-icon-view.h" #include "gd-main-list-view.h" +#include + #define MAIN_VIEW_TYPE_INITIAL -1 #define MAIN_VIEW_DND_ICON_OFFSET 20 #define MAIN_VIEW_RUBBERBAND_SELECT_TRIGGER_LENGTH 32 @@ -231,15 +233,14 @@ g_object_class_install_properties (oclass, NUM_PROPERTIES, properties); } -static GdkPixbuf * +static cairo_surface_t * gd_main_view_get_counter_icon (GdMainView *self, - GdkPixbuf *base, + cairo_surface_t *base, gint number) { GtkStyleContext *context; cairo_t *cr, *emblem_cr; cairo_surface_t *surface, *emblem_surface; - GdkPixbuf *retval; gint width, height; gint layout_width, layout_height; gint emblem_size; @@ -255,18 +256,18 @@ gtk_style_context_save (context); gtk_style_context_add_class (context, "documents-counter"); - width = gdk_pixbuf_get_width (base); - height = gdk_pixbuf_get_height (base); + width = cairo_image_surface_get_width (base); + height = cairo_image_surface_get_height (base); - surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32, - width, height); + surface = cairo_surface_create_similar (base, CAIRO_CONTENT_COLOR_ALPHA, + width, height); cr = cairo_create (surface); - gdk_cairo_set_source_pixbuf (cr, base, 0, 0); + cairo_set_source_surface (cr, base, 0, 0); cairo_paint (cr); emblem_size = MIN (width / 2, height / 2); - emblem_surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32, - emblem_size, emblem_size); + emblem_surface = cairo_surface_create_similar (base, CAIRO_CONTENT_COLOR_ALPHA, + emblem_size, emblem_size); emblem_cr = cairo_create (emblem_surface); gtk_render_background (context, emblem_cr, 0, 0, emblem_size, emblem_size); @@ -315,15 +316,10 @@ cairo_paint (cr); cairo_destroy (cr); - retval = gdk_pixbuf_get_from_surface (surface, - 0, 0, - width, height); - cairo_surface_destroy (emblem_surface); - cairo_surface_destroy (surface); gtk_style_context_restore (context); - return retval; + return surface; } static GdMainViewGeneric * @@ -341,23 +337,57 @@ gboolean value) { GtkTreeModel *model; - GtkTreeModelFilter *filter; - GtkTreeIter my_iter, child_iter; + GtkTreeIter my_iter; + GtkTreePath *path; model = self->priv->model; my_iter = *iter; - while (GTK_IS_TREE_MODEL_FILTER (model)) + while (GTK_IS_TREE_MODEL_FILTER (model) || + GTK_IS_TREE_MODEL_SORT (model)) { - filter = GTK_TREE_MODEL_FILTER (model); - gtk_tree_model_filter_convert_iter_to_child_iter (filter, &child_iter, &my_iter); - model = gtk_tree_model_filter_get_model (filter); + GtkTreeIter child_iter; + + if (GTK_IS_TREE_MODEL_FILTER (model)) + { + GtkTreeModelFilter *filter; + + filter = GTK_TREE_MODEL_FILTER (model); + gtk_tree_model_filter_convert_iter_to_child_iter (filter, &child_iter, &my_iter); + model = gtk_tree_model_filter_get_model (filter); + } + else + { + GtkTreeModelSort *sort; + + sort = GTK_TREE_MODEL_SORT (model); + gtk_tree_model_sort_convert_iter_to_child_iter (sort, &child_iter, &my_iter); + model = gtk_tree_model_sort_get_model (sort); + } + my_iter = child_iter; } - gtk_list_store_set (GTK_LIST_STORE (model), &my_iter, - GD_MAIN_COLUMN_SELECTED, value, - -1); + if (GTK_IS_LIST_STORE (model)) + { + gtk_list_store_set (GTK_LIST_STORE (model), &my_iter, + GD_MAIN_COLUMN_SELECTED, value, + -1); + } + else + { + gtk_tree_store_set (GTK_TREE_STORE (model), &my_iter, + GD_MAIN_COLUMN_SELECTED, value, + -1); + } + + /* And tell the view model that something changed */ + path = gtk_tree_model_get_path (self->priv->model, iter); + if (path) + { + gtk_tree_model_row_changed (self->priv->model, path, iter); + gtk_tree_path_free (path); + } } static void @@ -603,6 +633,11 @@ { if (!self->priv->selection_mode) g_signal_emit (self, signals[SELECTION_MODE_REQUEST], 0); + if (!self->priv->selection_mode) + { + res = FALSE; + goto out; + } start_path = gtk_tree_path_copy (self->priv->rubberband_select_first_path); end_path = gtk_tree_path_copy (self->priv->rubberband_select_last_path); @@ -655,7 +690,12 @@ if (event_triggers_selection_mode (event)) { g_signal_emit (self, signals[SELECTION_MODE_REQUEST], 0); - selection_mode = TRUE; + if (!self->priv->selection_mode) + { + res = FALSE; + goto out; + } + selection_mode = self->priv->selection_mode; } } @@ -779,6 +819,22 @@ return FALSE; } +static cairo_surface_t * +copy_surface (cairo_surface_t *surface) +{ + cairo_surface_t *copy; + cairo_t *cr; + + copy = cairo_surface_create_similar (surface, CAIRO_CONTENT_COLOR_ALPHA, + cairo_image_surface_get_width (surface), + cairo_image_surface_get_height (surface)); + cr = cairo_create (copy); + cairo_set_source_surface (cr, surface, 0, 0); + cairo_paint (cr); + cairo_destroy (cr); + + return copy; +} static void on_drag_begin (GdMainViewGeneric *generic, @@ -791,41 +847,61 @@ { gboolean res; GtkTreeIter iter; - GdkPixbuf *icon = NULL; + gpointer data; + cairo_surface_t *surface = NULL; GtkTreePath *path; + GType column_gtype; path = gtk_tree_path_new_from_string (self->priv->button_press_item_path); res = gtk_tree_model_get_iter (self->priv->model, &iter, path); if (res) gtk_tree_model_get (self->priv->model, &iter, - GD_MAIN_COLUMN_ICON, &icon, + GD_MAIN_COLUMN_ICON, &data, -1); - if (self->priv->selection_mode && - icon != NULL) + column_gtype = gtk_tree_model_get_column_type (self->priv->model, + GD_MAIN_COLUMN_ICON); + + if (column_gtype == CAIRO_GOBJECT_TYPE_SURFACE) + { + surface = copy_surface (data); + cairo_surface_destroy (data); + } + else if (column_gtype == GDK_TYPE_PIXBUF) + { + surface = gdk_cairo_surface_create_from_pixbuf (data, 1, NULL); + g_object_unref (data); + } + else + g_assert_not_reached (); + + if (self->priv->selection_mode && + surface != NULL) { GList *selection; - GdkPixbuf *counter; + cairo_surface_t *counter; selection = gd_main_view_get_selection (self); if (g_list_length (selection) > 1) { - counter = gd_main_view_get_counter_icon (self, icon, g_list_length (selection)); - g_clear_object (&icon); - icon = counter; + counter = gd_main_view_get_counter_icon (self, surface, g_list_length (selection)); + cairo_surface_destroy (surface); + surface = counter; } if (selection != NULL) g_list_free_full (selection, (GDestroyNotify) gtk_tree_path_free); } - if (icon != NULL) + if (surface != NULL) { - gtk_drag_set_icon_pixbuf (drag_context, icon, - MAIN_VIEW_DND_ICON_OFFSET, MAIN_VIEW_DND_ICON_OFFSET); - g_object_unref (icon); + cairo_surface_set_device_offset (surface, + -MAIN_VIEW_DND_ICON_OFFSET, + -MAIN_VIEW_DND_ICON_OFFSET); + gtk_drag_set_icon_surface (drag_context, surface); + cairo_surface_destroy (surface); } gtk_tree_path_free (path); diff -Nru bijiben-3.14.0/libgd/libgd/gd-main-view-generic.c bijiben-3.14.1/libgd/libgd/gd-main-view-generic.c --- bijiben-3.14.0/libgd/libgd/gd-main-view-generic.c 2014-02-28 21:55:55.000000000 +0000 +++ bijiben-3.14.1/libgd/libgd/gd-main-view-generic.c 2014-10-13 19:05:52.000000000 +0000 @@ -229,10 +229,39 @@ gpointer user_data) { gboolean selection = GPOINTER_TO_INT (user_data); + GtkTreeModel *actual_model; + GtkTreeIter real_iter; - gtk_list_store_set (GTK_LIST_STORE (model), iter, - GD_MAIN_COLUMN_SELECTED, selection, - -1); + if (GTK_IS_TREE_MODEL_FILTER (model)) + { + actual_model = gtk_tree_model_filter_get_model (GTK_TREE_MODEL_FILTER (model)); + gtk_tree_model_filter_convert_iter_to_child_iter (GTK_TREE_MODEL_FILTER (model), + &real_iter, iter); + } + else if (GTK_IS_TREE_MODEL_SORT (model)) + { + actual_model = gtk_tree_model_sort_get_model (GTK_TREE_MODEL_SORT (model)); + gtk_tree_model_sort_convert_iter_to_child_iter (GTK_TREE_MODEL_SORT (model), + &real_iter, iter); + } + else + { + actual_model = model; + real_iter = *iter; + } + + if (GTK_IS_LIST_STORE (actual_model)) + { + gtk_list_store_set (GTK_LIST_STORE (actual_model), &real_iter, + GD_MAIN_COLUMN_SELECTED, selection, + -1); + } + else + { + gtk_tree_store_set (GTK_TREE_STORE (actual_model), &real_iter, + GD_MAIN_COLUMN_SELECTED, selection, + -1); + } return FALSE; } @@ -242,17 +271,7 @@ GtkTreeModel *model, gboolean selection) { - GtkTreeModel *actual_model; - - if (!model) - return; - - if (GTK_IS_TREE_MODEL_FILTER (model)) - actual_model = gtk_tree_model_filter_get_model (GTK_TREE_MODEL_FILTER (model)); - else - actual_model = model; - - gtk_tree_model_foreach (actual_model, + gtk_tree_model_foreach (model, set_selection_foreach, GINT_TO_POINTER (selection)); g_signal_emit (self, signals[VIEW_SELECTION_CHANGED], 0); diff -Nru bijiben-3.14.0/libgd/libgd/gd-tagged-entry.c bijiben-3.14.1/libgd/libgd/gd-tagged-entry.c --- bijiben-3.14.0/libgd/libgd/gd-tagged-entry.c 2014-02-28 21:55:55.000000000 +0000 +++ bijiben-3.14.1/libgd/libgd/gd-tagged-entry.c 2014-10-13 19:05:52.000000000 +0000 @@ -35,7 +35,7 @@ gchar *style; gboolean has_close_button; - GdkPixbuf *close_pixbuf; + cairo_surface_t *close_surface; GtkStateFlags last_button_state; }; @@ -99,28 +99,32 @@ } static void -gd_tagged_entry_tag_ensure_close_pixbuf (GdTaggedEntryTag *tag, - GtkStyleContext *context) +gd_tagged_entry_tag_ensure_close_surface (GdTaggedEntryTag *tag, + GtkStyleContext *context) { GtkIconInfo *info; + GdkPixbuf *pixbuf; gint icon_size; + gint scale_factor; - if (tag->priv->close_pixbuf != NULL) + if (tag->priv->close_surface != NULL) return; gtk_icon_size_lookup (GTK_ICON_SIZE_MENU, &icon_size, NULL); + scale_factor = gtk_widget_get_scale_factor (GTK_WIDGET (tag->priv->entry)); - info = gtk_icon_theme_lookup_icon (gtk_icon_theme_get_default (), - "window-close-symbolic", - icon_size, - GTK_ICON_LOOKUP_GENERIC_FALLBACK); - - tag->priv->close_pixbuf = - gtk_icon_info_load_symbolic_for_context (info, context, - NULL, NULL); + info = gtk_icon_theme_lookup_icon_for_scale (gtk_icon_theme_get_default (), + "window-close-symbolic", + icon_size, scale_factor, + GTK_ICON_LOOKUP_GENERIC_FALLBACK); /* FIXME: we need a fallback icon in case the icon is not found */ + pixbuf = gtk_icon_info_load_symbolic_for_context (info, context, NULL, NULL); + tag->priv->close_surface = gdk_cairo_surface_create_from_pixbuf (pixbuf, scale_factor, tag->priv->window); + + g_object_unref (info); + g_object_unref (pixbuf); } static gint @@ -217,12 +221,14 @@ { GtkStateFlags state = GTK_STATE_FLAG_NORMAL; - if (entry->priv->in_child == tag && - entry->priv->in_child_button) - state |= GTK_STATE_FLAG_PRELIGHT; + if (entry->priv->in_child == tag) + { + if (entry->priv->in_child_button_active) + state |= GTK_STATE_FLAG_ACTIVE; - if (entry->priv->in_child_button_active) - state |= GTK_STATE_FLAG_ACTIVE; + else if (entry->priv->in_child_button) + state |= GTK_STATE_FLAG_PRELIGHT; + } return state; } @@ -258,6 +264,7 @@ GtkStateFlags state; gint layout_width; gint button_width; + gint scale_factor; gd_tagged_entry_tag_ensure_layout (tag, entry); pango_layout_get_pixel_size (tag->priv->layout, &layout_width, NULL); @@ -269,13 +276,17 @@ gtk_style_context_get_border (context, state, &button_border); gtk_style_context_get_margin (context, state, &button_margin); - gd_tagged_entry_tag_ensure_close_pixbuf (tag, context); + gd_tagged_entry_tag_ensure_close_surface (tag, context); g_object_unref (context); button_width = 0; if (entry->priv->button_visible && tag->priv->has_close_button) - button_width = gdk_pixbuf_get_width (tag->priv->close_pixbuf) + BUTTON_INTERNAL_SPACING; + { + scale_factor = gtk_widget_get_scale_factor (GTK_WIDGET (entry)); + button_width = cairo_image_surface_get_width (tag->priv->close_surface) / scale_factor + + BUTTON_INTERNAL_SPACING; + } return layout_width + button_padding.left + button_padding.right + button_border.left + button_border.right + @@ -311,11 +322,13 @@ GtkAllocation background_allocation, layout_allocation, button_allocation; gint width, height, x, y, pix_width, pix_height; gint layout_width, layout_height; + gint scale_factor; GtkBorder padding, border; GtkStateFlags state; width = gdk_window_get_width (tag->priv->window); height = gdk_window_get_height (tag->priv->window); + scale_factor = gdk_window_get_scale_factor (tag->priv->window); state = gd_tagged_entry_tag_get_state (tag, entry); gtk_style_context_get_margin (context, state, &padding); @@ -343,8 +356,8 @@ if (entry->priv->button_visible && tag->priv->has_close_button) { - pix_width = gdk_pixbuf_get_width (tag->priv->close_pixbuf); - pix_height = gdk_pixbuf_get_height (tag->priv->close_pixbuf); + pix_width = cairo_image_surface_get_width (tag->priv->close_surface) / scale_factor; + pix_height = cairo_image_surface_get_height (tag->priv->close_surface) / scale_factor; } else { @@ -392,6 +405,33 @@ return FALSE; } +gboolean +gd_tagged_entry_tag_get_area (GdTaggedEntryTag *tag, + cairo_rectangle_int_t *rect) +{ + GtkStyleContext *context; + GtkAllocation background_allocation; + int window_x, window_y; + GtkAllocation alloc; + + g_return_val_if_fail (GD_IS_TAGGED_ENTRY_TAG (tag), FALSE); + g_return_val_if_fail (rect != NULL, FALSE); + + gdk_window_get_position (tag->priv->window, &window_x, &window_y); + gtk_widget_get_allocation (GTK_WIDGET (tag->priv->entry), &alloc); + context = gd_tagged_entry_tag_get_context (tag, tag->priv->entry); + gd_tagged_entry_tag_get_relative_allocations (tag, tag->priv->entry, context, + &background_allocation, + NULL, NULL); + + rect->x = window_x - alloc.x + background_allocation.x; + rect->y = window_y - alloc.y + background_allocation.y; + rect->width = background_allocation.width; + rect->height = background_allocation.height; + + return TRUE; +} + static void gd_tagged_entry_tag_draw (GdTaggedEntryTag *tag, cairo_t *cr, @@ -439,8 +479,8 @@ */ if (state != tag->priv->last_button_state) { - g_clear_object (&tag->priv->close_pixbuf); - gd_tagged_entry_tag_ensure_close_pixbuf (tag, context); + g_clear_pointer (&tag->priv->close_surface, cairo_surface_destroy); + gd_tagged_entry_tag_ensure_close_surface (tag, context); tag->priv->last_button_state = state; } @@ -452,9 +492,9 @@ button_allocation.x, button_allocation.y, button_allocation.width, button_allocation.height); - gtk_render_icon (context, cr, - tag->priv->close_pixbuf, - button_allocation.x, button_allocation.y); + gtk_render_icon_surface (context, cr, + tag->priv->close_surface, + button_allocation.x, button_allocation.y); done: cairo_restore (cr); @@ -921,7 +961,7 @@ gd_tagged_entry_tag_unrealize (tag); g_clear_object (&priv->layout); - g_clear_object (&priv->close_pixbuf); + g_clear_pointer (&priv->close_surface, cairo_surface_destroy); g_free (priv->label); g_free (priv->style); @@ -1020,11 +1060,11 @@ self->priv->tags = g_list_insert (self->priv->tags, g_object_ref (tag), position); + if (gtk_widget_get_realized (GTK_WIDGET (self))) + gd_tagged_entry_tag_realize (tag, self); + if (gtk_widget_get_mapped (GTK_WIDGET (self))) - { - gd_tagged_entry_tag_realize (tag, self); - gdk_window_show_unraised (tag->priv->window); - } + gdk_window_show_unraised (tag->priv->window); gtk_widget_queue_resize (GTK_WIDGET (self)); @@ -1045,6 +1085,8 @@ if (!g_list_find (self->priv->tags, tag)) return FALSE; + gd_tagged_entry_tag_unrealize (tag); + self->priv->tags = g_list_remove (self->priv->tags, tag); g_object_unref (tag); @@ -1102,14 +1144,14 @@ priv = tag->priv; has_close_button = has_close_button != FALSE; - if (tag->priv->has_close_button != has_close_button) + if (priv->has_close_button != has_close_button) { GtkWidget *entry; - tag->priv->has_close_button = has_close_button; - g_clear_object (&tag->priv->layout); + priv->has_close_button = has_close_button; + g_clear_object (&priv->layout); - entry = GTK_WIDGET (tag->priv->entry); + entry = GTK_WIDGET (priv->entry); if (entry) gtk_widget_queue_resize (entry); } diff -Nru bijiben-3.14.0/libgd/libgd/gd-tagged-entry.h bijiben-3.14.1/libgd/libgd/gd-tagged-entry.h --- bijiben-3.14.0/libgd/libgd/gd-tagged-entry.h 2014-02-28 21:55:55.000000000 +0000 +++ bijiben-3.14.1/libgd/libgd/gd-tagged-entry.h 2014-10-13 19:05:52.000000000 +0000 @@ -109,6 +109,9 @@ const gchar *style); const gchar *gd_tagged_entry_tag_get_style (GdTaggedEntryTag *tag); +gboolean gd_tagged_entry_tag_get_area (GdTaggedEntryTag *tag, + cairo_rectangle_int_t *rect); + G_END_DECLS #endif /* __GD_TAGGED_ENTRY_H__ */ diff -Nru bijiben-3.14.0/libgd/libgd/gd-toggle-pixbuf-renderer.c bijiben-3.14.1/libgd/libgd/gd-toggle-pixbuf-renderer.c --- bijiben-3.14.0/libgd/libgd/gd-toggle-pixbuf-renderer.c 2014-02-28 21:55:55.000000000 +0000 +++ bijiben-3.14.1/libgd/libgd/gd-toggle-pixbuf-renderer.c 2014-10-13 19:05:52.000000000 +0000 @@ -70,8 +70,14 @@ gtk_style_context_add_class (context, GTK_STYLE_CLASS_CHECK); if (self->priv->active) - gtk_style_context_set_state (context, GTK_STATE_FLAG_ACTIVE); + gtk_style_context_set_state (context, gtk_widget_get_state_flags (widget) | GTK_STATE_FLAG_CHECKED); + gtk_render_background (context, cr, + check_x, check_y, + icon_size, icon_size); + gtk_render_frame (context, cr, + check_x, check_y, + icon_size, icon_size); gtk_render_check (context, cr, check_x, check_y, icon_size, icon_size); diff -Nru bijiben-3.14.0/libgd/libgd/gd-two-lines-renderer.c bijiben-3.14.1/libgd/libgd/gd-two-lines-renderer.c --- bijiben-3.14.0/libgd/libgd/gd-two-lines-renderer.c 2014-02-28 21:55:55.000000000 +0000 +++ bijiben-3.14.1/libgd/libgd/gd-two-lines-renderer.c 2014-10-13 19:05:52.000000000 +0000 @@ -22,6 +22,9 @@ #include "gd-two-lines-renderer.h" #include +#define SUBTITLE_DIM_PERCENTAGE 0.55 +#define SUBTITLE_SIZE_PERCENTAGE 0.82 + G_DEFINE_TYPE (GdTwoLinesRenderer, gd_two_lines_renderer, GTK_TYPE_CELL_RENDERER_TEXT) struct _GdTwoLinesRendererPrivate { @@ -79,6 +82,40 @@ } static void +apply_subtitle_style_to_layout (GtkStyleContext *context, + PangoLayout *layout, + GtkStateFlags flags) +{ + PangoFontDescription *desc; + GdkRGBA rgba; + PangoAttrList *layout_attr; + PangoAttribute *attr_color; + + gtk_style_context_get (context, flags, + "font", &desc, + "color", &rgba, + NULL); + + /* Set the font size */ + pango_font_description_set_size (desc, pango_font_description_get_size (desc) * SUBTITLE_SIZE_PERCENTAGE); + pango_layout_set_font_description (layout, desc); + pango_font_description_free (desc); + + /* Set the color */ + rgba.red = CLAMP(1.0 - ((1.0 - rgba.red) * SUBTITLE_DIM_PERCENTAGE), 0.0, 1.0); + rgba.green = CLAMP(1.0 - ((1.0 - rgba.green) * SUBTITLE_DIM_PERCENTAGE), 0.0, 1.0); + rgba.blue = CLAMP(1.0 - ((1.0 - rgba.blue) * SUBTITLE_DIM_PERCENTAGE), 0.0, 1.0); + + layout_attr = pango_attr_list_new (); + attr_color = pango_attr_foreground_new (rgba.red * 65535, + rgba.green * 65535, + rgba.blue * 65535); + pango_attr_list_insert (layout_attr, attr_color); + pango_layout_set_attributes (layout, layout_attr); + pango_attr_list_unref (layout_attr); +} + +static void gd_two_lines_renderer_prepare_layouts (GdTwoLinesRenderer *self, const GdkRectangle *cell_area, GtkWidget *widget, @@ -106,9 +143,16 @@ } else { + GtkStyleContext *context; + line_two = create_layout_with_attrs (widget, cell_area, self, PANGO_ELLIPSIZE_END); + context = gtk_widget_get_style_context (widget); + gtk_style_context_save (context); + apply_subtitle_style_to_layout (context, line_two, GTK_STATE_FLAG_NORMAL); + gtk_style_context_restore (context); + pango_layout_set_height (line_one, - (self->priv->text_lines - 1)); pango_layout_set_height (line_two, -1); pango_layout_set_text (line_two, self->priv->line_two, -1); @@ -278,7 +322,8 @@ NULL, &line_one_height); gtk_style_context_save (context); - gtk_style_context_add_class (context, "dim-label"); + + apply_subtitle_style_to_layout (context, layout_two, flags); state = gtk_cell_renderer_get_state (cell, widget, flags); gtk_style_context_set_state (context, state); diff -Nru bijiben-3.14.0/libgd/Makefile.am bijiben-3.14.1/libgd/Makefile.am --- bijiben-3.14.0/libgd/Makefile.am 2014-02-28 21:55:55.000000000 +0000 +++ bijiben-3.14.1/libgd/Makefile.am 2014-10-13 19:05:52.000000000 +0000 @@ -1,3 +1,4 @@ +AUTOMAKE_OPTIONS=subdir-objects NULL = CLEANFILES = MAINTAINERCLEANFILES = diff -Nru bijiben-3.14.0/libgd/Makefile.in bijiben-3.14.1/libgd/Makefile.in --- bijiben-3.14.0/libgd/Makefile.in 2014-09-22 21:23:55.000000000 +0000 +++ bijiben-3.14.1/libgd/Makefile.in 2014-10-13 19:38:37.000000000 +0000 @@ -499,6 +499,7 @@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ +AUTOMAKE_OPTIONS = subdir-objects NULL = CLEANFILES = $(am__append_34) MAINTAINERCLEANFILES = $(am__append_33) $(am__append_37) diff -Nru bijiben-3.14.0/libgd/test-tagged-entry.c bijiben-3.14.1/libgd/test-tagged-entry.c --- bijiben-3.14.0/libgd/test-tagged-entry.c 2014-02-28 21:55:55.000000000 +0000 +++ bijiben-3.14.1/libgd/test-tagged-entry.c 2014-10-13 19:05:52.000000000 +0000 @@ -1,6 +1,8 @@ #include #include +static GdTaggedEntryTag *toggle_tag; + static void on_tag_clicked (GdTaggedEntry *entry, GdTaggedEntryTag *tag, @@ -17,17 +19,49 @@ g_print ("tag button clicked: %s\n", gd_tagged_entry_tag_get_label (tag)); } +static void +on_toggle_visible (GtkButton *button, + GtkWidget *entry) +{ + gboolean active; + + active = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (button)); + + g_print ("%s tagged entry\n", active ? "show" : "hide"); + gtk_widget_set_visible (entry, active); +} + +static void +on_toggle_tag (GtkButton *button, + GdTaggedEntry *entry) +{ + gboolean active; + + active = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (button)); + + if (active) + { + g_print ("adding tag 'Toggle Tag'\n"); + gd_tagged_entry_insert_tag (entry, toggle_tag, 0); + } + else + { + g_print ("removing tag 'Toggle Tag'\n"); + gd_tagged_entry_remove_tag (entry, toggle_tag); + } +} + gint main (gint argc, gchar ** argv) { - GtkWidget *window, *box, *entry; + GtkWidget *window, *box, *entry, *toggle_visible_button, *toggle_tag_button; GdTaggedEntryTag *tag; gtk_init (&argc, &argv); window = gtk_window_new (GTK_WINDOW_TOPLEVEL); - gtk_widget_set_size_request (window, 300, 300); + gtk_widget_set_size_request (window, 300, 0); box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); gtk_container_add (GTK_CONTAINER (window), box); @@ -53,6 +87,21 @@ gd_tagged_entry_insert_tag (GD_TAGGED_ENTRY (entry), tag, 0); g_object_unref (tag); + toggle_visible_button = gtk_toggle_button_new_with_label ("Visible"); + gtk_widget_set_vexpand (toggle_visible_button, TRUE); + gtk_widget_set_valign (toggle_visible_button, GTK_ALIGN_END); + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle_visible_button), TRUE); + g_signal_connect (toggle_visible_button, "toggled", + G_CALLBACK (on_toggle_visible), entry); + gtk_container_add (GTK_CONTAINER (box), toggle_visible_button); + + toggle_tag = gd_tagged_entry_tag_new ("Toggle Tag"); + + toggle_tag_button = gtk_toggle_button_new_with_label ("Toggle Tag"); + g_signal_connect (toggle_tag_button, "toggled", + G_CALLBACK (on_toggle_tag), entry); + gtk_container_add (GTK_CONTAINER (box), toggle_tag_button); + gtk_widget_show_all (window); gtk_main (); diff -Nru bijiben-3.14.0/NEWS bijiben-3.14.1/NEWS --- bijiben-3.14.0/NEWS 2014-09-22 21:23:11.000000000 +0000 +++ bijiben-3.14.1/NEWS 2014-10-13 19:37:53.000000000 +0000 @@ -1,3 +1,12 @@ +Overview of changes in 3.14.1 +============================= + +* Misc + Update to latest libgd + +* Translations + Latvian + Overview of changes in 3.14.0 ============================= diff -Nru bijiben-3.14.0/po/lv.po bijiben-3.14.1/po/lv.po --- bijiben-3.14.0/po/lv.po 2014-04-16 22:59:02.000000000 +0000 +++ bijiben-3.14.1/po/lv.po 2014-10-13 19:05:38.000000000 +0000 @@ -7,8 +7,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=bijiben&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-03-07 03:53+0000\n" -"PO-Revision-Date: 2014-03-07 21:18+0200\n" +"POT-Creation-Date: 2014-09-28 02:55+0000\n" +"PO-Revision-Date: 2014-09-28 16:32+0300\n" "Last-Translator: Rūdolfs Mazurs \n" "Language-Team: Latvian \n" "Language: lv\n" @@ -30,7 +30,7 @@ msgstr "Tas ļauj izmantot ownCloud kā datu glabātuvi un tiešsaistes redaktoru." #: ../data/bijiben.desktop.in.in.h:1 ../data/bijiben.xml.in.h:1 -#: ../src/bjb-app-menu.c:45 ../src/bjb-window-base.c:17 +#: ../src/bjb-app-menu.c:45 ../src/bjb-window-base.c:18 msgid "Notes" msgstr "Piezīmes" @@ -47,7 +47,6 @@ msgstr "Piezīmju blociņš" #: ../data/org.gnome.bijiben.gschema.xml.in.h:1 -#| msgid "Custom Location" msgid "Custom Font" msgstr "Pielāgots fonts" @@ -60,7 +59,6 @@ msgstr "Vai izmantot sistēmas vienplatuma fontu" #: ../data/org.gnome.bijiben.gschema.xml.in.h:4 -#| msgid "Note color" msgid "New notes color." msgstr "Jauno piezīmju krāsa." @@ -75,7 +73,8 @@ msgstr "Primārais piezīmju pakalpojuma sniedzējs, ko izmantot jaunām piezīmēm." #: ../data/org.gnome.bijiben.gschema.xml.in.h:7 -msgid "The primary notebook is the place where are created new notes." +#| msgid "The primary notebook is the place where are created new notes." +msgid "The primary notebook is the place where new notes are created." msgstr "Primārā piezīmju grāmatiņā tiek veidotas jaunās piezīmes." #: ../data/org.gnome.bijiben.gschema.xml.in.h:8 @@ -110,32 +109,34 @@ msgid "translator-credits" msgstr "Rūdolfs Mazurs " -#: ../src/bjb-bijiben.c:387 -#| msgid "Gnote application" +#: ../src/bjb-bijiben.c:454 msgid "Show the application's version" msgstr "Rādīt lietotnes versiju" -#: ../src/bjb-bijiben.c:389 +#: ../src/bjb-bijiben.c:456 +#| msgid "Copy selection to a new note" +msgid "Create a new note" +msgstr "Izveidot jaunu piezīmi" + +#: ../src/bjb-bijiben.c:458 msgid "[FILE...]" msgstr "[DATNE...]" -#: ../src/bjb-bijiben.c:396 +#: ../src/bjb-bijiben.c:465 msgid "Take notes and export them everywhere." msgstr "Veikt piezīmes un eksportēt tās visur." #. Translators: this is a fatal error quit message #. * printed on the command line -#: ../src/bjb-bijiben.c:406 +#: ../src/bjb-bijiben.c:476 msgid "Could not parse arguments" msgstr "Nevarēja parsēt parametrus" -#: ../src/bjb-bijiben.c:414 -#| msgid "Notes" +#: ../src/bjb-bijiben.c:485 msgid "GNOME Notes" msgstr "GNOME piezīmes" -#: ../src/bjb-bijiben.c:424 -#| msgid "Gnote application" +#: ../src/bjb-bijiben.c:498 msgid "Could not register the application" msgstr "Neizdevās reģistrēt lietotni" @@ -144,50 +145,45 @@ msgstr "Piezīmju krāsa" #. Cut -#: ../src/bjb-editor-toolbar.c:374 +#: ../src/bjb-editor-toolbar.c:365 msgid "Cut" msgstr "Izgriezt" #. Copy -#: ../src/bjb-editor-toolbar.c:381 +#: ../src/bjb-editor-toolbar.c:372 msgid "Copy" msgstr "Kopēt" #. 'n paste -#: ../src/bjb-editor-toolbar.c:388 +#: ../src/bjb-editor-toolbar.c:378 msgid "Paste" msgstr "Ielīmēt" -#: ../src/bjb-editor-toolbar.c:403 +#: ../src/bjb-editor-toolbar.c:393 msgid "Bold" msgstr "Treknraksts" -#: ../src/bjb-editor-toolbar.c:414 +#: ../src/bjb-editor-toolbar.c:403 msgid "Italic" msgstr "Slīpraksts" -#: ../src/bjb-editor-toolbar.c:425 +#: ../src/bjb-editor-toolbar.c:413 msgid "Strike" msgstr "Pārsvītrots" -#: ../src/bjb-editor-toolbar.c:457 +#: ../src/bjb-editor-toolbar.c:441 msgid "Copy selection to a new note" msgstr "Kopēt izvēlēto uz jaunu piezīmi" #: ../src/bjb-empty-results-box.c:101 -msgid "No Notes Found" -msgstr "Nav atrastu piezīmju" +#| msgid "Notes" +msgid "No notes" +msgstr "Nav piezīmju" #: ../src/bjb-empty-results-box.c:145 -#| msgid "" -#| "Your notes collection is empty.\n" -#| "Click the New button to create your first note." -msgid "" -"Your notes notebook is empty.\n" -"Click the New button to create your first note." -msgstr "" -"Šī piezīmju grāmatiņa ir tukša.\n" -"Spiediet pogu “Jauna”, lai izveidotu savu pirmo piezīmi." +#| msgid "Enter a name to create a notebook" +msgid "Press the new button to create a note." +msgstr "Lai izveidotu piezīmi, spiediet pogu “Jauna”." #: ../src/bjb-empty-results-box.c:167 msgid "Oops" @@ -205,23 +201,19 @@ msgid "Import Notes" msgstr "Importēt piezīmes" -#: ../src/bjb-import-dialog.c:407 ../src/bjb-rename-note.c:17 -msgid "_Cancel" -msgstr "At_celt" - -#: ../src/bjb-import-dialog.c:409 +#: ../src/bjb-import-dialog.c:411 msgid "Import" msgstr "Importēt" -#: ../src/bjb-import-dialog.c:420 +#: ../src/bjb-import-dialog.c:422 msgid "Select import location" msgstr "Izvēlieties importēšanas vietu" -#: ../src/bjb-import-dialog.c:441 +#: ../src/bjb-import-dialog.c:443 msgid "Tomboy application" msgstr "Tomboy lietotne" -#: ../src/bjb-import-dialog.c:447 +#: ../src/bjb-import-dialog.c:449 msgid "Gnote application" msgstr "Gnote lietotne" @@ -246,7 +238,6 @@ msgstr[2] "%d izvēlētu" #: ../src/bjb-main-toolbar.c:264 -#| msgid "Search note titles, content and collections" msgid "Search note titles, content and notebooks" msgstr "Meklēt piezīmju grāmatiņā, nosaukumos un saturā" @@ -268,138 +259,145 @@ msgid "New and Recent" msgstr "Jaunas un nesenas" -#: ../src/bjb-main-toolbar.c:438 -msgid "New" -msgstr "Jauna" +#. +#. * Translators : <_New> refers to new note creation. +#. * User clicks new, which opens a new blank note. +#. +#: ../src/bjb-main-toolbar.c:441 +msgid "_New" +msgstr "Jau_ns" -#: ../src/bjb-main-toolbar.c:456 ../src/bjb-main-toolbar.c:554 +#: ../src/bjb-main-toolbar.c:460 ../src/bjb-main-toolbar.c:558 msgid "Selection mode" msgstr "Izvēlēšanās režīms" -#: ../src/bjb-main-toolbar.c:491 -#| msgid "View notes and collections in a list" +#: ../src/bjb-main-toolbar.c:495 msgid "View notes and notebooks in a list" msgstr "Piezīmes un piezīmju grāmatiņas skatīt sarakstā" -#: ../src/bjb-main-toolbar.c:515 -#| msgid "View notes and collections in a grid" +#: ../src/bjb-main-toolbar.c:519 msgid "View notes and notebooks in a grid" msgstr "Piezīmes un piezīmju grāmatiņas skatīt režģī" -#: ../src/bjb-main-toolbar.c:534 +#: ../src/bjb-main-toolbar.c:538 msgid "Trash" msgstr "Miskaste" #. Add Empty-Bin -#: ../src/bjb-main-toolbar.c:571 +#. * translators : Empty is the verb. +#. * This action permanently deletes notes +#: ../src/bjb-main-toolbar.c:577 msgid "Empty" msgstr "Tukšs" -#: ../src/bjb-main-toolbar.c:653 +#: ../src/bjb-main-toolbar.c:659 msgid "Untitled" msgstr "Nenosaukts" -#: ../src/bjb-main-toolbar.c:761 -#| msgid "_New Window" +#. +#. * Open the current note in a new window +#. * in order to be able to see it and others at the same time +#. +#: ../src/bjb-main-toolbar.c:768 msgid "Open in New Window" msgstr "Atvērt jaunā logā" #. Undo Redo separator -#: ../src/bjb-main-toolbar.c:772 +#: ../src/bjb-main-toolbar.c:779 msgid "Undo" msgstr "Atsaukt" -#: ../src/bjb-main-toolbar.c:780 +#: ../src/bjb-main-toolbar.c:787 msgid "Redo" msgstr "Atatsaukt" #. Bullets, ordered list, separator #. Bullets : unordered list format -#: ../src/bjb-main-toolbar.c:795 +#: ../src/bjb-main-toolbar.c:802 msgid "Bullets" msgstr "Aizzīmes" #. Ordered list as 1.mouse 2.cats 3.dogs -#: ../src/bjb-main-toolbar.c:802 +#: ../src/bjb-main-toolbar.c:809 msgid "Numbered List" msgstr "Numurēts saraksts" #. Notes tags -#: ../src/bjb-main-toolbar.c:818 ../src/bjb-organize-dialog.c:370 -#: ../src/bjb-selection-toolbar.c:386 -#| msgid "Notes" +#: ../src/bjb-main-toolbar.c:825 ../src/bjb-organize-dialog.c:370 +#: ../src/bjb-selection-toolbar.c:381 msgid "Notebooks" msgstr "Piezīmju grāmatiņas" #. Share -#: ../src/bjb-main-toolbar.c:826 -#| msgid "Delete this Note" +#: ../src/bjb-main-toolbar.c:833 msgid "Email this Note" msgstr "Sūtīt piezīmi pa e-pastu" #. Delete Note #. Trash notes -#: ../src/bjb-main-toolbar.c:839 ../src/bjb-selection-toolbar.c:415 +#: ../src/bjb-main-toolbar.c:846 ../src/bjb-selection-toolbar.c:415 msgid "Move to Trash" msgstr "Pārvietot uz miskasti" -#: ../src/bjb-main-toolbar.c:898 +#: ../src/bjb-main-toolbar.c:906 msgid "More options…" msgstr "Vairāk opciju…" -#: ../src/bjb-main-toolbar.c:920 ../src/bjb-selection-toolbar.c:396 +#: ../src/bjb-main-toolbar.c:929 ../src/bjb-selection-toolbar.c:392 msgid "Note color" msgstr "Piezīmju krāsa" #: ../src/bjb-main-view.c:516 -#| msgid "Note Color" msgid "Notebook" msgstr "Piezīmju grāmatiņa" #: ../src/bjb-main-view.c:519 -#| msgid "Notes" msgid "Note" msgstr "Piezīme" -#. "Last updated" precedes the note last updated date -#: ../src/bjb-note-view.c:225 -msgid "Last updated" -msgstr "Pēdējo reizi atjaunināts" +#. Translators: %s is the note last recency description. +#. * Last updated is placed as in left to right language +#. * right to left languages might move %s +#. * '%s Last Updated' +#. +#: ../src/bjb-note-view.c:190 +#, c-format +#| msgid "Last updated" +msgid "Last updated %s" +msgstr "Pēdējo reizi atjaunināts %s" -#: ../src/bjb-organize-dialog.c:399 -#| msgid "Enter a name to create a collection" +#: ../src/bjb-organize-dialog.c:396 msgid "Enter a name to create a notebook" msgstr "Ievadiet nosaukumu, lai izveidotu piezīmju grāmatiņu" -#: ../src/bjb-organize-dialog.c:409 +#: ../src/bjb-organize-dialog.c:406 msgid "New notebook" msgstr "Jauna piezīmju grāmatiņa" -#. Response -#: ../src/bjb-organize-dialog.c:437 ../src/bjb-settings-dialog.c:463 -msgid "_Close" -msgstr "Ai_zvērt" +#: ../src/bjb-rename-note.c:17 +msgid "_Cancel" +msgstr "At_celt" #: ../src/bjb-rename-note.c:19 msgid "_OK" msgstr "_Labi" -#. Restore -#: ../src/bjb-selection-toolbar.c:390 +#. Restore (do not show) +#: ../src/bjb-selection-toolbar.c:386 msgid "Restore" msgstr "Atjaunot" -#: ../src/bjb-selection-toolbar.c:406 +#: ../src/bjb-selection-toolbar.c:403 msgid "Share note" msgstr "Koplietot piezīmi" #. Detach -#: ../src/bjb-selection-toolbar.c:410 +#: ../src/bjb-selection-toolbar.c:409 msgid "Open in another window" msgstr "Atvērt citā logā" -#. Permanently delete -#: ../src/bjb-selection-toolbar.c:422 +#. Permanently delete (do not show ) +#: ../src/bjb-selection-toolbar.c:423 msgid "Permanently Delete" msgstr "Izdzēst pavisam" @@ -418,11 +416,16 @@ msgid "Default Color" msgstr "Noklusējuma krāsa" -#: ../src/bjb-settings-dialog.c:493 +#: ../src/bjb-settings-dialog.c:463 +#| msgid "_Preferences" +msgid "Preferences" +msgstr "Iestatījumi" + +#: ../src/bjb-settings-dialog.c:494 msgid "Note Edition" msgstr "Piezīmju izdevums" -#: ../src/bjb-settings-dialog.c:496 +#: ../src/bjb-settings-dialog.c:497 msgid "Primary Book" msgstr "Galvenā grāmata" @@ -450,7 +453,7 @@ msgid "Unknown" msgstr "Nezināms" -#: ../src/libbiji/provider/biji-local-provider.c:361 +#: ../src/libbiji/provider/biji-local-provider.c:363 msgid "Local storage" msgstr "Lokālā glabātuve" @@ -471,7 +474,6 @@ msgstr "_Palīdzība" #: ../src/resources/app-menu.ui.h:5 -#| msgid "_About Notes" msgid "_About" msgstr "P_ar" @@ -479,6 +481,25 @@ msgid "_Quit" msgstr "I_ziet" +#~ msgid "No Notes Found" +#~ msgstr "Nav atrastu piezīmju" + +#~| msgid "" +#~| "Your notes collection is empty.\n" +#~| "Click the New button to create your first note." +#~ msgid "" +#~ "Your notes notebook is empty.\n" +#~ "Click the New button to create your first note." +#~ msgstr "" +#~ "Šī piezīmju grāmatiņa ir tukša.\n" +#~ "Spiediet pogu “Jauna”, lai izveidotu savu pirmo piezīmi." + +#~ msgid "New" +#~ msgstr "Jauna" + +#~ msgid "_Close" +#~ msgstr "Ai_zvērt" + #~ msgid "No result found for this research." #~ msgstr "Šim meklējumam nekas nav atrasts."