diff options
| author | Tannin <devnull@localhost> | 2013-09-15 15:20:00 +0200 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2013-09-15 15:20:00 +0200 |
| commit | 98e5e57a845541acddf519a81957261f58008cb9 (patch) | |
| tree | ce3c8f9c5b7c4b48e46b5d825f49a752ad62d10d /src/organizer.pro | |
| parent | dce78b62b839c17f41a0fcd2890ffc0005be7a3b (diff) | |
- added support for mod page plugins
- re-introduced the integrated browser
- added a plugin to download from the tes alliance page
- the download list now contains the file description
- nexus interface now stores cookies persistently to reduce number of required log-ins
Diffstat (limited to 'src/organizer.pro')
| -rw-r--r-- | src/organizer.pro | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/src/organizer.pro b/src/organizer.pro index 339a50cd..6b8036e5 100644 --- a/src/organizer.pro +++ b/src/organizer.pro @@ -5,9 +5,9 @@ #-------------------------------------------------
contains(QT_VERSION, "^5.*") {
- QT += core gui widgets network declarative script xml sql xmlpatterns
+ QT += core gui widgets network declarative script xml sql xmlpatterns webkit
} else {
- QT += core gui network xml declarative script sql xmlpatterns
+ QT += core gui network xml declarative script sql xmlpatterns webkit
}
TARGET = ModOrganizer
@@ -80,7 +80,10 @@ SOURCES += \ serverinfo.cpp \
../esptk/record.cpp \
../esptk/espfile.cpp \
- ../esptk/subrecord.cpp
+ ../esptk/subrecord.cpp \
+ browserview.cpp \
+ browserdialog.cpp \
+ persistentcookiejar.cpp
HEADERS += \
transfersavesdialog.h \
@@ -148,7 +151,10 @@ HEADERS += \ serverinfo.h \
../esptk/record.h \
../esptk/espfile.h \
- ../esptk/subrecord.h
+ ../esptk/subrecord.h \
+ browserview.h \
+ browserdialog.h \
+ persistentcookiejar.h
FORMS += \
transfersavesdialog.ui \
@@ -178,7 +184,8 @@ FORMS += \ activatemodsdialog.ui \
profileinputdialog.ui \
savetextasdialog.ui \
- problemsdialog.ui
+ problemsdialog.ui \
+ browserdialog.ui
INCLUDEPATH += ../shared ../archive ../uibase ../bsatk ../esptk "$(BOOSTPATH)"
|
