mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 14:38:04 -06:00
Change project directory structure.
Change project directory structure according to application structure. Change 'nox' configuration option to something more meaningful 'nogui'. Rename 'Icons' folder to 'icons' (similar to other folders). Partially add 'nowebui' option support. Remove QConf project file.
This commit is contained in:
@@ -45,7 +45,7 @@ lang_file.write(output)
|
||||
lang_file.close()
|
||||
|
||||
# update search_engine directory
|
||||
os.chdir('searchengine')
|
||||
os.chdir('gui/searchengine')
|
||||
search_list = []
|
||||
for nova_folder in ['nova/', 'nova3']:
|
||||
for root, dirs, files in os.walk(nova_folder):
|
||||
@@ -67,11 +67,11 @@ search_file = open('search.qrc', 'w')
|
||||
search_file.write(output)
|
||||
search_file.close()
|
||||
|
||||
os.chdir('..');
|
||||
os.chdir('../..');
|
||||
|
||||
# update icons files directory
|
||||
icons_list = []
|
||||
for root, dirs, files in os.walk('Icons'):
|
||||
for root, dirs, files in os.walk('icons'):
|
||||
if 'skin_unused' in dirs:
|
||||
dirs.remove('skin_unused')
|
||||
for file in files:
|
||||
|
||||
Reference in New Issue
Block a user