From 61edeb12f10707a03aea33e67ea6fd47990ee543 Mon Sep 17 00:00:00 2001 From: lepresidente Date: Sun, 4 Dec 2016 17:56:07 +0200 Subject: gameShortName has been replaced by gameNexusName due to syrimse on nexus using skyrimspecialediton. --- src/nexusinterface.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/nexusinterface.cpp b/src/nexusinterface.cpp index 6e989b0d..eba02a6f 100644 --- a/src/nexusinterface.cpp +++ b/src/nexusinterface.cpp @@ -252,12 +252,12 @@ bool NexusInterface::isURLGameRelated(const QUrl &url) const QString NexusInterface::getGameURL() const { - return "http://www.nexusmods.com/" + m_Game->gameShortName().toLower(); + return "http://www.nexusmods.com/" + m_Game->gameNexusName().toLower(); } QString NexusInterface::getOldModsURL() const { - return "http://" + m_Game->gameShortName().toLower() + ".nexusmods.com/mods"; + return "http://" + m_Game->gameNexusName().toLower() + ".nexusmods.com/mods"; } @@ -599,7 +599,7 @@ void NexusInterface::managedGameChanged(IPluginGame const *game) namespace { QString get_management_url(MOBase::IPluginGame const *game) { - return "http://nmm.nexusmods.com/" + game->gameShortName().toLower(); + return "http://nmm.nexusmods.com/" + game->gameNexusName().toLower(); } } -- cgit v1.3.1 From 695593968b0d8b912c0546aafe4ba97c031a590c Mon Sep 17 00:00:00 2001 From: lepresidente Date: Sun, 4 Dec 2016 18:15:59 +0200 Subject: updated email for dump reports. --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/main.cpp b/src/main.cpp index 16b6b80f..d14641a4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -149,7 +149,7 @@ static LONG WINAPI MyUnhandledExceptionFilter(struct _EXCEPTION_POINTERS *except if (QMessageBox::question(nullptr, QObject::tr("Woops"), QObject::tr("ModOrganizer has crashed! " "Should a diagnostic file be created? " - "If you send me this file (%1) to sherb@gmx.net, " + "If you send me this file (%1) to modorganizer@gmail.com, " "the bug is a lot more likely to be fixed. " "Please include a short description of what you were " "doing when the crash happened" -- cgit v1.3.1 From 0657774e2e53a7c280c32943f2a845c7ba783997 Mon Sep 17 00:00:00 2001 From: lepresidente Date: Mon, 12 Dec 2016 08:26:19 +0200 Subject: Use my repo for the updates for now. --- src/selfupdater.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/selfupdater.cpp b/src/selfupdater.cpp index c16be545..1b6b4684 100644 --- a/src/selfupdater.cpp +++ b/src/selfupdater.cpp @@ -123,7 +123,7 @@ void SelfUpdater::testForUpdate() { // TODO: if prereleases are disabled we could just request the latest release // directly - m_GitHub.releases(GitHub::Repository("TanninOne", "modorganizer"), + m_GitHub.releases(GitHub::Repository("LePresidente", "modorganizer"), [this](const QJsonArray &releases) { QJsonObject newest; for (const QJsonValue &releaseVal : releases) { -- cgit v1.3.1 From afa0cb94461ce5a4f9e63af6aaee42105b66a898 Mon Sep 17 00:00:00 2001 From: LePresidente Date: Mon, 12 Dec 2016 05:12:20 -0800 Subject: Version Bump, Basic SkyrimSE changes --- src/gameinfoimpl.cpp | 1 + src/instancemanager.cpp | 2 +- src/version.rc | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/gameinfoimpl.cpp b/src/gameinfoimpl.cpp index 333fd029..61a4c523 100644 --- a/src/gameinfoimpl.cpp +++ b/src/gameinfoimpl.cpp @@ -39,6 +39,7 @@ IGameInfo::Type GameInfoImpl::type() const case GameInfo::TYPE_FALLOUT4: return IGameInfo::TYPE_FALLOUT4; case GameInfo::TYPE_FALLOUTNV: return IGameInfo::TYPE_FALLOUTNV; case GameInfo::TYPE_SKYRIM: return IGameInfo::TYPE_SKYRIM; + case GameInfo::TYPE_SKYRIMSE: return IGameInfo::TYPE_SKYRIMSE; default: throw MyException(QObject::tr("invalid game type %1").arg(GameInfo::instance().getType())); } } diff --git a/src/instancemanager.cpp b/src/instancemanager.cpp index a9182d52..1b0d0e5b 100644 --- a/src/instancemanager.cpp +++ b/src/instancemanager.cpp @@ -72,7 +72,7 @@ QString InstanceManager::queryInstanceName() const // would be neat if we could take the names from the game plugins but // the required initialization order requires the ini file to be // available *before* we load plugins - dialog.setComboBoxItems({ "Oblivion", "Skyrim", "Fallout 3", + dialog.setComboBoxItems({ "Oblivion", "Skyrim", "SkyrimSE", "Fallout 3", "Fallout NV", "Fallout 4" }); dialog.setComboBoxEditable(true); dialog.setWindowTitle(QObject::tr("Enter Instance Name")); diff --git a/src/version.rc b/src/version.rc index 34f9b7dd..bc5ba58e 100644 --- a/src/version.rc +++ b/src/version.rc @@ -1,7 +1,7 @@ #include "Winver.h" -#define VER_FILEVERSION 2,0,7 -#define VER_FILEVERSION_STR "2.0.7beta\0" +#define VER_FILEVERSION 2,0,8 +#define VER_FILEVERSION_STR "2.0.8beta\0" VS_VERSION_INFO VERSIONINFO FILEVERSION VER_FILEVERSION -- cgit v1.3.1