Some checks are pending
Tests & Quality Checks / Test on Python 3.11 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.12 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.11-1 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.12-1 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.10 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.11-2 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.12-2 (push) Waiting to run
Tests & Quality Checks / Build Artifacts (push) Blocked by required conditions
Tests & Quality Checks / Build Artifacts-1 (push) Blocked by required conditions
- Updated version number in __init__.py to 0.6.5. - Modified the download_update method in updater.py to accept a progress_callback for tracking download progress. - Implemented chunked downloading in _download_file to report progress via the callback. - Adjusted installer launching logic in updater.py to handle MSI files correctly using msiexec. - Connected download progress signal in main_window.py to update the downloading dialog.
24 lines
548 B
Text
24 lines
548 B
Text
# WebDrop Bridge Configuration
|
|
|
|
# Application
|
|
APP_NAME=WebDrop Bridge
|
|
APP_VERSION=0.6.5
|
|
|
|
# Web App
|
|
WEBAPP_URL=file:///./webapp/index.html
|
|
# WEBAPP_URL=http://localhost:3000 # For development
|
|
|
|
# Logging
|
|
LOG_LEVEL=DEBUG
|
|
# LOG_FILE defaults to AppData/Roaming/webdrop_bridge/logs/webdrop_bridge.log if not set
|
|
# LOG_FILE=logs/webdrop_bridge.log
|
|
ENABLE_LOGGING=true
|
|
|
|
# Security - Path Whitelist
|
|
ALLOWED_ROOTS=Z:/,C:/Users/Public
|
|
ALLOWED_URLS=
|
|
|
|
# UI
|
|
WINDOW_WIDTH=1024
|
|
WINDOW_HEIGHT=768
|
|
# WINDOW_TITLE= (leave empty to use: "{APP_NAME} v{APP_VERSION}")
|