Skip to content

Commit

Permalink
Fix: setup.py trying to install from old icon filenames. Ref #195
Browse files Browse the repository at this point in the history
  • Loading branch information
kozec committed Sep 2, 2015
1 parent 67ab406 commit 570c391
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,15 @@ def find_package_modules(self, package, package_dir):
('share/syncthing-gtk', glob.glob("*.glade") ),
('share/syncthing-gtk', glob.glob("scripts/syncthing-plugin-*.py") ),
('share/syncthing-gtk/icons', [
"icons/%s.png" % x for x in (
"icons/%s.svg" % x for x in (
'add_node', 'add_repo', 'address',
'announce', 'clock', 'compress', 'cpu', 'dl_rate',
'eye', 'folder', 'global', 'home', 'ignore', 'lock',
'ram', 'restart', 'settings', 'shared', 'show_id',
'shutdown', 'show_id', 'sync', 'thumb_up',
'up_rate', 'version'
'ram', 'shared', 'show_id', 'show_id', 'sync', 'thumb_up',
'up_rate', 'version', 'rescan'
)] + [
"icons/%s.png" % x for x in (
'restart', 'settings', 'shutdown', "st-gtk-logo"
)]),
('share/icons/hicolor/64x64/emblems', glob.glob("icons/emblem-*.png") ),
('share/pixmaps', ["icons/syncthing-gtk.png"]),
Expand Down

0 comments on commit 570c391

Please sign in to comment.