From 623ad81c6b096fd6a57160c457e3f2029f40e835 Mon Sep 17 00:00:00 2001 From: Daniel Tartavel Date: Wed, 15 Feb 2023 13:48:38 +0100 Subject: [PATCH] version 2.4 --- RsyncUI.spec | 2 +- mainwindow.h | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/RsyncUI.spec b/RsyncUI.spec index 05b42f4..724a637 100644 --- a/RsyncUI.spec +++ b/RsyncUI.spec @@ -2,7 +2,7 @@ Name: rsyncui Summary: Client for rsync server -Version: 2.3.1 +Version: 2.4 Release: %mkrel 1 License: GPLv3 Group: Networking/Remote access diff --git a/mainwindow.h b/mainwindow.h index fd5b487..e856786 100644 --- a/mainwindow.h +++ b/mainwindow.h @@ -69,7 +69,7 @@ class Downloading QString path; QString savePath; QProcess * process = nullptr; - + bool quit = false; void clear(); }; @@ -77,7 +77,7 @@ class About { public: QString title = "RsyncUI"; - QString version = "2.3.1"; + QString version = "2.4"; QString author = "Daniel TARTAVEL-JEANNOT"; QString licence = "GPL_V3"; QString description; @@ -149,6 +149,7 @@ class MainWindow : public QMainWindow void initSystemTrayIcon(); void hideWindow(); void showWindow(); + void init(); private slots: @@ -200,8 +201,8 @@ signals: void stopDownloading(QProcess *); void progressSignal(int); void finishedSignal(bool = true); + void fileName(QString); //void errorSignal(QString); - }; #endif // MAINWINDOW_H