Skip to content

Commit

Permalink
Minor tweaks and cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
seerge committed Feb 14, 2023
1 parent fb4a0cf commit c9e25b6
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 21 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
run: |
mkdir release
cp *.exe ./release
cp ghelper.ps1 ./release
zip -r g14-helper.zip ./release
- name: Release
Expand Down
18 changes: 0 additions & 18 deletions autostart.ps1

This file was deleted.

Binary file modified g14-helper.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion ghelper-compile.ps1
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ps2exe .\gpu.ps1 g14-helper.exe -title 'G14 Helper' -DPIAware -winFormsDPIAware -requireAdmin -iconFile 'standard.ico' -noConsole -copyright 'G14 Helper Tool' -noOutput
ps2exe .\ghelper.ps1 g14-helper.exe -title 'G14 Helper' -DPIAware -winFormsDPIAware -requireAdmin -iconFile 'standard.ico' -noConsole -copyright 'G14 Helper Tool' -noOutput
.\g14-helper.exe
4 changes: 2 additions & 2 deletions gpu.ps1 → ghelper.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ $icon_ultimate = [Drawing.Icon][IO.MemoryStream][Convert]::FromBase64String("AAA

# Init Config and Log
$ghelper_app_path = "$($env:LOCALAPPDATA)\GHelper"
$ghelper_config_path = "$($env:LOCALAPPDATA)\GHelper\config.json"
$ghelper_log_path = "$($env:LOCALAPPDATA)\GHelper\log.txt"
$ghelper_config_path = "$ghelper_app_path\config.json"
$ghelper_log_path = "$ghelper_app_path\log.txt"

New-Item -ItemType Directory -Force -Path $ghelper_app_path

Expand Down

0 comments on commit c9e25b6

Please sign in to comment.