Skip to content

Commit

Permalink
add fallback PNG icons
Browse files Browse the repository at this point in the history
  • Loading branch information
yktoo committed Dec 19, 2021
1 parent e0a159b commit c802d96
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- OS: [e.g. Ubuntu] and its version
- Desktop environment [e.g. GNOME] and its version
- Sound Switcher Indicator version [e.g. 2.3.6]
- Sound Switcher Indicator version [e.g. 2.3.7]

**Indicator log:**
In order to fetch it, quit the indicator from the menu ("Quit"), open Terminal and start it again as follows:
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
indicator-sound-switcher (2.3.7-1) impish; urgency=low

* Provide fallback PNG symbolic icons (addresses #91)

-- Dmitry Kann <yktooo@gmail.com> Sun, 19 Dec 2021 15:07:35 +0100

indicator-sound-switcher (2.3.6-1) hirsute; urgency=low

* Allow assigning same keyboard shortcut to multiple ports (#106)
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 13 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


APP_ID = 'indicator-sound-switcher'
APP_VERSION = '2.3.6'
APP_VERSION = '2.3.7'


def compile_lang_files() -> list:
Expand Down Expand Up @@ -56,17 +56,24 @@ def compile_lang_files() -> list:

data_files = [
# App shortcut
('share/applications', [APP_ID+'.desktop']),
('share/applications', [APP_ID+'.desktop']),

# Autostart entry
('/etc/xdg/autostart', [APP_ID+'.desktop']),
('/etc/xdg/autostart', [APP_ID+'.desktop']),

# Icons
('share/icons/hicolor/scalable/status', ['icons/indicator-sound-switcher-symbolic.svg']),
('share/icons/hicolor/scalable/apps', ['icons/indicator-sound-switcher.svg']),
('share/icons/hicolor/scalable/status', ['icons/indicator-sound-switcher-symbolic.svg']),
('share/icons/hicolor/scalable/apps', ['icons/indicator-sound-switcher.svg']),
('share/icons/hicolor/symbolic/apps', ['icons/indicator-sound-switcher-symbolic.svg']),
('share/icons/hicolor/16x16/apps', ['icons/16/indicator-sound-switcher-symbolic.symbolic.png']),
('share/icons/hicolor/32x32/apps', ['icons/32/indicator-sound-switcher-symbolic.symbolic.png']),
('share/icons/hicolor/48x48/apps', ['icons/48/indicator-sound-switcher-symbolic.symbolic.png']),
('share/icons/hicolor/64x64/apps', ['icons/64/indicator-sound-switcher-symbolic.symbolic.png']),
('share/icons/hicolor/128x128/apps', ['icons/128/indicator-sound-switcher-symbolic.symbolic.png']),
('share/icons/hicolor/256x256/apps', ['icons/256/indicator-sound-switcher-symbolic.symbolic.png']),

# Manpage
('share/man/man1', ['man/indicator-sound-switcher.1']),
('share/man/man1', ['man/indicator-sound-switcher.1']),
]

# Configure
Expand Down

0 comments on commit c802d96

Please sign in to comment.