Skip to content

Commit a6873c1

Browse files
authored
Merge pull request #121 from teamcons/modernize
modernize, simplify
2 parents 97578f1 + 19a427b commit a6873c1

File tree

8 files changed

+19
-9
lines changed

8 files changed

+19
-9
lines changed

com.github.elfenware.badger.flathub.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
app-id: com.github.elfenware.badger
1+
id: com.github.elfenware.badger
22

33
# elementary SDK is not available on Flathub, so use the elementary BaseApp instead
44
base: io.elementary.BaseApp

com.github.elfenware.badger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
app-id: com.github.elfenware.badger
1+
id: com.github.elfenware.badger
22

33
runtime: io.elementary.Platform
44
runtime-version: '8.2'
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[Desktop Entry]
22
Type=Application
3+
Version=1.5
34
Name=Badger
45
GenericName=Ergonomic Reminder
56
Comment=Remind yourself to relax your eyes and limbs
@@ -8,4 +9,6 @@ Icon=com.github.elfenware.badger
89
Terminal=false
910
Categories=Office;Utility;GTK;
1011
Keywords=Ergonomics;Health;Eyes;Muscles;
11-
X-GNOME-UsesNotifications=true
12+
StartupNotify=true
13+
SingleMainWindow=true
14+
X-GNOME-UsesNotifications=true
File renamed without changes.

data/com.github.elfenware.badger.metainfo.xml.in renamed to data/badger.metainfo.xml.in

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,13 @@
3131
<color type="primary" scheme_preference="dark">#1a1a1a</color>
3232
</branding>
3333
<releases>
34+
<release version="5.0.1" date="2025-10-01">
35+
<description>
36+
<ul>
37+
<li>Update: More efficient notification management</li>
38+
</ul>
39+
</description>
40+
</release>
3441
<release version="5.0.0" date="2025-06-27">
3542
<description>
3643
<ul>

data/meson.build

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11

22
#======== SETTINGS ========
33
install_data (
4-
'com.github.elfenware.badger.gschema.xml',
4+
'badger.gschema.xml',
55
install_dir: get_option('datadir') / 'glib-2.0' / 'schemas',
66
rename: meson.project_name() + '.gschema.xml'
77
)
88

99
#======== Internationalization ========
1010
#Translate and install our .desktop file
1111
i18n.merge_file(
12-
input: 'com.github.elfenware.badger.desktop.in',
12+
input: 'badger.desktop.in',
1313
output: meson.project_name() + '.desktop',
1414
po_dir: meson.project_source_root() / 'po' / 'extra',
1515
type: 'desktop',
@@ -19,7 +19,7 @@ i18n.merge_file(
1919

2020
#Translate and install our .metainfo file
2121
i18n.merge_file(
22-
input: 'com.github.elfenware.badger.metainfo.xml.in',
22+
input: 'badger.metainfo.xml.in',
2323
output: meson.project_name() + '.metainfo.xml',
2424
po_dir: meson.project_source_root() / 'po' / 'extra',
2525
install: true,

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# project name and programming language
2-
project('com.github.elfenware.badger', 'vala', 'c', version: '5.0.0')
2+
project('com.github.elfenware.badger', 'vala', 'c', version: '5.0.1')
33

44
gnome = import('gnome')
55
i18n = import('i18n')

po/extra/POTFILES

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
data/com.github.elfenware.badger.desktop.in
2-
data/com.github.elfenware.badger.metainfo.xml.in
1+
data/badger.desktop.in
2+
data/badger.metainfo.xml.in

0 commit comments

Comments
 (0)