diff -Nru gnome-shell-pomodoro-0.18.0/autogen.sh gnome-shell-pomodoro-0.20.0/autogen.sh --- gnome-shell-pomodoro-0.18.0/autogen.sh 2020-10-04 10:51:15.000000000 +0000 +++ gnome-shell-pomodoro-0.20.0/autogen.sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -#!/bin/sh -# Run this to generate all the initial makefiles, etc. -test -n "$srcdir" || srcdir=`dirname "$0"` -test -n "$srcdir" || srcdir=. - -olddir=`pwd` -cd $srcdir - -(test -f configure.ac) || { - echo "*** ERROR: Directory "\`$srcdir\'" does not look like the top-level project directory ***" - exit 1 -} - -PKG_NAME=`autoconf --trace 'AC_INIT:$1' configure.ac` - -aclocal --install || exit 1 -autoreconf --verbose --force --install -Wno-portability || exit 1 - -cd $olddir -if [ "$NOCONFIGURE" = "" ]; then - $srcdir/configure "$@" || exit 1 - echo "Now type \`make' to compile $PKG_NAME" || exit 1 -else - echo "Skipping configure process." -fi diff -Nru gnome-shell-pomodoro-0.18.0/configure.ac gnome-shell-pomodoro-0.20.0/configure.ac --- gnome-shell-pomodoro-0.18.0/configure.ac 2020-10-04 10:51:15.000000000 +0000 +++ gnome-shell-pomodoro-0.20.0/configure.ac 1970-01-01 00:00:00.000000000 +0000 @@ -1,258 +0,0 @@ -AC_PREREQ([2.69]) -AC_INIT([gnome-pomodoro], - [0.18.0], - [https://github.com/codito/gnome-pomodoro/issues], - [gnome-pomodoro], - [http://gnomepomodoro.org]) - -AC_CONFIG_SRCDIR([src]) -AC_CONFIG_HEADERS([config.h]) -AC_CONFIG_MACRO_DIR([m4]) - -AX_IS_RELEASE([git-directory]) - -AM_INIT_AUTOMAKE([1.12 no-dist-gzip dist-xz no-define foreign -Wno-portability]) -AM_SILENT_RULES([yes]) - -AX_CHECK_ENABLE_DEBUG() - -LT_INIT - -AM_GNU_GETTEXT([external]) -AM_GNU_GETTEXT_VERSION([0.19.6]) -AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.6]) - -PKG_PROG_PKG_CONFIG([0.22]) -GOBJECT_INTROSPECTION_REQUIRE([1.36.0]) - -# Checks for pkg-config packages. -VALA_REQUIRED=0.28 -GLIB_REQUIRED=2.38.0 -GTK_REQUIRED=3.20.0 -GNOME_REQUIRED=3.16.0 -INTROSPECTION_REQUIRED=0.10.1 -LIBPEAS_REQUIRED=1.5.0 -GOM_REQUIRED=0.3.0 - -PKG_CHECK_MODULES(GNOME_POMODORO, [ - glib-2.0 >= $GLIB_REQUIRED - gio-2.0 >= $GLIB_REQUIRED - gtk+-3.0 >= $GTK_REQUIRED - gsettings-desktop-schemas >= $GTK_REQUIRED - gobject-introspection-1.0 >= $INTROSPECTION_REQUIRED - libpeas-1.0 >= $LIBPEAS_REQUIRED - gom-1.0 >= $GOM_REQUIRED -]) - -PKG_CHECK_MODULES(PLUGIN, [ - glib-2.0 >= $GLIB_REQUIRED - gtk+-3.0 >= $GTK_REQUIRED - libpeas-1.0 >= $LIBPEAS_REQUIRED -]) - -PKG_CHECK_MODULES(SOUNDS_PLUGIN, [ - gstreamer-1.0 >= 1.0.10 - libcanberra >= 0.30 -]) - -PKG_CHECK_MODULES(GNOME_PLUGIN, [ - gio-2.0 >= $GLIB_REQUIRED -], [with_gnome_plugin=yes], [with_gnome_plugin=no]) - -# Checks for programs. -AC_PROG_CC -AC_PROG_INSTALL -AC_PROG_MAKE_SET -AC_PROG_MKDIR_P -AM_PROG_VALAC($VALA_REQUIRED) - -AC_PATH_PROG(GLIB_COMPILE_RESOURCES, glib-compile-resources) -AC_PATH_PROG(GTK_UPDATE_ICON_CACHE, gtk-update-icon-cache) -AC_PATH_PROG([DESKTOP_FILE_VALIDATE], [desktop-file-validate], [/bin/true]) - -AX_REQUIRE_DEFINED([GOBJECT_INTROSPECTION_REQUIRE]) -GOBJECT_INTROSPECTION_REQUIRE($INTROSPECTION_REQUIRED) - -AX_REQUIRE_DEFINED([GLIB_GSETTINGS]) -GLIB_GSETTINGS - -AX_REQUIRE_DEFINED([VAPIGEN_CHECK]) -VAPIGEN_CHECK - -AX_REQUIRE_DEFINED([APPSTREAM_XML]) -APPSTREAM_XML - -# Checks for libraries. -AC_CHECK_LIB(m, floor) - - -# Checks for header files. -AC_CHECK_HEADERS([malloc.h float.h stdlib.h string.h]) - - -# Checks for typedefs, structures, and compiler characteristics. -AC_TYPE_SIZE_T - - -# Checks for library functions. -AC_CHECK_FUNCS([atexit floor memchr memset mallopt]) - - -# Project constants -GNOME_POMODORO_VALAFLAGS=" \ - --target-glib \$(GLIB_REQUIRED) \ - --vapidir=\$(abs_top_srcdir) \ - --vapidir=\$(abs_top_srcdir)/vapi \ - --pkg config \ - --pkg gobject-2.0 \ - --pkg gio-2.0 \ - --pkg gtk+-3.0 \ - --pkg libpeas-1.0 \ - --pkg gom-1.0 \ - --pkg sqlite3" -GNOME_POMODORO_CPPFLAGS="$GNOME_POMODORO_CPPFLAGS \ - -I\$(abs_top_srcdir) \ - -I\$(abs_top_srcdir)/lib" -GNOME_POMDORO_LIBS="$GNOME_POMDORO_LIBS -lm" - -PLUGIN_VALAFLAGS="$PLUGIN_VALAFLAGS \ - --target-glib \$(GLIB_REQUIRED) \ - --vapidir=\$(abs_top_srcdir) \ - --vapidir=\$(abs_top_srcdir)/vapi \ - --pkg config \ - --pkg gobject-2.0 \ - --pkg gio-2.0 \ - --pkg gtk+-3.0 \ - --pkg libpeas-1.0" -PLUGIN_CPPFLAGS="$PLUGIN_CPPFLAGS \ - -I\$(abs_top_srcdir) \ - -I\$(abs_top_srcdir)/lib" -PLUGIN_LIBS="$PLUGIN_LIBS -lm" -PLUGIN_LDFLAGS="-module -avoid-version" - -# RECURSIVE_EVAL(VALUE, RESULT) -# -# Interpolate the VALUE in loop until it doesn't change, -# and set the result to $RESULT. -# WARNING: It's easy to get an infinite loop with some unsane input. -# -AC_DEFUN([RECURSIVE_EVAL], - [_lcl_receval="$1" - $2=`(test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix="${prefix}" - _lcl_receval_old='' - while test "[$]_lcl_receval_old" != "[$]_lcl_receval"; do - _lcl_receval_old="[$]_lcl_receval" - eval _lcl_receval="\"[$]_lcl_receval\"" - done - echo "[$]_lcl_receval")`]) - -RECURSIVE_EVAL("$localedir", [PACKAGE_LOCALE_DIR]) -RECURSIVE_EVAL("$datadir/gnome-pomodoro", [PACKAGE_DATA_DIR]) -RECURSIVE_EVAL("$libdir/gnome-pomodoro", [PACKAGE_LIB_DIR]) -RECURSIVE_EVAL("$datadir/gnome-pomodoro/plugins", [PLUGIN_DATA_DIR]) -RECURSIVE_EVAL("$libdir/gnome-pomodoro/plugins", [PLUGIN_LIB_DIR]) -RECURSIVE_EVAL("$datadir/gnome-shell/extensions/pomodoro@arun.codito.in", [EXTENSION_DIR]) -RECURSIVE_EVAL("$gsettingsschemadir", [GSETTINGS_SCHEMA_DIR]) - - -# Some variables to pass to Makefiles -AC_SUBST([EXTENSION_UUID], [pomodoro@arun.codito.in]) -AC_SUBST([EXTENSION_DIR]) -AC_SUBST([GETTEXT_PACKAGE], [gnome-pomodoro]) -AC_SUBST([PACKAGE_DATA_DIR]) -AC_SUBST([PACKAGE_LOCALE_DIR]) -AC_SUBST([GSETTINGS_SCHEMA_DIR]) - -AC_SUBST([GLIB_REQUIRED]) -AC_SUBST([GTK_REQUIRED]) -AC_SUBST([GNOME_REQUIRED]) -AC_SUBST([INTROSPECTION_REQUIRED]) -AC_SUBST([LIBPEAS_REQUIRED]) -AC_SUBST([GOM_REQUIRED]) -AC_SUBST([VALA_REQUIRED]) - -AC_SUBST([GNOME_POMODORO_VALAFLAGS]) -AC_SUBST([GNOME_POMODORO_CPPFLAGS]) -AC_SUBST([GNOME_POMODORO_CFLAGS]) -AC_SUBST([GNOME_POMODORO_LIBS]) - -AC_SUBST([PLUGIN_DATA_DIR], [$PLUGIN_DATA_DIR]) -AC_SUBST([PLUGIN_LIB_DIR], [$PLUGIN_LIB_DIR]) -AC_SUBST([PLUGIN_VALAFLAGS]) -AC_SUBST([PLUGIN_CPPFLAGS]) -AC_SUBST([PLUGIN_CFLAGS]) -AC_SUBST([PLUGIN_LIBS]) -AC_SUBST([PLUGIN_LDFLAGS]) - -AM_CONDITIONAL([WITH_GNOME_PLUGIN], [test "$with_gnome_plugin" = yes]) - - -# Some constants to pass to config.h -AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], "$GETTEXT_PACKAGE", - [The name of the gettext domain]) -AC_DEFINE_UNQUOTED([GSETTINGS_SCHEMA_DIR], "$GSETTINGS_SCHEMA_DIR", - [GSettings schema dir]) -AC_DEFINE_UNQUOTED([EXTENSION_UUID], "$EXTENSION_UUID", - [UUID of the pomodoro extension]) -AC_DEFINE_UNQUOTED([EXTENSION_DIR], "$EXTENSION_DIR", - [Path of the pomodoro extension]) -AC_DEFINE_UNQUOTED([PACKAGE_LOCALE_DIR], "$PACKAGE_LOCALE_DIR", - [Locale dir]) -AC_DEFINE_UNQUOTED([PACKAGE_DATA_DIR], "$PACKAGE_DATA_DIR", - [Data dir]) -AC_DEFINE_UNQUOTED([PACKAGE_LIB_DIR], "$PACKAGE_LIB_DIR", - [Lib dir]) -AC_DEFINE_UNQUOTED([PLUGIN_DATA_DIR], "$PLUGIN_DATA_DIR", - [Plugin data dir]) -AC_DEFINE_UNQUOTED([PLUGIN_LIB_DIR], "$PLUGIN_LIB_DIR", - [Plugin lib dir]) - - -AC_CONFIG_FILES([ - Makefile - lib/Makefile - src/Makefile - data/Makefile - data/icons/Makefile - data/icons/16x16/Makefile - data/icons/24x24/Makefile - data/icons/32x32/Makefile - data/icons/48x48/Makefile - data/icons/256x256/Makefile - data/icons/512x512/Makefile - data/icons/symbolic/Makefile - data/sounds/Makefile - po/Makefile.in - packages/Makefile - packages/debian/Makefile - packages/jhbuild/Makefile - packages/rpm/Makefile - plugins/Makefile - plugins/actions/Makefile - plugins/dark-theme/Makefile - plugins/gnome/Makefile - plugins/gnome/extension/config.js - plugins/gnome/extension/metadata.json - plugins/gnome/extension/Makefile - plugins/sounds/Makefile - tests/Makefile - vapi/Makefile -]) - -AC_OUTPUT - -echo " -gnome-pomodoro ${VERSION}: - - prefix: ${prefix} - datadir: ${datadir} - srcdir: ${srcdir} - compiler: ${CC} - cflags: ${CFLAGS} - cppflags: ${CPPFLAGS} - ldflags: ${LDFLAGS} - -plugins: - gnome: ${with_gnome_plugin} -" diff -Nru gnome-shell-pomodoro-0.18.0/COPYING gnome-shell-pomodoro-0.20.0/COPYING --- gnome-shell-pomodoro-0.18.0/COPYING 2020-10-04 10:51:15.000000000 +0000 +++ gnome-shell-pomodoro-0.20.0/COPYING 2021-09-25 15:02:50.000000000 +0000 @@ -1,7 +1,7 @@ GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 - Copyright (C) 2007 Free Software Foundation, Inc. + Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. @@ -645,7 +645,7 @@ 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, see . + along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. @@ -664,11 +664,11 @@ You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see -. +. The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read -. +. diff -Nru gnome-shell-pomodoro-0.18.0/data/icons/16x16/Makefile.am gnome-shell-pomodoro-0.20.0/data/icons/16x16/Makefile.am --- gnome-shell-pomodoro-0.18.0/data/icons/16x16/Makefile.am 2020-10-04 10:51:15.000000000 +0000 +++ gnome-shell-pomodoro-0.20.0/data/icons/16x16/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -icondir = $(datadir)/icons/hicolor/16x16/apps -icon_DATA = gnome-pomodoro.png - -EXTRA_DIST = \ - $(icon_DATA) - --include $(top_srcdir)/git.mk - -# vi:ts=4:noet diff -Nru gnome-shell-pomodoro-0.18.0/data/icons/24x24/Makefile.am gnome-shell-pomodoro-0.20.0/data/icons/24x24/Makefile.am --- gnome-shell-pomodoro-0.18.0/data/icons/24x24/Makefile.am 2020-10-04 10:51:15.000000000 +0000 +++ gnome-shell-pomodoro-0.20.0/data/icons/24x24/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -icondir = $(datadir)/icons/hicolor/24x24/apps -icon_DATA = gnome-pomodoro.png - -EXTRA_DIST = \ - $(icon_DATA) - --include $(top_srcdir)/git.mk - -# vi:ts=4:noet diff -Nru gnome-shell-pomodoro-0.18.0/data/icons/256x256/Makefile.am gnome-shell-pomodoro-0.20.0/data/icons/256x256/Makefile.am --- gnome-shell-pomodoro-0.18.0/data/icons/256x256/Makefile.am 2020-10-04 10:51:15.000000000 +0000 +++ gnome-shell-pomodoro-0.20.0/data/icons/256x256/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -icondir = $(datadir)/icons/hicolor/256x256/apps -icon_DATA = gnome-pomodoro.png - -EXTRA_DIST = \ - $(icon_DATA) - --include $(top_srcdir)/git.mk - -# vi:ts=4:noet diff -Nru gnome-shell-pomodoro-0.18.0/data/icons/32x32/Makefile.am gnome-shell-pomodoro-0.20.0/data/icons/32x32/Makefile.am --- gnome-shell-pomodoro-0.18.0/data/icons/32x32/Makefile.am 2020-10-04 10:51:15.000000000 +0000 +++ gnome-shell-pomodoro-0.20.0/data/icons/32x32/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -icondir = $(datadir)/icons/hicolor/32x32/apps -icon_DATA = gnome-pomodoro.png - -EXTRA_DIST = \ - $(icon_DATA) - --include $(top_srcdir)/git.mk - -# vi:ts=4:noet diff -Nru gnome-shell-pomodoro-0.18.0/data/icons/48x48/Makefile.am gnome-shell-pomodoro-0.20.0/data/icons/48x48/Makefile.am --- gnome-shell-pomodoro-0.18.0/data/icons/48x48/Makefile.am 2020-10-04 10:51:15.000000000 +0000 +++ gnome-shell-pomodoro-0.20.0/data/icons/48x48/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -icondir = $(datadir)/icons/hicolor/48x48/apps -icon_DATA = gnome-pomodoro.png - -EXTRA_DIST = \ - $(icon_DATA) - --include $(top_srcdir)/git.mk - -# vi:ts=4:noet diff -Nru gnome-shell-pomodoro-0.18.0/data/icons/512x512/Makefile.am gnome-shell-pomodoro-0.20.0/data/icons/512x512/Makefile.am --- gnome-shell-pomodoro-0.18.0/data/icons/512x512/Makefile.am 2020-10-04 10:51:15.000000000 +0000 +++ gnome-shell-pomodoro-0.20.0/data/icons/512x512/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -icondir = $(datadir)/icons/hicolor/512x512/apps -icon_DATA = gnome-pomodoro.png - -EXTRA_DIST = \ - $(icon_DATA) - --include $(top_srcdir)/git.mk - -# vi:ts=4:noet diff -Nru gnome-shell-pomodoro-0.18.0/data/icons/Makefile.am gnome-shell-pomodoro-0.20.0/data/icons/Makefile.am --- gnome-shell-pomodoro-0.18.0/data/icons/Makefile.am 2020-10-04 10:51:15.000000000 +0000 +++ gnome-shell-pomodoro-0.20.0/data/icons/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -SUBDIRS = \ - 16x16 \ - 24x24 \ - 32x32 \ - 48x48 \ - 256x256 \ - 512x512 \ - symbolic - -noinst_DATA = \ - gnome-pomodoro.svg - -gtk_update_icon_cache = $(GTK_UPDATE_ICON_CACHE) -f -t $(datadir)/icons/hicolor - -update-icon-cache: - @-if test -z "$(DESTDIR)"; then \ - echo "Updating Gtk icon cache."; \ - $(gtk_update_icon_cache); \ - else \ - echo "*** Icon cache not updated. After (un)install, run this:"; \ - echo "*** $(gtk_update_icon_cache)"; \ - fi - -install-data-hook: update-icon-cache - -uninstall-hook: update-icon-cache - -EXTRA_DIST = \ - $(noinst_DATA) - --include $(top_srcdir)/git.mk - -# vi:ts=4:noet diff -Nru gnome-shell-pomodoro-0.18.0/data/icons/meson.build gnome-shell-pomodoro-0.20.0/data/icons/meson.build --- gnome-shell-pomodoro-0.18.0/data/icons/meson.build 1970-01-01 00:00:00.000000000 +0000 +++ gnome-shell-pomodoro-0.20.0/data/icons/meson.build 2021-09-25 15:02:50.000000000 +0000 @@ -0,0 +1,23 @@ +icon_dirs = [ + '16x16', + '24x24', + '32x32', + '48x48', + '256x256', + '512x512', +] + +hicolor_icondir = get_option('datadir') / 'icons' / 'hicolor' + +foreach i:icon_dirs + install_data( + i / 'gnome-pomodoro.png', + install_dir: hicolor_icondir / i / 'apps', + ) +endforeach + +install_data( + 'symbolic' / 'gnome-pomodoro-symbolic.svg', + install_dir: hicolor_icondir / 'symbolic' / 'apps', +) + diff -Nru gnome-shell-pomodoro-0.18.0/data/icons/symbolic/gnome-pomodoro-symbolic.svg gnome-shell-pomodoro-0.20.0/data/icons/symbolic/gnome-pomodoro-symbolic.svg --- gnome-shell-pomodoro-0.18.0/data/icons/symbolic/gnome-pomodoro-symbolic.svg 2020-10-04 10:51:15.000000000 +0000 +++ gnome-shell-pomodoro-0.20.0/data/icons/symbolic/gnome-pomodoro-symbolic.svg 2021-09-25 15:02:50.000000000 +0000 @@ -5,10 +5,39 @@ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="svg7384" height="16" width="16" - version="1.1"> + version="1.1" + sodipodi:docname="gnome-pomodoro-symbolic.svg" + inkscape:version="1.0.2 (e86c870879, 2021-01-15)"> + + + Gnome Symbolic Icon Theme - + id="path4366-3" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:new" + d="M 8 -0.001953125 C 6.19914 -0.002882325 4.661396 1.25783 3.5 2.8691406 C 2.4261404 4.3590053 1.6619302 6.2341842 1.515625 8.1484375 C 1.5706398 8.2894584 1.660594 8.4373216 1.84375 8.6054688 C 1.9315536 8.6860769 2.0647296 8.766835 2.1835938 8.8476562 L 2.1835938 8.3925781 L 2.1835938 7.9570312 L 2.5605469 8.1757812 C 2.6421021 8.2234505 2.7763204 8.2808271 2.9101562 8.3457031 L 3.0507812 8.4140625 L 3.0507812 9.3105469 C 3.1036402 9.332649 3.1421255 9.3574951 3.1972656 9.3789062 C 3.3613237 9.4426106 3.5663398 9.4903514 3.75 9.546875 L 3.75 9.0214844 L 3.75 8.6894531 L 4.0683594 8.78125 C 4.2333567 8.8287712 4.4044026 8.8718846 4.5839844 8.9140625 L 4.7773438 8.9609375 L 4.7773438 9.8105469 C 5.0932518 9.8750733 5.406239 9.9414571 5.75 9.9882812 L 5.75 8.7402344 L 7.0019531 8.8378906 L 7.0019531 10.107422 C 7.3299505 10.126334 7.6582209 10.146484 8 10.146484 C 9.894197 10.146484 11.608978 9.8432033 12.804688 9.3789062 C 13.402539 9.1467575 13.868328 8.8715898 14.158203 8.6054688 C 14.336069 8.4421788 14.425982 8.2977564 14.482422 8.1601562 C 14.338118 6.2418139 13.572129 4.3616847 12.496094 2.8691406 C 11.334702 1.2582003 9.800131 -0.001027325 8 -0.001953125 z M 1.5 9.4355469 C 1.6067962 11.432618 2.2730501 13.036337 3.3515625 14.150391 C 4.5739475 15.413059 6.2635889 16.001953 7.9980469 16.001953 C 9.7325049 16.001953 11.426049 15.413059 12.648438 14.150391 C 13.726948 13.036336 14.391613 11.432618 14.498047 9.4355469 C 14.126442 9.7038374 13.678618 9.9357199 13.166016 10.134766 C 11.810314 10.661189 9.999124 10.970703 8 10.970703 C 6.000877 10.970703 4.1896854 10.661189 2.8339844 10.134766 C 2.3207979 9.9354934 1.871851 9.7042308 1.5 9.4355469 z M 7.9941406 11.447266 C 8.080139 11.444942 8.1612923 11.486994 8.2089844 11.558594 L 9.5546875 13.595703 C 9.6656457 13.76221 9.5457925 13.985115 9.3457031 13.984375 L 6.6542969 13.984375 C 6.4542025 13.985115 6.3343543 13.76221 6.4453125 13.595703 L 7.7910156 11.558594 C 7.8364141 11.490466 7.9122896 11.448866 7.9941406 11.447266 z " + transform="translate(-17.716189,0.98422722)" /> - - - - + id="g875" + style="opacity:1;fill:#cc0000;stroke-width:0.567455" + transform="matrix(1.541293,0,0,2.0148899,3.1807555,-16.775635)" /> diff -Nru gnome-shell-pomodoro-0.18.0/data/icons/symbolic/Makefile.am gnome-shell-pomodoro-0.20.0/data/icons/symbolic/Makefile.am --- gnome-shell-pomodoro-0.18.0/data/icons/symbolic/Makefile.am 2020-10-04 10:51:15.000000000 +0000 +++ gnome-shell-pomodoro-0.20.0/data/icons/symbolic/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -icondir = $(datadir)/icons/hicolor/scalable/apps -icon_DATA = gnome-pomodoro-symbolic.svg - -EXTRA_DIST = \ - $(icon_DATA) - --include $(top_srcdir)/git.mk - -# vi:ts=4:noet diff -Nru gnome-shell-pomodoro-0.18.0/data/Makefile.am gnome-shell-pomodoro-0.20.0/data/Makefile.am --- gnome-shell-pomodoro-0.18.0/data/Makefile.am 2020-10-04 10:51:15.000000000 +0000 +++ gnome-shell-pomodoro-0.20.0/data/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,54 +0,0 @@ -SUBDIRS = \ - icons \ - sounds - -desktopdir = $(datadir)/applications -desktop_in_files = org.gnome.Pomodoro.desktop.in -desktop_DATA = $(desktop_in_files:.desktop.in=.desktop) - -$(desktop_DATA): $(desktop_in_files) - $(AM_V_GEN) $(MSGFMT) --desktop -d $(top_srcdir)/po --template $< -o $@ - -gsettings_SCHEMAS = \ - org.gnome.pomodoro.gschema.xml -@GSETTINGS_RULES@ - -servicedir = $(datadir)/dbus-1/services -service_in_files = \ - org.gnome.Pomodoro.service.in -service_DATA = $(service_in_files:.service.in=.service) - -$(service_DATA): $(service_in_files) - $(AM_V_GEN) sed -e "s|@bindir[@]|$(bindir)|g" $< > $@ - -appstream_in_files = \ - org.gnome.Pomodoro.appdata.xml.in -appstream_XML = $(appstream_in_files:.xml.in=.xml) -@APPSTREAM_XML_RULES@ - -$(appstream_XML): $(appstream_in_files) - $(AM_V_GEN) $(MSGFMT) --xml -d $(top_srcdir)/po --template $< -o $@ - -EXTRA_DIST = \ - $(appstream_in_files) \ - $(desktop_in_files) \ - $(service_in_files) \ - $(gsettings_SCHEMAS) - -CLEANFILES = \ - $(appstream_XML) \ - $(desktop_DATA) \ - $(service_DATA) - -AM_DISTCHECK_CONFIGURE_FLAGS = \ - --enable-appstream-util - -check-local: $(desktop_DATA) - $(DESKTOP_FILE_VALIDATE) $(desktop_DATA) - -dist-hook: - cd $(distdir) && rm -f $(CLEANFILES) - --include $(top_srcdir)/git.mk - -# vi:ts=4:noet diff -Nru gnome-shell-pomodoro-0.18.0/data/meson.build gnome-shell-pomodoro-0.20.0/data/meson.build --- gnome-shell-pomodoro-0.18.0/data/meson.build 1970-01-01 00:00:00.000000000 +0000 +++ gnome-shell-pomodoro-0.20.0/data/meson.build 2021-09-25 15:02:50.000000000 +0000 @@ -0,0 +1,39 @@ +dbus_conf = configuration_data() + +dbus_conf.set( + 'bindir', + get_option('prefix') / get_option('bindir'), +) + +configure_file( + input: 'org.gnome.Pomodoro.service.in', + output: '@BASENAME@', + configuration: dbus_conf, + install_dir: get_option('datadir') / 'dbus-1' / 'services', +) + +i18n.merge_file( + input: 'org.gnome.Pomodoro.desktop.in', + output: '@BASENAME@', + install: true, + install_dir: get_option('datadir') / 'applications', + po_dir: '..' / 'po', + type: 'desktop', +) + +i18n.merge_file( + input: 'org.gnome.Pomodoro.appdata.xml.in', + output: '@BASENAME@', + install: true, + install_dir: get_option('datadir') / 'metainfo', + po_dir: '..' / 'po', +) + +install_data( + 'org.gnome.pomodoro.gschema.xml', + install_dir: get_option('datadir') / 'glib-2.0' / 'schemas', +) + +subdir('icons') +subdir('resources') +subdir('sounds') diff -Nru gnome-shell-pomodoro-0.18.0/data/org.gnome.Pomodoro.appdata.xml.in gnome-shell-pomodoro-0.20.0/data/org.gnome.Pomodoro.appdata.xml.in --- gnome-shell-pomodoro-0.18.0/data/org.gnome.Pomodoro.appdata.xml.in 2020-10-04 10:51:15.000000000 +0000 +++ gnome-shell-pomodoro-0.20.0/data/org.gnome.Pomodoro.appdata.xml.in 2021-09-25 15:02:50.000000000 +0000 @@ -19,20 +19,20 @@ - http://gnomepomodoro.org/release/0.14/window.png + https://gnomepomodoro.org/release/0.14/window.png Timer window - http://gnomepomodoro.org/release/0.14/preferences.png + https://gnomepomodoro.org/release/0.14/preferences.png Preferences - http://gnomepomodoro.org/release/0.14/indicator.png + https://gnomepomodoro.org/release/0.14/indicator.png Indicator for GNOME Shell - http://gnomepomodoro.org - https://github.com/codito/gnome-pomodoro + https://gnomepomodoro.org + https://github.com/gnome-pomodoro/gnome-pomodoro Kamil Prusko kamilprusko@gmail.com @@ -44,6 +44,45 @@ gnome-pomodoro + + +

