Hello community, here is the log from the commit of package QTalarm for openSUSE:Factory checked in at 2020-11-09 13:57:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/QTalarm (Old) and /work/SRC/openSUSE:Factory/.QTalarm.new.11331 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "QTalarm" Mon Nov 9 13:57:39 2020 rev:3 rq:847061 version:2.1.0 Changes: -------- --- /work/SRC/openSUSE:Factory/QTalarm/QTalarm.changes 2020-09-29 19:05:29.386034839 +0200 +++ /work/SRC/openSUSE:Factory/.QTalarm.new.11331/QTalarm.changes 2020-11-09 13:58:58.279759980 +0100 @@ -1,0 +2,6 @@ +Sat Nov 7 18:19:44 UTC 2020 - Martin Hauke <[email protected]> + +- Update to version 2.1.0 + * auto saving all alarm data + +------------------------------------------------------------------- Old: ---- QTalarm-2.0.2.tar.gz New: ---- QTalarm-2.1.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ QTalarm.spec ++++++ --- /var/tmp/diff_new_pack.HlFiP1/_old 2020-11-09 13:58:58.775758898 +0100 +++ /var/tmp/diff_new_pack.HlFiP1/_new 2020-11-09 13:58:58.775758898 +0100 @@ -18,7 +18,7 @@ %define _name qtalarm Name: QTalarm -Version: 2.0.2 +Version: 2.1.0 Release: 0 Summary: A handy alarm clock Program written in QT License: GPL-3.0-only ++++++ QTalarm-2.0.2.tar.gz -> QTalarm-2.1.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/QTalarm-2.0.2/aboutdialog.h new/QTalarm-2.1.0/aboutdialog.h --- old/QTalarm-2.0.2/aboutdialog.h 2020-09-28 00:02:55.000000000 +0200 +++ new/QTalarm-2.1.0/aboutdialog.h 2020-11-06 23:53:42.000000000 +0100 @@ -14,7 +14,7 @@ public: explicit AboutDialog(QWidget *parent = 0); ~AboutDialog(); - const QString version="2.0.2"; + const QString version="2.1.0"; private: Ui::AboutDialog *ui; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/QTalarm-2.0.2/alarm.cpp new/QTalarm-2.1.0/alarm.cpp --- old/QTalarm-2.0.2/alarm.cpp 2020-09-28 00:02:55.000000000 +0200 +++ new/QTalarm-2.1.0/alarm.cpp 2020-11-06 23:53:42.000000000 +0100 @@ -75,5 +75,6 @@ void Alarm::SetVolume(int Volume) { media->setVolume(Volume); + FileIO::SaveVolume(Volume); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/QTalarm-2.0.2/mainwindow.cpp new/QTalarm-2.1.0/mainwindow.cpp --- old/QTalarm-2.0.2/mainwindow.cpp 2020-09-28 00:02:55.000000000 +0200 +++ new/QTalarm-2.1.0/mainwindow.cpp 2020-11-06 23:53:42.000000000 +0100 @@ -160,6 +160,7 @@ Schedule *Active=this->_Schedules->GetSchedule(ui->listWidget->currentRow()); Active->SetTime(ui->timeEdit->time()); UpdateListWidget(); + this->_Schedules->Save(); } } @@ -175,6 +176,7 @@ Active->SetCust(CustomDate); if(Active->isCustomEnabled()) UpdateListWidget(); + this->_Schedules->Save(); } } @@ -253,6 +255,7 @@ this->_Schedules->removeScheduleByIndex(ui->listWidget->currentRow()); PopulateListWidget(); } + this->_Schedules->Save(); } @@ -317,6 +320,7 @@ }else{ ui->txtSoundPath->setText(""); } + this->_Schedules->Save(); } void MainWindow::TestAlarm() @@ -445,4 +449,5 @@ int index=ui->listWidget->currentRow(); PopulateListWidget(); ui->listWidget->setCurrentRow(index); + this->_Schedules->Save(); }
