Skip to content

Commit

Permalink
Add the relase to MetaInfo; fix version numbers
Browse files Browse the repository at this point in the history
main.cpp should use the human-readable version; CMakeLists.txt and
MetaInfo file should have the numeric one, ending with 81 not 91
(90-based numbers are for RCs).
  • Loading branch information
KitsuneRal committed Nov 3, 2024
1 parent d63e4bd commit e1c0152
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ endif()
set(IDENTIFIER "io.github.quotient_im.Quaternion")
set(COPYRIGHT "Copyright © 2015-2024 The Quaternion contributors")

project(quaternion VERSION 0.0.96.91 LANGUAGES CXX)
project(quaternion VERSION 0.0.96.81 LANGUAGES CXX)

if(UNIX AND NOT APPLE)
set(LINUX 1)
Expand Down
2 changes: 1 addition & 1 deletion client/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ int main( int argc, char* argv[] )
QApplication::setOrganizationName(u"Quotient"_s);
QApplication::setApplicationName(u"quaternion"_s);
QApplication::setApplicationDisplayName(u"Quaternion"_s);
QApplication::setApplicationVersion(u"0.0.96.91"_s);
QApplication::setApplicationVersion(u"0.0.97 beta"_s);
QApplication::setDesktopFileName(AppId);

using Quotient::Settings;
Expand Down
6 changes: 6 additions & 0 deletions linux/io.github.quotient_im.Quaternion.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@
</replaces>

<releases>
<release version="0.0.96.81" type="development" date="2024-11-03">
<url>https://github.com/quotient-im/Quaternion/releases/tag/0.0.97-beta1</url>
<description><p>0.0.97 beta</p>
<p>Port Quaternion to libQuotient 0.9</p>
</description>
</release>
<release version="0.0.96.1" date="2024-02-19">
<url>https://github.com/quotient-im/Quaternion/releases/tag/0.0.96.1</url>
<description><p>Changes since 0.0.96:</p>
Expand Down

0 comments on commit e1c0152

Please sign in to comment.