Skip to content

Commit da29000

Browse files
committed
2.2.0
1 parent 1cd02fb commit da29000

File tree

4 files changed

+19
-6
lines changed

4 files changed

+19
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [2.2.0] - 2026-01-15
5+
- Update GNOME Runtime to 49
6+
- Update app and flatpak metadata files
7+
- Update translations
8+
49
## [2.1.0] - 2024-02-23
510
- New app icon
611
- Port to AdwToolbarView to get up-to-date with the modern platform styling

data/com.github.huluti.Coulr.appdata.xml.in

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,15 @@
4141
<launchable type="desktop-id">com.github.huluti.Coulr.desktop</launchable>
4242

4343
<releases>
44+
<release version="2.2.0" date="2026-01-15">
45+
<description translate="no">
46+
<ul>
47+
<li>Update GNOME Runtime to 49</li>
48+
<li>Update app and flatpak metadata files</li>
49+
<li>Update translations</li>
50+
</ul>
51+
</description>
52+
</release>
4453
<release version="2.1.0" date="2024-02-23">
4554
<description translate="no">
4655
<ul>

meson.build

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
project('coulr',
2-
version: '2.1.0',
3-
meson_version: '>= 0.50.0',
4-
default_options: [ 'warning_level=2',
5-
],
2+
version: '2.2.0',
3+
meson_version: '>= 0.59.0',
4+
default_options: [ 'warning_level=2', 'werror=false', ],
65
)
76

87
i18n = import('i18n')

src/window.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ def output_rgb(self):
269269
rgb = hex_to_rgb(value)
270270
return rgb
271271
elif combo_id == "rgb":
272-
pattern = re.compile(" ?rgb\( ?[0-9]+ ?, ?[0-9]+ ?, ?[0-9]+ ?\) ?")
272+
pattern = re.compile(r" ?rgb\( ?[0-9]+ ?, ?[0-9]+ ?, ?[0-9]+ ?\) ?")
273273
if pattern.match(value):
274274
rgb = parse_rgb(value)
275275
return rgb
@@ -310,7 +310,7 @@ def about_dialog(self, action, info):
310310
"""About dialog"""
311311
about_dialog = Adw.AboutWindow()
312312
about_dialog.set_application_name(self.app_name)
313-
about_dialog.set_version("2.1.0")
313+
about_dialog.set_version("2.2.0")
314314
about_dialog.set_copyright("Hugo Posnic")
315315
about_dialog.set_comments(_("Enjoy colors and feel happy!"))
316316
about_dialog.set_website("https://github.com/Huluti/{}"

0 commit comments

Comments
 (0)