File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22# アプリケーション全体で使用する定数 (翻訳不要なもの)
33
44# --- バージョン情報 ---
5- APP_RELEASE_DATE = "2025-12-25 " # リリース日 (ユーザー提供の値を維持)
5+ APP_RELEASE_DATE = "2025-12-27 " # リリース日 (ユーザー提供の値を維持)
66
77APP_VERSION_MAJOR = 2
88APP_VERSION_MINOR = 3
9- APP_VERSION_PATCH = 0
9+ APP_VERSION_PATCH = 1
1010APP_VERSION_STRING_SEMVER = f"v{ APP_VERSION_MAJOR } .{ APP_VERSION_MINOR } .{ APP_VERSION_PATCH } "
1111
1212# --- FFmpeg関連定数 ---
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments