From e0eb97922d5ef4a1448e76f13374ebfda7fda403 Mon Sep 17 00:00:00 2001 From: Tannin Date: Wed, 27 Mar 2013 20:48:33 +0100 Subject: - added hooks for getFileVersion* functions - automatic donwload retry - support for storing multiple download urls - improved "query info" functionality - some cleanup to download manager code - external fomod installer dialog are now brought to front - added shell... functions to have windows handle problematic situations - added visual clue when filters are active - esps are now automatically activated when installing a mod - added option to never endorse a mod - added "previous" and "next" buttons to mod info dialog - improved the way messagedialog text is shortened - coloring in mod info dialog now visible in other color schemes - plugin list is now saved automatically - vanilla bsas are now enabled even if they are not listed in the ini file - bugfix: setting mod to maximum now doesn't try to place the mod below overwrite --- src/shared/skyriminfo.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/shared/skyriminfo.cpp') diff --git a/src/shared/skyriminfo.cpp b/src/shared/skyriminfo.cpp index 1c13effb..80cf4c80 100644 --- a/src/shared/skyriminfo.cpp +++ b/src/shared/skyriminfo.cpp @@ -131,6 +131,22 @@ std::vector SkyrimInfo::getPrimaryPlugins() return boost::assign::list_of(L"skyrim.esm")(L"update.esm"); } +std::vector SkyrimInfo::getVanillaBSAs() +{ + return boost::assign::list_of(L"Skyrim - Misc.bsa") + (L"Skyrim - Shaders.bsa") + (L"Skyrim - Textures.bsa") + (L"HighResTexturePack01.bsa") + (L"HighResTexturePack02.bsa") + (L"HighResTexturePack03.bsa") + (L"Skyrim - Interface.bsa") + (L"Skyrim - Animations.bsa") + (L"Skyrim - Meshes.bsa") + (L"Skyrim - Sounds.bsa") + (L"Skyrim - Voices.bsa") + (L"Skyrim - VoicesExtra.bsa"); +} + std::vector SkyrimInfo::getIniFileNames() { return boost::assign::list_of(L"skyrim.ini")(L"skyrimprefs.ini"); -- cgit v1.3.1