From 98e5e57a845541acddf519a81957261f58008cb9 Mon Sep 17 00:00:00 2001 From: Tannin Date: Sun, 15 Sep 2013 15:20:00 +0200 Subject: - 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 --- src/nxmaccessmanager.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/nxmaccessmanager.cpp') diff --git a/src/nxmaccessmanager.cpp b/src/nxmaccessmanager.cpp index d83ffa61..30a8bb06 100644 --- a/src/nxmaccessmanager.cpp +++ b/src/nxmaccessmanager.cpp @@ -22,6 +22,7 @@ along with Mod Organizer. If not, see . #include "report.h" #include "utility.h" #include "selfupdater.h" +#include "persistentcookiejar.h" #include #include #include @@ -29,6 +30,7 @@ along with Mod Organizer. If not, see . #include #include #include +#include #include #if QT_VERSION >= QT_VERSION_CHECK(5,0,0) @@ -42,6 +44,8 @@ using namespace MOShared; NXMAccessManager::NXMAccessManager(QObject *parent) : QNetworkAccessManager(parent), m_LoginReply(NULL), m_ProgressDialog() { + setCookieJar(new PersistentCookieJar( + QDir::fromNativeSeparators(MOBase::ToQString(MOShared::GameInfo::instance().getCacheDir())) + "/nexus_cookies.dat", this)); } -- cgit v1.3.1