Overview of changes in gnome-pomodoro 0.20.0

+
    +
  • Support for GNOME Shell 41 (@mbooth101)
  • +
+
+
+ + +

Overview of changes in gnome-pomodoro 0.19.2

+
    +
  • Fixed GNOME Shell freezing the lockscreen
  • +
  • Fixed unresponsive modal dialog
  • +
  • Updated Russian translation (@prokoudine)
  • +
  • Updated Dutch translation (@Vistaus)
  • +
+
+
+ + +

Overview of changes in gnome-pomodoro 0.19.1

+
    +
  • Support GNOME Shell 40.0, not 4.0
  • +
+
+
+ + +

Overview of changes in gnome-pomodoro 0.19.0

+
    +
  • Support for GNOME Shell 4.0
  • +
  • Added support for meson (@Cogitri)
  • +
  • Changed blur effect during break
  • +
  • Added Korean translation (@dayeondev)
  • +
  • Updated Brazilian translation (@alexandreafa)
  • +
+
+

Overview of changes in gnome-pomodoro 0.18.0

diff -Nru gnome-shell-pomodoro-0.18.0/data/resources/meson.build gnome-shell-pomodoro-0.20.0/data/resources/meson.build --- gnome-shell-pomodoro-0.18.0/data/resources/meson.build 1970-01-01 00:00:00.000000000 +0000 +++ gnome-shell-pomodoro-0.20.0/data/resources/meson.build 2021-09-25 15:02:50.000000000 +0000 @@ -0,0 +1,6 @@ +gnome_pomodoro_generated_sources = gnome.compile_resources( + 'gnome-pomodoro-generated', + 'resources.xml', + c_name: 'pomodoro', +) + diff -Nru gnome-shell-pomodoro-0.18.0/data/resources/preferences-keyboard-shortcut-page.ui gnome-shell-pomodoro-0.20.0/data/resources/preferences-keyboard-shortcut-page.ui --- gnome-shell-pomodoro-0.18.0/data/resources/preferences-keyboard-shortcut-page.ui 2020-10-04 10:51:15.000000000 +0000 +++ gnome-shell-pomodoro-0.20.0/data/resources/preferences-keyboard-shortcut-page.ui 2021-09-25 15:02:50.000000000 +0000 @@ -5,8 +5,8 @@