mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Fix Version::dateOfBuild_ on Windows
The `CHATTERINO_NIGHTLY_VERSION_STRING` defines differ on Windows and MacOS/Linux. (See `appveyor.yml` and `travis.yml`, respectively.) Therefore, the Windows version string looked really messed up but it should be fixed now.
This commit is contained in:
parent
5871414e6b
commit
19b2102fed
1 changed files with 2 additions and 7 deletions
|
@ -16,11 +16,11 @@ Version::Version()
|
||||||
this->commitHash_ =
|
this->commitHash_ =
|
||||||
QString(FROM_EXTERNAL_DEFINE(CHATTERINO_GIT_HASH)).remove('"');
|
QString(FROM_EXTERNAL_DEFINE(CHATTERINO_GIT_HASH)).remove('"');
|
||||||
|
|
||||||
// Date of build
|
// Date of build, this is depended on the format not changing
|
||||||
#ifdef CHATTERINO_NIGHTLY_VERSION_STRING
|
#ifdef CHATTERINO_NIGHTLY_VERSION_STRING
|
||||||
this->dateOfBuild_ =
|
this->dateOfBuild_ =
|
||||||
QString(FROM_EXTERNAL_DEFINE(CHATTERINO_NIGHTLY_VERSION_STRING))
|
QString(FROM_EXTERNAL_DEFINE(CHATTERINO_NIGHTLY_VERSION_STRING))
|
||||||
.remove('"');
|
.remove('"').split(' ')[0];
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// "Full" version string, as displayed in window title
|
// "Full" version string, as displayed in window title
|
||||||
|
@ -31,11 +31,6 @@ Version::Version()
|
||||||
}
|
}
|
||||||
|
|
||||||
this->fullVersion_ += this->version_;
|
this->fullVersion_ += this->version_;
|
||||||
|
|
||||||
if (Modes::getInstance().isNightly)
|
|
||||||
{
|
|
||||||
this->fullVersion_ += this->dateOfBuild_;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const Version &Version::getInstance()
|
const Version &Version::getInstance()
|
||||||
|
|
Loading…
Reference in a new issue