Skip to content

Commit

Permalink
Use the correct icon extension
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseExposito committed Aug 23, 2024
1 parent 7de7c06 commit 2e024bf
Show file tree
Hide file tree
Showing 8 changed files with 1,850 additions and 7 deletions.
Binary file added data/icons/128/app.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/icons/16/app.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/icons/24/app.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/icons/32/app.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/icons/48/app.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/icons/64/app.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,842 changes: 1,842 additions & 0 deletions data/icons/scalable/app.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 8 additions & 7 deletions data/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,14 @@ icon_sizes = ['16', '24', '32', '48', '64', '128']

foreach i : icon_sizes
install_data(
join_paths('icons', i, 'app.svg'),
rename: meson.project_name() + '.svg',
join_paths('icons', i, 'app.png'),
rename: meson.project_name() + '.png',
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i, 'apps')
)
install_data(
join_paths('icons', i, 'app.svg'),
rename: meson.project_name() + '.svg',
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i + '@2', 'apps')
)
endforeach

install_data(
join_paths('icons', 'scalable', 'app.svg'),
rename: meson.project_name() + '.svg',
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', 'scalable', 'apps')
)

0 comments on commit 2e024bf

Please sign in to comment.