summaryrefslogtreecommitdiff
path: root/src/settings.cpp
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2014-02-12 21:00:49 +0100
committerTannin <devnull@localhost>2014-02-12 21:00:49 +0100
commit9c8e43853dfeb6ac80faffe0960222ff0f087fd3 (patch)
treea08077f950ac1c77b33900f4724c11be6a43e877 /src/settings.cpp
parent7aadb476376db1d23ad333abb439639552bb6e19 (diff)
- a few hooks will now somewhat handle file names starting with \\?\
- mod meta information is now (also) saved by a timer to reduce the likelyhood of a data loss in case of a crash - mod meta files are now written to a temporary file and then renamed to real name to reduce chance of breaking the file - updated minimum compatible nmm version to 0.47.0 - bugfix: defaults for newestVersion, version and installationFile when creating an empty mod were integers instead of strings - bugfix: "Plugins" and "Archives" weren't translatable
Diffstat (limited to 'src/settings.cpp')
-rw-r--r--src/settings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/settings.cpp b/src/settings.cpp
index 895094f7..dd3891d4 100644
--- a/src/settings.cpp
+++ b/src/settings.cpp
@@ -223,7 +223,7 @@ QString Settings::getModDirectory() const
QString Settings::getNMMVersion() const
{
- static const QString MIN_NMM_VERSION = "0.46.0";
+ static const QString MIN_NMM_VERSION = "0.47.0";
QString result = m_Settings.value("Settings/nmm_version", MIN_NMM_VERSION).toString();
if (VersionInfo(result) < VersionInfo(MIN_NMM_VERSION)) {
result = MIN_NMM_VERSION;