Skip to content

Commit f22fdd9

Browse files
committed
hmrpf
1 parent 94bde3d commit f22fdd9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+7072
-1776
lines changed

data/icons/128.png

7.79 KB
Loading

data/icons/16.png

688 Bytes
Loading

data/icons/24.png

959 Bytes
Loading

data/icons/256.png

18.5 KB
Loading

data/icons/32.png

1.64 KB
Loading

data/icons/48.png

2.51 KB
Loading

data/icons/64.png

3.69 KB
Loading

data/icons/scalable.svg

Lines changed: 5076 additions & 0 deletions
Loading

data/io.github.ellie_commons.jorts.metainfo.xml.in

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,14 @@
8787
<value key="x-appcenter-suggested-price">1</value>
8888
</custom>
8989
<releases>
90+
<release version="3.1.2" date="2025-05-10">
91+
<description>
92+
<p>3.1.2 Amendments for flathub</p>
93+
<ul>
94+
<li>Nothing interesting here</li>
95+
</ul>
96+
</description>
97+
</release>
9098
<release version="3.1.1" date="2025-05-08">
9199
<description>
92100
<p>3.1.1 Woops</p>

data/meson.build

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,23 @@ i18n.merge_file(
3030
#======== ICONS ========
3131

3232
# Install our icons in all the required sizes
33-
icon_sizes = ['16', '24', '32', '48', '64', '128']
33+
icon_sizes = ['16', '24', '32', '48', '64', '128', '256']
3434

3535
foreach i : icon_sizes
3636
install_data(
37-
'icons' / i + '.svg',
37+
'icons' / i + '.png',
3838
install_dir: get_option('datadir') / 'icons' / 'hicolor' / i + 'x' + i / 'apps',
39-
rename: meson.project_name() + '.svg'
39+
rename: meson.project_name() + '.png'
4040
)
4141
install_data(
42-
'icons' / i + '.svg',
42+
'icons' / i + '.png',
4343
install_dir: get_option('datadir') / 'icons' / 'hicolor' / i + 'x' + i + '@2' / 'apps',
44-
rename: meson.project_name() + '.svg'
44+
rename: meson.project_name() + '.png'
4545
)
4646
endforeach
4747

48-
48+
install_data(
49+
'icons' / 'scalable.svg',
50+
install_dir: get_option('datadir') / 'icons' / 'scalable' / 'apps',
51+
rename: meson.project_name() + '.svg'
52+
)

0 commit comments

Comments
 (0)