chore: move location of notes file in advance of 7.0 release
Some checks failed
Mirror to Codeberg / mirror-to-codeberg (push) Has been cancelled

This commit is contained in:
aclist 2025-10-26 21:53:19 +09:00
parent 7e45cb0fa2
commit c8e9f8f1fc
3 changed files with 3 additions and 2 deletions

View File

@ -15,6 +15,7 @@
## Changed
- Optimize time cost of setup checks
- Location of notes file
## [6.0.0-beta.7] 2025-09-20
## Added

View File

@ -618,7 +618,7 @@ fetch_helpers_by_sum(){
["funcs"]="6ae3ead7034dc8e7543472bddee75c63"
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
["servers.py"]="ed442c3aecf33f777d59dcf53650d263"
["ui.py"]="f03879f088ad074f2ce3c92607c30202"
["ui.py"]="8d05bbd7b8e15a97fae568e9a3dbf4d6"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
["pefile.py"]="21531f2c0d9dfa5f110cf6779f9d22c0"
)

View File

@ -78,7 +78,7 @@ servers_path = f"{cache_path}/{app_name_abbr}.servers"
config_path = f"{user_path}/.config/dztui"
config_file = f"{config_path}/dztuirc"
history_file = f"{state_path}/{app_name_abbr}.history"
notes_file = f"{state_path}/{app_name_abbr}.notes.json"
notes_file = f"{config_path}/{app_name_abbr}.notes.json"
logger = logging.getLogger(__name__)
log_file = f"{log_path}/{app_name}_DEBUG.log"