Skip to content

Commit

Permalink
Version Bump,
Browse files Browse the repository at this point in the history
Basic SkyrimSE changes
  • Loading branch information
LePresidente committed Dec 12, 2016
1 parent 0657774 commit afa0cb9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/gameinfoimpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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()));
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/instancemanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"));
Expand Down
4 changes: 2 additions & 2 deletions src/version.rc
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit afa0cb9

Please sign in to comment.