Compare commits

...

10 Commits

Author SHA1 Message Date
aclist
85d04d8cdb
Merge c8e9f8f1fc into 661329877f 2025-10-26 12:53:28 +00:00
aclist
c8e9f8f1fc 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
2025-10-26 21:53:19 +09:00
aclist
661329877f
Merge pull request #232 from GaryBlackbourne/fix-deadlock-on-ip-api-server
Some checks failed
Mirror to Codeberg / mirror-to-codeberg (push) Has been cancelled
Fix deadlock on ip api server
2025-10-25 11:30:05 +09:00
Gergely Koloszar
cc73f23c1c fix: suppress ping stderr output 2025-10-24 12:35:56 +00:00
aclist
cbc131028f
chore: capitalize TODO for syntax highlighting 2025-10-23 08:22:20 +09:00
Gergely Koloszar
239a82876e fix: silence ping while checking remote urls 2025-10-22 17:20:56 +02:00
aclist
6aa1ec4201 fix: early abort if local coords are missing 2025-10-17 19:12:59 +02:00
Gergely Koloszar
d6223e54b0 Fix unintended deletion 2025-10-17 19:12:59 +02:00
Gergely Koloszar
83552f833c Add availability checks for local_latlon function 2025-10-17 19:12:59 +02:00
Gergely Koloszar
f0657be289 Add availability checker for remote services based on ping and timeout 2025-10-17 19:12:59 +02:00
3 changed files with 3 additions and 2 deletions

View File

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

View File

@ -618,7 +618,7 @@ fetch_helpers_by_sum(){
["funcs"]="6ae3ead7034dc8e7543472bddee75c63" ["funcs"]="6ae3ead7034dc8e7543472bddee75c63"
["query_v2.py"]="55d339ba02512ac69de288eb3be41067" ["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
["servers.py"]="ed442c3aecf33f777d59dcf53650d263" ["servers.py"]="ed442c3aecf33f777d59dcf53650d263"
["ui.py"]="f03879f088ad074f2ce3c92607c30202" ["ui.py"]="8d05bbd7b8e15a97fae568e9a3dbf4d6"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397" ["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
["pefile.py"]="21531f2c0d9dfa5f110cf6779f9d22c0" ["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_path = f"{user_path}/.config/dztui"
config_file = f"{config_path}/dztuirc" config_file = f"{config_path}/dztuirc"
history_file = f"{state_path}/{app_name_abbr}.history" 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__) logger = logging.getLogger(__name__)
log_file = f"{log_path}/{app_name}_DEBUG.log" log_file = f"{log_path}/{app_name}_DEBUG.log"