diff -Nru kstars-16.12.1/debian/changelog kstars-16.12.3/debian/changelog --- kstars-16.12.1/debian/changelog 2017-02-18 18:39:46.000000000 +0000 +++ kstars-16.12.3/debian/changelog 2017-03-10 21:31:54.000000000 +0000 @@ -1,3 +1,13 @@ +kstars (4:16.12.3-0ubuntu1) zesty; urgency=low + + [ Darin Miller ] + * New upstream release (16.12.2) + + [ José Manuel Santamaría Lema ] + * New upstream release (16.12.3) + + -- José Manuel Santamaría Lema Fri, 10 Mar 2017 21:31:54 +0000 + kstars (4:16.12.1-0ubuntu3) zesty; urgency=medium * Update switch_test_to_fuzzy_compare.diff diff -Nru kstars-16.12.1/debian/control kstars-16.12.3/debian/control --- kstars-16.12.1/debian/control 2017-02-18 18:39:46.000000000 +0000 +++ kstars-16.12.3/debian/control 2017-03-10 21:31:54.000000000 +0000 @@ -7,28 +7,28 @@ cmake (>= 2.8.12~), debhelper (>= 9), dpkg-dev (>= 1.15.5), - extra-cmake-modules (>= 5.28.0~), - kinit-dev (>= 5.28.0~), + extra-cmake-modules (>= 5.31.0~), + kinit-dev (>= 5.31.0~), libcfitsio-dev (>= 3.040), libeigen3-dev (>> 2.0.3), libglu1-mesa-dev [!armhf], libindi-dev (>= 1.2.0~), - libkf5config-dev (>= 5.28.0~), - libkf5crash-dev (>= 5.28.0~), - libkf5dbusaddons-dev (>= 5.28.0~), - libkf5doctools-dev (>= 5.28.0~), - libkf5guiaddons-dev (>= 5.28.0~), - libkf5i18n-dev (>= 5.28.0~), - libkf5iconthemes-dev (>= 5.28.0~), - libkf5jobwidgets-dev (>= 5.28.0~), - libkf5kio-dev (>= 5.28.0~), - libkf5newstuff-dev (>= 5.28.0~), - libkf5notifications-dev (>= 5.28.0~), - libkf5plotting-dev (>= 5.28.0~), - libkf5texteditor-dev (>= 5.28.0~), - libkf5widgetsaddons-dev (>= 5.28.0~), - libkf5windowsystem-dev (>= 5.28.0~), - libkf5xmlgui-dev (>= 5.28.0~), + libkf5config-dev (>= 5.31.0~), + libkf5crash-dev (>= 5.31.0~), + libkf5dbusaddons-dev (>= 5.31.0~), + libkf5doctools-dev (>= 5.31.0~), + libkf5guiaddons-dev (>= 5.31.0~), + libkf5i18n-dev (>= 5.31.0~), + libkf5iconthemes-dev (>= 5.31.0~), + libkf5jobwidgets-dev (>= 5.31.0~), + libkf5kio-dev (>= 5.31.0~), + libkf5newstuff-dev (>= 5.31.0~), + libkf5notifications-dev (>= 5.31.0~), + libkf5plotting-dev (>= 5.31.0~), + libkf5texteditor-dev (>= 5.31.0~), + libkf5widgetsaddons-dev (>= 5.31.0~), + libkf5windowsystem-dev (>= 5.31.0~), + libkf5xmlgui-dev (>= 5.31.0~), libnova-dev, libqt5opengl5-dev (>= 5.6.1~), libqt5svg5-dev (>= 5.6.1~), diff -Nru kstars-16.12.1/kstars/auxiliary/qcustomplot.cpp kstars-16.12.3/kstars/auxiliary/qcustomplot.cpp --- kstars-16.12.1/kstars/auxiliary/qcustomplot.cpp 2016-12-12 04:16:32.000000000 +0000 +++ kstars-16.12.3/kstars/auxiliary/qcustomplot.cpp 2017-02-02 06:39:38.000000000 +0000 @@ -6573,15 +6573,17 @@ QVector result; if (mTicks.isEmpty()) return result; - - QMap::const_iterator start = mTicks.lowerBound(range.lower); - QMap::const_iterator end = mTicks.upperBound(range.upper); + + const QMap constTicks = mTicks; + + QMap::const_iterator start = constTicks.lowerBound(range.lower); + QMap::const_iterator end = constTicks.upperBound(range.upper); // this method should try to give one tick outside of range so proper subticks can be generated: if (start != mTicks.constBegin()) --start; if (end != mTicks.constEnd()) ++end; for (QMap::const_iterator it = start; it != end; ++it) result.append(it.key()); - + return result; } /* end of 'src/axis/axistickertext.cpp' */ @@ -16007,7 +16009,7 @@ for (int i=0; i::const_iterator it = mColorStops.lowerBound(position); + QMap::const_iterator it = const_cast &>(mColorStops).lowerBound(position); if (it == mColorStops.constEnd()) // position is on or after last stop, use color of last stop { mColorBuffer[i] = (it-1).value().rgba(); diff -Nru kstars-16.12.1/kstars/auxiliary/qcustomplot.h kstars-16.12.3/kstars/auxiliary/qcustomplot.h --- kstars-16.12.1/kstars/auxiliary/qcustomplot.h 2016-12-12 04:16:32.000000000 +0000 +++ kstars-16.12.3/kstars/auxiliary/qcustomplot.h 2017-02-02 06:39:38.000000000 +0000 @@ -3817,6 +3817,7 @@ class QCP_LIB_DECL QCPPlottableInterface1D { public: + virtual ~QCPPlottableInterface1D() {} // introduced pure virtual methods: virtual int dataCount() const = 0; virtual double dataMainKey(int index) const = 0; diff -Nru kstars-16.12.1/kstars/data/icons/breeze/index.theme kstars-16.12.3/kstars/data/icons/breeze/index.theme --- kstars-16.12.1/kstars/data/icons/breeze/index.theme 2016-12-12 04:16:32.000000000 +0000 +++ kstars-16.12.3/kstars/data/icons/breeze/index.theme 2017-02-02 06:39:38.000000000 +0000 @@ -3,6 +3,7 @@ Name[ca]=Brisa Name[ca@valencia]=Brisa Name[cs]=Breeze +Name[de]=Breeze Name[en_GB]=Breeze Name[es]=Brisa Name[et]=Breeze @@ -11,6 +12,7 @@ Name[nn]=Breeze Name[pl]=Bryza Name[pt]=Brisa +Name[pt_BR]=Breeze Name[sk]=Vánok Name[sl]=Sapica Name[sv]=Breeze diff -Nru kstars-16.12.1/kstars/kstars.notifyrc kstars-16.12.3/kstars/kstars.notifyrc --- kstars-16.12.1/kstars/kstars.notifyrc 2016-12-12 04:16:32.000000000 +0000 +++ kstars-16.12.3/kstars/kstars.notifyrc 2017-02-02 06:39:38.000000000 +0000 @@ -623,6 +623,7 @@ Name[nl]=Plannen afgebroken Name[pl]=Przerwano planistę Name[pt]=Agendamento Interrompido +Name[pt_BR]=Agendador cancelado Name[sk]=Plánovač prerušený Name[sl]=Razporejevalnik prekinjen Name[sv]=Schemaläggning avbruten