You've already forked qBittorrent
mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-10-28 14:50:53 +01:00
Compare commits
1 Commits
v4_3_x
...
release-2.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
82f5fbb52c |
@@ -121,13 +121,13 @@ public:
|
|||||||
void sigintHandler(int) {
|
void sigintHandler(int) {
|
||||||
signal(SIGINT, 0);
|
signal(SIGINT, 0);
|
||||||
qDebug("Catching SIGINT, exiting cleanly");
|
qDebug("Catching SIGINT, exiting cleanly");
|
||||||
app->exit();
|
qApp->exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
void sigtermHandler(int) {
|
void sigtermHandler(int) {
|
||||||
signal(SIGTERM, 0);
|
signal(SIGTERM, 0);
|
||||||
qDebug("Catching SIGTERM, exiting cleanly");
|
qDebug("Catching SIGTERM, exiting cleanly");
|
||||||
app->exit();
|
qApp->exit();
|
||||||
}
|
}
|
||||||
void sigsegvHandler(int) {
|
void sigsegvHandler(int) {
|
||||||
signal(SIGABRT, 0);
|
signal(SIGABRT, 0);
|
||||||
|
|||||||
@@ -12,9 +12,9 @@ CONFIG += qt \
|
|||||||
|
|
||||||
# Update this VERSION for each release
|
# Update this VERSION for each release
|
||||||
os2 {
|
os2 {
|
||||||
DEFINES += VERSION=\'\"v2.3.0rc5\"\'
|
DEFINES += VERSION=\'\"v2.3.0rc6\"\'
|
||||||
} else {
|
} else {
|
||||||
DEFINES += VERSION=\\\"v2.3.0rc5\\\"
|
DEFINES += VERSION=\\\"v2.3.0rc6\\\"
|
||||||
}
|
}
|
||||||
DEFINES += VERSION_MAJOR=2
|
DEFINES += VERSION_MAJOR=2
|
||||||
DEFINES += VERSION_MINOR=3
|
DEFINES += VERSION_MINOR=3
|
||||||
|
|||||||
Reference in New Issue
Block a user