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
Summary: Client for rsync server
Version: 2.3.1
Version: 2.4
Release: %mkrel 1
License: GPLv3
Group: Networking/Remote access

View File

@ -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