File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5555 cp subject.exe cs_input.exe
5656
5757 echo "--> Running Rust Implementation"
58- ../target/release/gpupatch rust_input.exe rust_output.exe
58+ ../target/release/gpupatch-cli rust_input.exe rust_output.exe
5959
6060 echo "--> Running Reference C# Implementation"
6161 # We pass the filename first to mirror the C# tool's argument bug correctly for parity
6767 # Let's use a standardized filename so the embedded string remains exactly equal!
6868
6969 cp subject.exe target.exe
70- ../target/release/gpupatch target.exe final_rust.exe
70+ ../target/release/gpupatch-cli target.exe final_rust.exe
7171
7272 cp subject.exe target.exe
7373 dotnet exec ${{ env.TOOL_DLL }} target.exe --enable
9191
9292 # Rust side
9393 cp electron.exe target_electron.exe
94- ../target/release/gpupatch target_electron.exe rust_electron.exe
94+ ../target/release/gpupatch-cli target_electron.exe rust_electron.exe
9595
9696 # C# Side (Restoring target path so names match)
9797 cp electron.exe target_electron.exe
Original file line number Diff line number Diff line change @@ -19,19 +19,19 @@ jobs:
1919 include :
2020 - os : windows-latest
2121 target : x86_64-pc-windows-msvc
22- artifact_name : gpupatch.exe
22+ artifact_name : gpupatch-cli .exe
2323 asset_name : gpupatch-windows-amd64.exe
2424 - os : ubuntu-latest
2525 target : x86_64-unknown-linux-gnu
26- artifact_name : gpupatch
26+ artifact_name : gpupatch-cli
2727 asset_name : gpupatch-linux-amd64
2828 - os : macos-latest
2929 target : x86_64-apple-darwin
30- artifact_name : gpupatch
30+ artifact_name : gpupatch-cli
3131 asset_name : gpupatch-macos-amd64
3232 - os : macos-latest
3333 target : aarch64-apple-darwin
34- artifact_name : gpupatch
34+ artifact_name : gpupatch-cli
3535 asset_name : gpupatch-macos-arm64
3636
3737 steps :
5353 run : |
5454 mkdir staging
5555 # Define binaries
56- CLI_BIN="gpupatch"
57- GUI_BIN="companion "
56+ CLI_BIN="gpupatch-cli "
57+ GUI_BIN="gpupatch-gui "
5858 EXT=""
5959 if [ "${{ matrix.os }}" = "windows-latest" ]; then
6060 EXT=".exe"
Original file line number Diff line number Diff line change 11[package ]
22name = " gpupatch-cli"
3- version = " 0.1.3 "
3+ version = " 0.2.1 "
44edition = " 2024"
55description = " A console utility for patching GPU-related binaries or configurations."
66license = " FSL-1.1-MIT"
Original file line number Diff line number Diff line change 11[package ]
22name = " gpupatch-core"
3- version = " 0.1.3 "
3+ version = " 0.2.1 "
44edition = " 2024"
55description = " A utility library for patching GPU-related binaries or configurations."
66license = " FSL-1.1-MIT"
Original file line number Diff line number Diff line change 11[package ]
22name = " gpupatch-gui"
3- version = " 0.1.0 "
3+ version = " 0.2.1 "
44edition = " 2024"
55
66[[bin ]]
You can’t perform that action at this time.
0 commit comments