mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-13 00:33:09 -07: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:
parent
e4c7f52bb3
commit
ff9a281b72
797 changed files with 841 additions and 829 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue