fix: 调整窗口最小尺寸并更新版本号

将窗口最小尺寸从800x668调整为400x334以提升用户体验
移除版本号中的build后缀以简化版本管理
This commit is contained in:
shanshanzhong 2025-11-24 18:22:37 -08:00
parent 96d1a107cf
commit 11afee1d6f
2 changed files with 2 additions and 2 deletions

View File

@ -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,

View File

@ -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'