version 2.4

This commit is contained in:
Daniel Tartavel 2023-02-15 13:48:38 +01:00
parent 7e424a57b5
commit 623ad81c6b
2 changed files with 5 additions and 4 deletions

View File

@ -2,7 +2,7 @@
Name: rsyncui Name: rsyncui
Summary: Client for rsync server Summary: Client for rsync server
Version: 2.3.1 Version: 2.4
Release: %mkrel 1 Release: %mkrel 1
License: GPLv3 License: GPLv3
Group: Networking/Remote access Group: Networking/Remote access

View File

@ -69,7 +69,7 @@ class Downloading
QString path; QString path;
QString savePath; QString savePath;
QProcess * process = nullptr; QProcess * process = nullptr;
bool quit = false;
void clear(); void clear();
}; };
@ -77,7 +77,7 @@ class About
{ {
public: public:
QString title = "RsyncUI"; QString title = "RsyncUI";
QString version = "2.3.1"; QString version = "2.4";
QString author = "Daniel TARTAVEL-JEANNOT"; QString author = "Daniel TARTAVEL-JEANNOT";
QString licence = "GPL_V3"; QString licence = "GPL_V3";
QString description; QString description;
@ -149,6 +149,7 @@ class MainWindow : public QMainWindow
void initSystemTrayIcon(); void initSystemTrayIcon();
void hideWindow(); void hideWindow();
void showWindow(); void showWindow();
void init();
private slots: private slots:
@ -200,8 +201,8 @@ signals:
void stopDownloading(QProcess *); void stopDownloading(QProcess *);
void progressSignal(int); void progressSignal(int);
void finishedSignal(bool = true); void finishedSignal(bool = true);
void fileName(QString);
//void errorSignal(QString); //void errorSignal(QString);
}; };
#endif // MAINWINDOW_H #endif // MAINWINDOW_H