fix: 调整窗口最小尺寸并更新版本号
将窗口最小尺寸从800x668调整为400x334以提升用户体验 移除版本号中的build后缀以简化版本管理
This commit is contained in:
parent
96d1a107cf
commit
11afee1d6f
@ -26,7 +26,7 @@ class KRWindowManager with WindowListener, TrayListener {
|
|||||||
|
|
||||||
const WindowOptions windowOptions = WindowOptions(
|
const WindowOptions windowOptions = WindowOptions(
|
||||||
size: Size(800, 668),
|
size: Size(800, 668),
|
||||||
minimumSize: Size(800, 668),
|
minimumSize: Size(400, 334),
|
||||||
center: true,
|
center: true,
|
||||||
backgroundColor: Colors.white,
|
backgroundColor: Colors.white,
|
||||||
skipTaskbar: false,
|
skipTaskbar: false,
|
||||||
|
|||||||
@ -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
|
# 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
|
# 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.
|
# 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:
|
environment:
|
||||||
sdk: '>=3.5.0 <4.0.0'
|
sdk: '>=3.5.0 <4.0.0'
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user