Skip to content

Commit 7b64642

Browse files
committed
Bump to 1.4.0
1 parent f9ef01b commit 7b64642

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

data/com.github.bcedu.valasimplehttpserver.appdata.xml.in

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@ Do you have a film in the computer and you want to watch it on the mobile phone?
3131
</screenshot>
3232
</screenshots>
3333
<releases>
34+
<release version="1.4.0" date="2021-12-21">
35+
<description>
36+
<p>Suport for large files (more than 1 GB)</p>
37+
<p>Suport for files with special characters in the name (`, $, %, etc.)</p>
38+
</description>
39+
</release>
3440
<release version="1.3.5" date="2019-10-30">
3541
<description>
3642
<p>Dutch translations</p>

data/meson.build

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,26 @@ if compile_schemas.found()
3939
args: ['--strict', '--dry-run', meson.current_source_dir()]
4040
)
4141
endif
42+
43+
#Install icons
44+
install_data(
45+
join_paths('icons', meson.project_name() + '.svg'),
46+
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor')
47+
)
48+
install_data(
49+
join_paths('icons', meson.project_name() + '.svg'),
50+
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', 'scalable', 'apps')
51+
)
52+
icon_sizes = ['32', '48', '64', '128', '256']
53+
foreach i : icon_sizes
54+
install_data(
55+
join_paths('icons', meson.project_name() + '.svg'),
56+
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i, 'apps')
57+
)
58+
endforeach
59+
foreach i : icon_sizes
60+
install_data(
61+
join_paths('icons', meson.project_name() + '.svg'),
62+
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i +'@2', 'apps')
63+
)
64+
endforeach

0 commit comments

Comments
 (0)