Skip to content

Commit e1c0152

Browse files
committed
Add the relase to MetaInfo; fix version numbers
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).
1 parent d63e4bd commit e1c0152

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ endif()
66
set(IDENTIFIER "io.github.quotient_im.Quaternion")
77
set(COPYRIGHT "Copyright © 2015-2024 The Quaternion contributors")
88

9-
project(quaternion VERSION 0.0.96.91 LANGUAGES CXX)
9+
project(quaternion VERSION 0.0.96.81 LANGUAGES CXX)
1010

1111
if(UNIX AND NOT APPLE)
1212
set(LINUX 1)

client/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ int main( int argc, char* argv[] )
6767
QApplication::setOrganizationName(u"Quotient"_s);
6868
QApplication::setApplicationName(u"quaternion"_s);
6969
QApplication::setApplicationDisplayName(u"Quaternion"_s);
70-
QApplication::setApplicationVersion(u"0.0.96.91"_s);
70+
QApplication::setApplicationVersion(u"0.0.97 beta"_s);
7171
QApplication::setDesktopFileName(AppId);
7272

7373
using Quotient::Settings;

linux/io.github.quotient_im.Quaternion.appdata.xml

+6
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@
4242
</replaces>
4343

4444
<releases>
45+
<release version="0.0.96.81" type="development" date="2024-11-03">
46+
<url>https://github.com/quotient-im/Quaternion/releases/tag/0.0.97-beta1</url>
47+
<description><p>0.0.97 beta</p>
48+
<p>Port Quaternion to libQuotient 0.9</p>
49+
</description>
50+
</release>
4551
<release version="0.0.96.1" date="2024-02-19">
4652
<url>https://github.com/quotient-im/Quaternion/releases/tag/0.0.96.1</url>
4753
<description><p>Changes since 0.0.96:</p>

0 commit comments

Comments
 (0)