FEATURE: qBittorrent can update itself from Sourceforge (Windows/Mac OS X only)

This commit is contained in:
Christophe Dumez
2010-10-23 21:46:05 +00:00
parent e3ccea3b17
commit 166dad51d5
11 changed files with 426 additions and 78 deletions

View File

@@ -12,9 +12,9 @@ CONFIG += qt \
# Update this VERSION for each release
os2 {
DEFINES += VERSION=\'\"v2.5.0beta1\"\'
DEFINES += VERSION=\'\"v2.5.0beta2\"\'
} else {
DEFINES += VERSION=\\\"v2.5.0beta1\\\"
DEFINES += VERSION=\\\"v2.5.0beta2\\\"
}
DEFINES += VERSION_MAJOR=2
DEFINES += VERSION_MINOR=5
@@ -312,8 +312,13 @@ contains(DEFINES, DISABLE_GUI) {
torrentcreatordlg.h \
torrentimportdlg.h
win32 {
HEADERS += programupdater.h
}
macx {
HEADERS += qmacapplication.h
HEADERS += qmacapplication.h \
programupdater.h
}
}
@@ -382,8 +387,13 @@ SOURCES += main.cpp \
torrentcreatordlg.cpp \
torrentimportdlg.cpp
win32 {
SOURCES += programupdater.cpp
}
macx {
SOURCES += qmacapplication.cpp
SOURCES += qmacapplication.cpp \
programupdater.cpp
}
}