Skip to content

Commit

Permalink
Bump to 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bcedu committed Dec 21, 2021
1 parent f9ef01b commit 7b64642
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
6 changes: 6 additions & 0 deletions data/com.github.bcedu.valasimplehttpserver.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ Do you have a film in the computer and you want to watch it on the mobile phone?
</screenshot>
</screenshots>
<releases>
<release version="1.4.0" date="2021-12-21">
<description>
<p>Suport for large files (more than 1 GB)</p>
<p>Suport for files with special characters in the name (`, $, %, etc.)</p>
</description>
</release>
<release version="1.3.5" date="2019-10-30">
<description>
<p>Dutch translations</p>
Expand Down
23 changes: 23 additions & 0 deletions data/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,26 @@ if compile_schemas.found()
args: ['--strict', '--dry-run', meson.current_source_dir()]
)
endif

#Install icons
install_data(
join_paths('icons', meson.project_name() + '.svg'),
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor')
)
install_data(
join_paths('icons', meson.project_name() + '.svg'),
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', 'scalable', 'apps')
)
icon_sizes = ['32', '48', '64', '128', '256']
foreach i : icon_sizes
install_data(
join_paths('icons', meson.project_name() + '.svg'),
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i, 'apps')
)
endforeach
foreach i : icon_sizes
install_data(
join_paths('icons', meson.project_name() + '.svg'),
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i +'@2', 'apps')
)
endforeach

0 comments on commit 7b64642

Please sign in to comment.