chore: 发布 v1.0.1——版本号升级、变更日志归档、发布打包脚本支持版本参数
This commit is contained in:
@@ -7,6 +7,8 @@
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [1.0.1] - 2026-08-30
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- 修复滑动选择在混合 DPI 多显示器(主屏 125% + 副屏 100%)下命中方向错位的问题:
|
- 修复滑动选择在混合 DPI 多显示器(主屏 125% + 副屏 100%)下命中方向错位的问题:
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
# 生成发布压缩包:框架依赖版 + 自包含版
|
# 生成发布压缩包:框架依赖版 + 自包含版
|
||||||
|
param([string]$Version = '1.0.0')
|
||||||
$ErrorActionPreference = 'Stop'
|
$ErrorActionPreference = 'Stop'
|
||||||
$root = Split-Path -Parent $PSScriptRoot
|
$root = Split-Path -Parent $PSScriptRoot
|
||||||
$publish = Join-Path $root 'publish'
|
$publish = Join-Path $root 'publish'
|
||||||
|
|
||||||
Compress-Archive -Path (Join-Path $publish 'win-x64-fdd/*') -DestinationPath (Join-Path $publish 'OneClickRun-1.0.0-win-x64-fdd.zip') -Force
|
Compress-Archive -Path (Join-Path $publish 'win-x64-fdd/*') -DestinationPath (Join-Path $publish "OneClickRun-$Version-win-x64-fdd.zip") -Force
|
||||||
Compress-Archive -Path (Join-Path $publish 'win-x64-sc/*') -DestinationPath (Join-Path $publish 'OneClickRun-1.0.0-win-x64-sc.zip') -Force
|
Compress-Archive -Path (Join-Path $publish 'win-x64-sc/*') -DestinationPath (Join-Path $publish "OneClickRun-$Version-win-x64-sc.zip") -Force
|
||||||
|
|
||||||
Get-ChildItem (Join-Path $publish '*.zip') |
|
Get-ChildItem (Join-Path $publish '*.zip') |
|
||||||
Select-Object Name, @{n='MB';e={[math]::Round($_.Length/1MB,1)}}, @{n='Time';e={$_.LastWriteTime}} |
|
Select-Object Name, @{n='MB';e={[math]::Round($_.Length/1MB,1)}}, @{n='Time';e={$_.LastWriteTime}} |
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
<UseWPF>true</UseWPF>
|
<UseWPF>true</UseWPF>
|
||||||
<UseWindowsForms>true</UseWindowsForms>
|
<UseWindowsForms>true</UseWindowsForms>
|
||||||
<ApplicationManifest>app.manifest</ApplicationManifest>
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
||||||
<Version>1.0.0</Version>
|
<Version>1.0.1</Version>
|
||||||
<Product>一键运行</Product>
|
<Product>一键运行</Product>
|
||||||
<AssemblyTitle>一键运行</AssemblyTitle>
|
<AssemblyTitle>一键运行</AssemblyTitle>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|||||||
Reference in New Issue
Block a user