Hello community, here is the log from the commit of package qalculate-gtk for openSUSE:Factory checked in at 2020-08-21 19:20:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qalculate-gtk (Old) and /work/SRC/openSUSE:Factory/.qalculate-gtk.new.3399 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qalculate-gtk" Fri Aug 21 19:20:44 2020 rev:4 rq:828538 version:3.12.1 Changes: -------- --- /work/SRC/openSUSE:Factory/qalculate-gtk/qalculate-gtk.changes 2020-08-04 20:20:46.928981083 +0200 +++ /work/SRC/openSUSE:Factory/.qalculate-gtk.new.3399/qalculate-gtk.changes 2020-08-21 19:21:28.168957488 +0200 @@ -1,0 +2,6 @@ +Fri Aug 21 14:19:01 UTC 2020 - Paolo Stivanin <[email protected]> + +- Update to version 3.12.1: + * Fix display of negative numbers with scientific notation + +------------------------------------------------------------------- Old: ---- qalculate-gtk-3.12.0.tar.gz New: ---- qalculate-gtk-3.12.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qalculate-gtk.spec ++++++ --- /var/tmp/diff_new_pack.unUt1e/_old 2020-08-21 19:21:30.512958735 +0200 +++ /var/tmp/diff_new_pack.unUt1e/_new 2020-08-21 19:21:30.512958735 +0200 @@ -17,7 +17,7 @@ Name: qalculate-gtk -Version: 3.12.0 +Version: 3.12.1 Release: 0 Summary: Multi-purpose cross-platform desktop calculator License: GPL-2.0-or-later ++++++ qalculate-gtk-3.12.0.tar.gz -> qalculate-gtk-3.12.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qalculate-gtk-3.12.0/configure.ac new/qalculate-gtk-3.12.1/configure.ac --- old/qalculate-gtk-3.12.0/configure.ac 2020-07-27 12:10:38.000000000 +0200 +++ new/qalculate-gtk-3.12.1/configure.ac 2020-08-02 21:08:36.000000000 +0200 @@ -6,7 +6,7 @@ dnl | initialize autotools |--------------------------------------------------- dnl ---------------------- -AC_INIT([Qalculate! (GTK+ UI)], [3.12.0],[],[qalculate-gtk]) +AC_INIT([Qalculate! (GTK+ UI)], [3.12.1],[],[qalculate-gtk]) AC_CONFIG_SRCDIR([src/callbacks.cc]) AM_INIT_AUTOMAKE AC_CONFIG_MACRO_DIR([m4]) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qalculate-gtk-3.12.0/data/qalculate-gtk.appdata.xml.in new/qalculate-gtk-3.12.1/data/qalculate-gtk.appdata.xml.in --- old/qalculate-gtk-3.12.0/data/qalculate-gtk.appdata.xml.in 2020-07-27 12:10:38.000000000 +0200 +++ new/qalculate-gtk-3.12.1/data/qalculate-gtk.appdata.xml.in 2020-08-02 21:08:36.000000000 +0200 @@ -48,6 +48,14 @@ </provides> <translation type="gettext">qalculate-gtk</translation> <releases> + <release version="3.12.1" date="2020-08-02"> + <description> + <p>Changes:</p> + <ul> + <li>Fix display of negative numbers with scientific notation</li> + </ul> + </description> + </release> <release version="3.12.0" date="2020-07-27"> <description> <p>Changes:</p> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qalculate-gtk-3.12.0/src/callbacks.cc new/qalculate-gtk-3.12.1/src/callbacks.cc --- old/qalculate-gtk-3.12.0/src/callbacks.cc 2020-07-27 12:10:38.000000000 +0200 +++ new/qalculate-gtk-3.12.1/src/callbacks.cc 2020-08-02 21:08:36.000000000 +0200 @@ -6795,7 +6795,7 @@ } else { number_map[(void*) &mnr[1].number()] = exp; } - surface = draw_structure(mnr, po, caf, ips, point_central, scaledown, color); + surface = draw_structure(mnr, po, caf, ips, point_central, scaledown, color, x_offset, w_offset, max_width); if(exp_minus) number_map.erase(&mnr[1][0].number()); else number_map.erase(&mnr[1].number()); number_map.erase(&mnr[0].number()); @@ -6813,7 +6813,7 @@ } else { number_map[(void*) &mnr[1][1].number()] = exp; } - surface = draw_structure(mnr, po, caf, ips, point_central, scaledown, color); + surface = draw_structure(mnr, po, caf, ips, point_central, scaledown, color, x_offset, w_offset, max_width); if(exp_minus) number_map.erase(&mnr[1][1][0].number()); else number_map.erase(&mnr[1][1].number()); number_map.erase(&mnr[1][0].number());
