From c90bd750a1041311aa99e79f4dd9c191b69e6e89 Mon Sep 17 00:00:00 2001 From: Sucukdeluxe Date: Fri, 27 Feb 2026 01:29:30 +0100 Subject: [PATCH] Fix links text area being too small after settings expansion MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- real_debrid_downloader_gui.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/real_debrid_downloader_gui.py b/real_debrid_downloader_gui.py index 845e8f4..9a84e01 100644 --- a/real_debrid_downloader_gui.py +++ b/real_debrid_downloader_gui.py @@ -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") CHUNK_SIZE = 1024 * 512 APP_NAME = "Real-Debrid Downloader GUI" -APP_VERSION = "1.1.1" +APP_VERSION = "1.1.2" DEFAULT_UPDATE_REPO = "Sucukdeluxe/real-debrid-downloader" DEFAULT_RELEASE_ASSET = "Real-Debrid-Downloader-win64.zip" DCRYPT_UPLOAD_URL = "https://dcrypt.it/decrypt/upload" @@ -443,8 +443,8 @@ class DownloaderApp(tk.Tk): def __init__(self): super().__init__() self.title(f"{APP_NAME} v{APP_VERSION}") - self.geometry("1180x780") - self.minsize(980, 680) + self.geometry("1180x920") + self.minsize(980, 820) self.token_var = tk.StringVar() self.output_dir_var = tk.StringVar(value=str(Path.home() / "Downloads" / "RealDebrid"))