Skip to content

Commit 25636ec

Browse files
committed
Release version 1.2.0
1 parent 66976b9 commit 25636ec

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

data/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<key>CFBundleName</key>
66
<string>RazerGenie</string>
77
<key>CFBundleShortVersionString</key>
8-
<string>1.1.0</string>
8+
<string>1.2.0</string>
99
<key>CFBundleIdentifier</key>
1010
<string>xyz.z3ntu.razergenie</string>
1111
<key>CFBundleIconFile</key>

data/xyz.z3ntu.razergenie.appdata.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,23 @@
2222
<url type="translate">https://github.com/z3ntu/RazerGenie/wiki/Translations</url>
2323

2424
<releases>
25+
<release version="1.2.0" date="2024-11-10">
26+
<description>
27+
<ul>
28+
<li>Introduce tab layout for different device settings</li>
29+
<li>Add support for the 'wheel' effect</li>
30+
<li>Add display/controls for battery percent, charging status, idle time and low battery threshold</li>
31+
<li>Add percentage display to brightness slider</li>
32+
<li>Implement UI for DPI stages</li>
33+
<li>Set minimum value for DPI slider &amp; spinbox</li>
34+
<li>Hide DPI Y elements when Lock X/Y is enabled</li>
35+
<li>Snap the DPI Y value to the current X value if the box was checked</li>
36+
<li>Invert 'auto-start daemon on startup' setting</li>
37+
<li>Add Bulgarian and Esperanto translation</li>
38+
<li>Support translations for strings from libopenrazer</li>
39+
</ul>
40+
</description>
41+
</release>
2542
<release version="1.1.0" date="2023-10-13">
2643
<description>
2744
<ul>

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('razergenie', 'cpp',
2-
version : '1.1.0',
2+
version : '1.2.0',
33
meson_version : '>=0.49.0',
44
default_options : ['cpp_std=c++11'])
55

@@ -9,7 +9,7 @@ add_project_arguments('-DQT_DISABLE_DEPRECATED_BEFORE=0x050F00', language : 'cpp
99
qt = import('qt5')
1010
qt_dep = dependency('qt5', modules: ['Core', 'DBus', 'Gui', 'Network', 'Widgets'])
1111

12-
libopenrazer_dep = dependency('libopenrazer', version : '>=0.2.0', fallback : ['libopenrazer', 'libopenrazer_dep'])
12+
libopenrazer_dep = dependency('libopenrazer', version : '>=0.3.0', fallback : ['libopenrazer', 'libopenrazer_dep'])
1313

1414
if build_machine.system() == 'darwin'
1515
razergenie_data_dir = 'Contents/Resources'

0 commit comments

Comments
 (0)