增加了保存歌词时不保存歌词时间的设定,增加了自动初始化文件夹的功能,修复了设置歌词文件名格式不生效的bug
This commit is contained in:
BIN
modules/utils/__pycache__/__init__.cpython-311.pyc
Normal file
BIN
modules/utils/__pycache__/__init__.cpython-311.pyc
Normal file
Binary file not shown.
BIN
modules/utils/__pycache__/bar.cpython-311.pyc
Normal file
BIN
modules/utils/__pycache__/bar.cpython-311.pyc
Normal file
Binary file not shown.
BIN
modules/utils/__pycache__/clear_screen.cpython-311.pyc
Normal file
BIN
modules/utils/__pycache__/clear_screen.cpython-311.pyc
Normal file
Binary file not shown.
BIN
modules/utils/__pycache__/dump.cpython-311.pyc
Normal file
BIN
modules/utils/__pycache__/dump.cpython-311.pyc
Normal file
Binary file not shown.
BIN
modules/utils/__pycache__/inputs.cpython-311.pyc
Normal file
BIN
modules/utils/__pycache__/inputs.cpython-311.pyc
Normal file
Binary file not shown.
BIN
modules/utils/__pycache__/length.cpython-311.pyc
Normal file
BIN
modules/utils/__pycache__/length.cpython-311.pyc
Normal file
Binary file not shown.
BIN
modules/utils/__pycache__/prints.cpython-311.pyc
Normal file
BIN
modules/utils/__pycache__/prints.cpython-311.pyc
Normal file
Binary file not shown.
11
modules/utils/initapp.py
Normal file
11
modules/utils/initapp.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from os import mkdir
|
||||
from os.path import exists
|
||||
|
||||
INIT_DIRECTORIES = [
|
||||
'out'
|
||||
]
|
||||
|
||||
def init_directories():
|
||||
for dir_name in INIT_DIRECTORIES:
|
||||
if not exists(dir_name):
|
||||
mkdir(dir_name)
|
Reference in New Issue
Block a user