diff options
| author | raveit65 <[email protected]> | 2020-06-21 10:43:20 +0200 | 
|---|---|---|
| committer | raveit65 <[email protected]> | 2020-06-21 10:43:20 +0200 | 
| commit | e42187425e10b66990a7e1981ed7cd5760b3ad8c (patch) | |
| tree | 33e7b876b5ae8c7d07bc922e9f5bef9a053f7d03 | |
| parent | e623698a879ca3cd3068fc0a2831c5c4394ec817 (diff) | |
| download | mate-calc-e42187425e10b66990a7e1981ed7cd5760b3ad8c.tar.bz2 mate-calc-e42187425e10b66990a7e1981ed7cd5760b3ad8c.tar.xz | |
release 1.25.0
| -rw-r--r-- | NEWS | 34 | ||||
| -rw-r--r-- | configure.ac | 2 | 
2 files changed, 35 insertions, 1 deletions
| @@ -1,3 +1,37 @@ +### mate-calc 1.25.0 + +  * Translations update +  * math-history-entry: Reduce the macro scope and its argument number +  * math-display: Remove unused macro +  * math-equation: Fix memory leak +  * Fix empty string return for canceling complex expressions +  * build: silent build warnings for distcheck +  * Remove -Wshadow warnings +  * Use only one mp_clear statement per line +  * use default MATE_COMPILE_WARNINGS level +  * build: Remove redundant LDFLAGS +  * Add modular exponentiation ability and add acccording tests +  * test-mp-equation: Fix memory leak +  * parserfunc: fix memory leak +  * history-view: simplify code and add clear option +  * math-buttons: add space character after inverse trig. functions +  * math-window: show GNU MPFR and GNU MPC version in about dialog +  * math-display.c: set bottom margin to 12 for gtk widget info_view +  * clear MPNumbers before return +  * add Riemann zeta function and Gauss error function +  * parserfunc: fix crash when calculating nested pow +  * Remove warnings: function declaration isn’t a prototype +  * update complex number help-page +  * unittest.c: replace tabs with spaces +  * configure: check for mpfr version >= 4.0.2 +  * Port to GNU MPFR/MPC Library +  * mate-calc.desktop: Do not collect the translation for Icon +  * free variables +  * add history view to show recent calculations. +  * add option to enable/disable history (disabled by default). +  * add possibility to resize mate-calc if history is enabled. +  * Read authors (updated) from mate-calc.about +  ### mate-calc 1.24.0    * Translations update diff --git a/configure.ac b/configure.ac index d1daee4..616f28c 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.24.0], [http://mate-desktop.org]) +AC_INIT([mate-calc], [1.25.0], [http://mate-desktop.org])  AM_INIT_AUTOMAKE([1.9 foreign no-dist-gzip dist-xz check-news])  AC_CONFIG_HEADERS(config.h) | 
