diff options
author | raveit65 <[email protected]> | 2019-02-24 18:07:35 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-02-24 18:07:35 +0100 |
commit | b5e64dadc7e36c08e8e2f4720e7cdb330118b7bc (patch) | |
tree | 60e84e87df10ac2e0f4b54e6e6f355d90e9aeae2 | |
parent | a2327c893a8901c2485083e4ec6d41986c020c38 (diff) | |
download | mate-calc-b5e64dadc7e36c08e8e2f4720e7cdb330118b7bc.tar.bz2 mate-calc-b5e64dadc7e36c08e8e2f4720e7cdb330118b7bc.tar.xz |
release 1.22.0v1.22.0
-rw-r--r-- | NEWS | 49 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 43 insertions, 8 deletions
@@ -1,12 +1,47 @@ +### mate-calc 1.22.0 + + * Translations update + * Initialize Travis CI support + * math-window: update copyright year to 2019 + * Increase accuracy range to 15 + * math-display: avoid deprecated 'gtk_widget_modify_bg' + * currency-manager: avoid deprecated 'g_type_class_add_private' + * currency: avoid deprecated 'g_type_class_add_private' + * math-equation: avoid deprecated 'g_type_class_add_private' + * unit-manager: avoid deprecated 'g_type_class_add_private' + * unit-category: avoid deprecated 'g_type_class_add_private' + * unit: avoid deprecated 'g_type_class_add_private' + * mp-serializer: avoid deprecated 'g_type_class_add_private' + * math-variable-popup: avoid deprecated 'g_type_class_add_private' + * math-preferences: avoid deprecated 'g_type_class_add_private' + * math-variables: avoid deprecated 'g_type_class_add_private' + * math-converter: avoid deprecated 'g_type_class_add_private' + * math-buttons: avoid deprecated 'g_type_class_add_private' + * math-window: avoid deprecated 'g_type_class_add_private' + * Remove dublicated assignment + * disable deprecation warnings for distcheck + * math-display: avoid deprecated 'g_type_class_add_private' + * math-window: Fix memory leak + * math-display.c: avoid deprecated 'gtk_widget_ensure_style' (#66) + * data: update appdata directory + * ui files: add missing icons in titles to dialogs + * buttons-programming.ui: Fix buttons + * Use make functions for HELP_LINGUAS + * Write equation using MathML + * Fix application name + * Fix repeated words + * tx: add help for user-guide to transifex config + * Copy equation as ASCII text + ### mate-calc 1.21.0 - sync with transifex - UI: avoid deprecated GtkButton:use-stock - UI: drop all deprecated elements - replace deprecated gtk_menu_popup - math-preferences: add window icon to Preferences dialog - Init gtk before math_equation_new; fix #44 - avoid deprecated gtk_image_menu_item_new_from_stock + * Translations update + * UI: avoid deprecated GtkButton:use-stock + * UI: drop all deprecated elements + * replace deprecated gtk_menu_popup + * math-preferences: add window icon to Preferences dialog + * Init gtk before math_equation_new; fix #44 + * avoid deprecated gtk_image_menu_item_new_from_stock ### mate-calc 1.20.0 diff --git a/configure.ac b/configure.ac index a724662..b54c8ba 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.62) -AC_INIT([mate-calc], [1.21.0], [http://mate-desktop.org]) +AC_INIT([mate-calc], [1.22.0], [http://mate-desktop.org]) AM_INIT_AUTOMAKE([1.9 foreign no-dist-gzip dist-xz check-news]) AC_CONFIG_HEADERS(config.h) |