diff options
| author | Tannin <devnull@localhost> | 2013-02-22 19:28:54 +0100 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2013-02-22 19:28:54 +0100 |
| commit | 8b4e11060b37ad70754aa665ad59744eadd2dd1e (patch) | |
| tree | 3e0dd354a519a6c6af18fe6d233d03fdb1f6ca62 /src/nexusinterface.cpp | |
| parent | cb297d20b616e49803470396c21dd5747370cfaf (diff) | |
- bugfix: update on overwrite directory leads files incorrectly being assigned to it
- bugfix: getfullpathname reroute now correctly handles relative paths
- bugfix: cwd change to overwrite is now handled too
- bugfix: using the external fomod installer to merge a mod caused error messages because directories couldn't be renamed
- bugfix: The memory for file dialogs wasn't saved to the ini file
- file category (main, update, optional, old) is now stored with the download for future use
- when overwriting a mod, the version of the mod is only increased, never reduced. This is less correct
for the unusual case that the user is downgrading but more correct for the more commen case
he is installing an optional file with incorrect version number
- the install mod dialog now uses the file dialog memory
Diffstat (limited to 'src/nexusinterface.cpp')
| -rw-r--r-- | src/nexusinterface.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nexusinterface.cpp b/src/nexusinterface.cpp index 016cdeef..2a53235d 100644 --- a/src/nexusinterface.cpp +++ b/src/nexusinterface.cpp @@ -365,7 +365,8 @@ void NexusInterface::nextRequest() QNetworkRequest request(url); request.setHeader(QNetworkRequest::ContentTypeHeader, "application/xml"); - request.setRawHeader("User-Agent", QString("Mod Organizer v0.12.0 (compatible to Nexus Client v%1)").arg(m_NMMVersion).toUtf8()); +#pragma message("automatically insert the correct version number") + request.setRawHeader("User-Agent", QString("Mod Organizer v0.12.8 (compatible to Nexus Client v%1)").arg(m_NMMVersion).toUtf8()); info.m_Reply = m_AccessManager->get(request); |
