mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 21:07:59 +03:00
Merge branch 'itshappening' into 'master'
Some checks failed
Build and test / Ubuntu (push) Has been cancelled
Build and test / MacOS (push) Has been cancelled
Build and test / Read .env file and expose it as output (push) Has been cancelled
Build and test / Windows (2019) (push) Has been cancelled
Build and test / Windows (2022) (push) Has been cancelled
Some checks failed
Build and test / Ubuntu (push) Has been cancelled
Build and test / MacOS (push) Has been cancelled
Build and test / Read .env file and expose it as output (push) Has been cancelled
Build and test / Windows (2019) (push) Has been cancelled
Build and test / Windows (2022) (push) Has been cancelled
Bump us up to 0.50.0 See merge request OpenMW/openmw!4502
This commit is contained in:
commit
6e1cbcce61
5 changed files with 12 additions and 5 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
0.50.0
|
||||||
|
------
|
||||||
|
|
||||||
|
|
||||||
0.49.0
|
0.49.0
|
||||||
------
|
------
|
||||||
|
|
||||||
|
|
|
@ -80,7 +80,7 @@ endif()
|
||||||
message(STATUS "Configuring OpenMW...")
|
message(STATUS "Configuring OpenMW...")
|
||||||
|
|
||||||
set(OPENMW_VERSION_MAJOR 0)
|
set(OPENMW_VERSION_MAJOR 0)
|
||||||
set(OPENMW_VERSION_MINOR 49)
|
set(OPENMW_VERSION_MINOR 50)
|
||||||
set(OPENMW_VERSION_RELEASE 0)
|
set(OPENMW_VERSION_RELEASE 0)
|
||||||
set(OPENMW_LUA_API_REVISION 72)
|
set(OPENMW_LUA_API_REVISION 72)
|
||||||
set(OPENMW_POSTPROCESSING_API_REVISION 2)
|
set(OPENMW_POSTPROCESSING_API_REVISION 2)
|
||||||
|
|
|
@ -5,7 +5,7 @@ OpenMW is an open-source open-world RPG game engine that supports playing Morrow
|
||||||
|
|
||||||
OpenMW also comes with OpenMW-CS, a replacement for Bethesda's Construction Set.
|
OpenMW also comes with OpenMW-CS, a replacement for Bethesda's Construction Set.
|
||||||
|
|
||||||
* Version: 0.49.0
|
* Version: 0.50.0
|
||||||
* License: GPLv3 (see [LICENSE](https://gitlab.com/OpenMW/openmw/-/raw/master/LICENSE) for more information)
|
* License: GPLv3 (see [LICENSE](https://gitlab.com/OpenMW/openmw/-/raw/master/LICENSE) for more information)
|
||||||
* Website: https://www.openmw.org
|
* Website: https://www.openmw.org
|
||||||
* IRC: #openmw on irc.libera.chat
|
* IRC: #openmw on irc.libera.chat
|
||||||
|
|
|
@ -660,11 +660,13 @@ void MWState::StateManager::loadGame(const Character* character, const std::file
|
||||||
// Report the last version still capable of reading this save
|
// Report the last version still capable of reading this save
|
||||||
if (e.getFormatVersion() <= ESM::OpenMW0_48SaveGameFormatVersion)
|
if (e.getFormatVersion() <= ESM::OpenMW0_48SaveGameFormatVersion)
|
||||||
release = "OpenMW 0.48.0";
|
release = "OpenMW 0.48.0";
|
||||||
|
else if (e.getFormatVersion() <= ESM::OpenMW0_49SaveGameFormatVersion)
|
||||||
|
release = "OpenMW 0.49.0";
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// Insert additional else if statements above to cover future releases
|
// Insert additional else if statements above to cover future releases
|
||||||
static_assert(ESM::MinSupportedSaveGameFormatVersion <= ESM::OpenMW0_49SaveGameFormatVersion);
|
static_assert(ESM::MinSupportedSaveGameFormatVersion <= ESM::OpenMW0_50SaveGameFormatVersion);
|
||||||
release = "OpenMW 0.49.0";
|
release = "OpenMW 0.50.0";
|
||||||
}
|
}
|
||||||
auto l10n = MWBase::Environment::get().getL10nManager()->getContext("OMWEngine");
|
auto l10n = MWBase::Environment::get().getL10nManager()->getContext("OMWEngine");
|
||||||
std::string error = l10n->formatMessage("LoadingRequiresOldVersionError", { "version" }, { release });
|
std::string error = l10n->formatMessage("LoadingRequiresOldVersionError", { "version" }, { release });
|
||||||
|
|
|
@ -32,7 +32,8 @@ namespace ESM
|
||||||
|
|
||||||
inline constexpr FormatVersion MinSupportedSaveGameFormatVersion = 5;
|
inline constexpr FormatVersion MinSupportedSaveGameFormatVersion = 5;
|
||||||
inline constexpr FormatVersion OpenMW0_48SaveGameFormatVersion = 21;
|
inline constexpr FormatVersion OpenMW0_48SaveGameFormatVersion = 21;
|
||||||
inline constexpr FormatVersion OpenMW0_49SaveGameFormatVersion = CurrentSaveGameFormatVersion;
|
inline constexpr FormatVersion OpenMW0_49SaveGameFormatVersion = 34;
|
||||||
|
inline constexpr FormatVersion OpenMW0_50SaveGameFormatVersion = CurrentSaveGameFormatVersion;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue