Skip to content

Commit e9a5f96

Browse files
committed
version v0.2.3
1. Because the UPX version of the files caused decision fatigue for users and also avoided the need to explain what UPX is, the release of UPX files was commented out in the GitHub Actions workflows code. 2. The software functionality remains unchanged compared to the previous version.
1 parent f999272 commit e9a5f96

4 files changed

Lines changed: 20 additions & 20 deletions

File tree

.github/workflows/release.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ jobs:
3232
with:
3333
toolchain: stable-x86_64-pc-windows-msvc
3434

35-
- name: Install UPX
36-
uses: crazy-max/ghaction-upx@v3
37-
with:
38-
install-only: true
35+
# - name: Install UPX
36+
# uses: crazy-max/ghaction-upx@v3
37+
# with:
38+
# install-only: true
3939

4040
- name: Build Release
4141
run: cargo build --release
@@ -45,9 +45,9 @@ jobs:
4545
id: get_version
4646
shell: pwsh
4747
run: |
48-
$version = $env:GITHUB_REF -replace "refs/tags/v", ""
49-
echo "VERSION=$version" >> $env:GITHUB_OUTPUT
50-
Write-Host "Version: $version"
48+
$version = $env:GITHUB_REF -replace "refs/tags/v", ""
49+
echo "VERSION=$version" >> $env:GITHUB_OUTPUT
50+
Write-Host "Version: $version"
5151
5252
- name: Prepare Assets
5353
if: startsWith(github.ref, 'refs/tags/')
@@ -56,23 +56,23 @@ jobs:
5656
$version = "${{ steps.get_version.outputs.VERSION }}"
5757
$raw_exe = "target/release/wsldashboard.exe"
5858
$versioned_exe = "target/release/wsldashboard.v$version.exe"
59-
$upx_exe = "target/release/wsldashboard.v$version.upx.exe"
59+
# $upx_exe = "target/release/wsldashboard.v$version.upx.exe"
6060
6161
# Rename original to versioned name (Uncompressed)
6262
Move-Item $raw_exe $versioned_exe
6363
64-
# Copy versioned to UPX target name
65-
Copy-Item $versioned_exe $upx_exe
64+
# # Copy versioned to UPX target name
65+
# Copy-Item $versioned_exe $upx_exe
6666
67-
- name: Compress with UPX
68-
if: startsWith(github.ref, 'refs/tags/')
69-
run: upx --best --lzma target/release/wsldashboard.v${{ steps.get_version.outputs.VERSION }}.upx.exe
67+
# - name: Compress with UPX
68+
# if: startsWith(github.ref, 'refs/tags/')
69+
# run: upx --best --lzma target/release/wsldashboard.v${{ steps.get_version.outputs.VERSION }}.upx.exe
7070

7171
- name: Release
7272
if: startsWith(github.ref, 'refs/tags/')
7373
uses: softprops/action-gh-release@v1
7474
with:
7575
files: |
7676
target/release/wsldashboard.v${{ steps.get_version.outputs.VERSION }}.exe
77-
target/release/wsldashboard.v${{ steps.get_version.outputs.VERSION }}.upx.exe
77+
# target/release/wsldashboard.v${{ steps.get_version.outputs.VERSION }}.upx.exe
7878
generate_release_notes: true

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wsldashboard"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
edition = "2024"
55
description = "A modern, high-performance, and lightweight WSL (Windows Subsystem for Linux) instance management dashboard."
66
repository = "https://github.com/owu/wsl-dashboard"

assets/logo/icon.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
IDI_ICON1 ICON "logo.ico"
44

55
VS_VERSION_INFO VERSIONINFO
6-
FILEVERSION 0,2,2,0
7-
PRODUCTVERSION 0,2,2,0
6+
FILEVERSION 0,2,3,0
7+
PRODUCTVERSION 0,2,3,0
88
FILEFLAGSMASK 0x3fL
99
#ifdef _DEBUG
1010
FILEFLAGS 0x1L
@@ -21,13 +21,13 @@ BEGIN
2121
BEGIN
2222
VALUE "CompanyName", "WSL Dashboard"
2323
VALUE "FileDescription", "WSL Dashboard - Management Tool for WSL"
24-
VALUE "FileVersion", "0.2.2.0"
24+
VALUE "FileVersion", "0.2.3.0"
2525
VALUE "InternalName", "wsldashboard"
2626
VALUE "LegalCopyright", "2026 WSL Dashboard. All rights reserved."
2727
VALUE "LegalTrademarks", "https://github.com/owu/wsl-dashboard"
2828
VALUE "OriginalFilename", "wsldashboard.exe"
2929
VALUE "ProductName", "WSL Dashboard"
30-
VALUE "ProductVersion", "0.2.2.0"
30+
VALUE "ProductVersion", "0.2.3.0"
3131
END
3232
END
3333
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)