mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-04 19:38:03 +03:00
[GTK3] Change module structure from ui/gtkui to ui/gtk3
This moves the directory structure so that there is no conflict with the old gtk2 UI. Also changes the conf and state files being loaded.
This commit is contained in:
parent
ca0db4d1a7
commit
01fafd4fe0
71 changed files with 185 additions and 197 deletions
8
setup.py
8
setup.py
|
@ -502,16 +502,16 @@ if windows_check():
|
|||
)
|
||||
_entry_points['gui_scripts'] = [
|
||||
'deluge = deluge.ui.ui_entry:start_ui',
|
||||
'deluge-gtk = deluge.ui.gtkui:start',
|
||||
'deluge-gtk = deluge.ui.gtk3:start',
|
||||
]
|
||||
_entry_points['deluge.ui'] = [
|
||||
'console = deluge.ui.console:Console',
|
||||
'web = deluge.ui.web:Web',
|
||||
'gtk = deluge.ui.gtkui:Gtk',
|
||||
'gtk = deluge.ui.gtk3:Gtk',
|
||||
]
|
||||
|
||||
|
||||
_package_data['deluge'] = [
|
||||
_package_data['deluge.ui'] = [
|
||||
'ui/data/pixmaps/*.png',
|
||||
'ui/data/pixmaps/*.svg',
|
||||
'ui/data/pixmaps/*.ico',
|
||||
|
@ -535,7 +535,7 @@ _package_data['deluge.ui.web'] = [
|
|||
'themes/images/*/*/*.gif',
|
||||
'themes/images/*/*/*.png',
|
||||
]
|
||||
_package_data['deluge.ui.gtkui'] = ['glade/*.ui']
|
||||
_package_data['deluge.ui.gtk3'] = ['glade/*.ui']
|
||||
|
||||
setup_requires = ['setuptools', 'wheel']
|
||||
install_requires = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue