From 11afee1d6f8fffc79c41559305f53a37857e622c Mon Sep 17 00:00:00 2001 From: shanshanzhong Date: Mon, 24 Nov 2025 18:22:37 -0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=B0=83=E6=95=B4=E7=AA=97=E5=8F=A3?= =?UTF-8?q?=E6=9C=80=E5=B0=8F=E5=B0=BA=E5=AF=B8=E5=B9=B6=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E7=89=88=E6=9C=AC=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将窗口最小尺寸从800x668调整为400x334以提升用户体验 移除版本号中的build后缀以简化版本管理 --- lib/app/utils/kr_window_manager.dart | 2 +- pubspec.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/app/utils/kr_window_manager.dart b/lib/app/utils/kr_window_manager.dart index 73e7c7f..89f4a96 100755 --- a/lib/app/utils/kr_window_manager.dart +++ b/lib/app/utils/kr_window_manager.dart @@ -26,7 +26,7 @@ class KRWindowManager with WindowListener, TrayListener { const WindowOptions windowOptions = WindowOptions( size: Size(800, 668), - minimumSize: Size(800, 668), + minimumSize: Size(400, 334), center: true, backgroundColor: Colors.white, skipTaskbar: false, diff --git a/pubspec.yaml b/pubspec.yaml index dac0f5f..22ad15f 100755 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # In Windows, build-name is used as the major, minor, and patch parts # of the product and file versions while build-number is used as the build suffix. -version: 0.0.1+1 +version: 0.0.1 environment: sdk: '>=3.5.0 <4.0.0'