Skip to content

Commit

Permalink
Merge pull request #19 from cassidyjames/icon
Browse files Browse the repository at this point in the history
Icon: add Jakub-based icons
  • Loading branch information
cassidyjames authored Jan 12, 2024
2 parents 028267d + 1f35287 commit 2af6e0c
Show file tree
Hide file tree
Showing 8 changed files with 2,758 additions and 104 deletions.
274 changes: 172 additions & 102 deletions data/icons/app.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,471 changes: 1,471 additions & 0 deletions data/icons/com.cassidyjames.butler.Source.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,063 changes: 1,063 additions & 0 deletions data/icons/devel.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions data/icons/symbolic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 7 additions & 1 deletion data/meson.build
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
install_data(
'icons' / 'app.svg',
install_dir: get_option('datadir') / 'icons' / 'hicolor' / 'scalable' / 'apps',
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', 'scalable', 'apps'),
rename: meson.project_name() + '.svg'
)

install_data(
'icons' / 'symbolic.svg',
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', 'symbolic', 'apps'),
rename: meson.project_name() + '-symbolic.svg'
)

install_data(
'gschema.xml',
install_dir: get_option('datadir') / 'glib-2.0' / 'schemas',
Expand Down
13 changes: 13 additions & 0 deletions data/metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,19 @@
</screenshots>

<releases>
<release version="1.0.3" date="2024-01-06">
<description>
<p>Improved app listing</p>
<ul>
<li>New icon based on Jakub Steiner's excellent work</li>
<li>Refreshed summary and description to better align with Flathub recommendations</li>
</ul>
</description>
<issues>
<issue url="https://github.com/cassidyjames/butler/issues/16">Metainfo: failing summery length</issue>
<issue url="https://github.com/cassidyjames/butler/issues/5">Unique icon</issue>
</issues>
</release>
<release version="1.0.2" date="2024-01-06">
<description>
<p>Small improvements</p>
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'com.cassidyjames.butler',
'vala', 'c',
version: '1.0.2',
version: '1.0.3',
meson_version: '>=0.58',
)

Expand Down
3 changes: 3 additions & 0 deletions src/MainWindow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ public class Butler.MainWindow : Adw.ApplicationWindow {

/// The translator credits. Please translate this with your name(s).
translator_credits = _("translator-credits"),
artists = {
"Jakub Steiner https://jimmac.eu/",
},
};
about_window.copyright = "© 2020–%i %s".printf (
new DateTime.now_local ().get_year (),
Expand Down

0 comments on commit 2af6e0c

Please sign in to comment.