Skip to content

Commit 9a7a346

Browse files
committed
Adjust log pane default height and bump version
1 parent 89981cf commit 9a7a346

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

constants.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
# アプリケーション全体で使用する定数 (翻訳不要なもの)
33

44
# --- バージョン情報 ---
5-
APP_RELEASE_DATE = "2025-12-25" # リリース日 (ユーザー提供の値を維持)
5+
APP_RELEASE_DATE = "2025-12-27" # リリース日 (ユーザー提供の値を維持)
66

77
APP_VERSION_MAJOR = 2
88
APP_VERSION_MINOR = 3
9-
APP_VERSION_PATCH = 0
9+
APP_VERSION_PATCH = 1
1010
APP_VERSION_STRING_SEMVER = f"v{APP_VERSION_MAJOR}.{APP_VERSION_MINOR}.{APP_VERSION_PATCH}"
1111

1212
# --- FFmpeg関連定数 ---

gui_app.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,8 @@ def _set_main_paned_sash(self):
325325
if total_height <= 1:
326326
return
327327
min_log_height = getattr(self, "log_pane_minsize", 140)
328-
target = int(total_height * 0.65)
328+
default_log_ratio = 0.35 / 3
329+
target = int(total_height * (1 - default_log_ratio))
329330
max_target = max(0, total_height - min_log_height)
330331
if max_target:
331332
target = min(target, max_target)

0 commit comments

Comments
 (0)