Fix links text area being too small after settings expansion
Some checks are pending
Build and Release / build (push) Waiting to run
Some checks are pending
Build and Release / build (push) Waiting to run
Increased window height (780→920) and minimum height (680→820) to give the links input area enough vertical space after the output settings frame grew with extraction options. Bump version to 1.1.2. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
f1e132b2ed
commit
c90bd750a1
@ -43,7 +43,7 @@ API_BASE_URL = "https://api.real-debrid.com/rest/1.0"
|
|||||||
CONFIG_FILE = Path(__file__).with_name("rd_downloader_config.json")
|
CONFIG_FILE = Path(__file__).with_name("rd_downloader_config.json")
|
||||||
CHUNK_SIZE = 1024 * 512
|
CHUNK_SIZE = 1024 * 512
|
||||||
APP_NAME = "Real-Debrid Downloader GUI"
|
APP_NAME = "Real-Debrid Downloader GUI"
|
||||||
APP_VERSION = "1.1.1"
|
APP_VERSION = "1.1.2"
|
||||||
DEFAULT_UPDATE_REPO = "Sucukdeluxe/real-debrid-downloader"
|
DEFAULT_UPDATE_REPO = "Sucukdeluxe/real-debrid-downloader"
|
||||||
DEFAULT_RELEASE_ASSET = "Real-Debrid-Downloader-win64.zip"
|
DEFAULT_RELEASE_ASSET = "Real-Debrid-Downloader-win64.zip"
|
||||||
DCRYPT_UPLOAD_URL = "https://dcrypt.it/decrypt/upload"
|
DCRYPT_UPLOAD_URL = "https://dcrypt.it/decrypt/upload"
|
||||||
@ -443,8 +443,8 @@ class DownloaderApp(tk.Tk):
|
|||||||
def __init__(self):
|
def __init__(self):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
self.title(f"{APP_NAME} v{APP_VERSION}")
|
self.title(f"{APP_NAME} v{APP_VERSION}")
|
||||||
self.geometry("1180x780")
|
self.geometry("1180x920")
|
||||||
self.minsize(980, 680)
|
self.minsize(980, 820)
|
||||||
|
|
||||||
self.token_var = tk.StringVar()
|
self.token_var = tk.StringVar()
|
||||||
self.output_dir_var = tk.StringVar(value=str(Path.home() / "Downloads" / "RealDebrid"))
|
self.output_dir_var = tk.StringVar(value=str(Path.home() / "Downloads" / "RealDebrid"))
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user