diff options
| author | Salanto <62221668+Salanto@users.noreply.github.com> | 2024-07-31 11:55:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-31 11:55:25 +0200 |
| commit | 4d1b0517e3d5704b26df7d8a9a492d182d36ea4b (patch) | |
| tree | 3c88dca3a7a4591e59cf36b8faa60cff9569995f /src/aoapplication.cpp | |
| parent | e82726ba5b4a2faf8caea747789d71f1e717f7f8 (diff) | |
V2.11.0 rc1 fixes (#1029)
* Use unix timestamp to transmit ban duration
* Cleanup compiler warning due to narrowing conversion
* Fix preanim not being visible
This is apparently not a feature we want from WebAO :^)
* Bump to RC2
* Use std::chrono instead
* Remove random include and debug call
Diffstat (limited to 'src/aoapplication.cpp')
| -rw-r--r-- | src/aoapplication.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/aoapplication.cpp b/src/aoapplication.cpp index dd5821db..da7c1e2b 100644 --- a/src/aoapplication.cpp +++ b/src/aoapplication.cpp @@ -119,7 +119,7 @@ void AOApplication::destruct_courtroom() QString AOApplication::get_version_string() { - return QString::number(RELEASE) + "." + QString::number(MAJOR_VERSION) + "." + QString::number(MINOR_VERSION) + " RC1"; + return QString::number(RELEASE) + "." + QString::number(MAJOR_VERSION) + "." + QString::number(MINOR_VERSION) + " RC2"; } QString AOApplication::find_image(QStringList p_list) |
