New ICO better Help Text
This commit is contained in:
@@ -31,7 +31,7 @@ jobs:
|
|||||||
$ErrorActionPreference = 'Stop'
|
$ErrorActionPreference = 'Stop'
|
||||||
# Include SeaLoader.png so the packaged app icon in-app works
|
# Include SeaLoader.png so the packaged app icon in-app works
|
||||||
$addData = "SeaLoader.png;." # Windows uses ';' for --add-data
|
$addData = "SeaLoader.png;." # Windows uses ';' for --add-data
|
||||||
pyinstaller --noconfirm --onefile --windowed sealoader_gui.py --name SeaLoader --add-data "$addData"
|
pyinstaller --noconfirm --onefile --windowed sealoader_gui.py --name SeaLoader --add-data "$addData" --icon SeaLoader.ico
|
||||||
|
|
||||||
- name: Prepare artifact
|
- name: Prepare artifact
|
||||||
shell: powershell
|
shell: powershell
|
||||||
@@ -56,11 +56,5 @@ jobs:
|
|||||||
Write-Host "Uploading asset to $uploadUrl"
|
Write-Host "Uploading asset to $uploadUrl"
|
||||||
Invoke-RestMethod -Method Post -Uri $uploadUrl -Headers @{ Authorization = "token $env:TOKEN" } -ContentType "application/zip" -InFile "SeaLoader_Windows_x64.zip"
|
Invoke-RestMethod -Method Post -Uri $uploadUrl -Headers @{ Authorization = "token $env:TOKEN" } -ContentType "application/zip" -InFile "SeaLoader_Windows_x64.zip"
|
||||||
|
|
||||||
- name: Upload artifact (CI logs)
|
# CI artifact upload removed for GHES compatibility
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: SeaLoader_Windows_x64
|
|
||||||
path: |
|
|
||||||
SeaLoader_Windows_x64.zip
|
|
||||||
dist/SeaLoader.exe
|
|
||||||
|
|
||||||
|
|||||||
BIN
SeaLoader.ico
Normal file
BIN
SeaLoader.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 79 KiB |
@@ -348,12 +348,14 @@ class SeaLoaderApp(tk.Tk):
|
|||||||
)
|
)
|
||||||
text = (
|
text = (
|
||||||
"Usage:\n\n"
|
"Usage:\n\n"
|
||||||
"1) Paste a Steam Workshop URL at the top and click 'Fetch Required Mods'.\n"
|
"1) Download all required mods from Steam Workshop.\n"
|
||||||
|
" - Using subscribe to all wil work, you must load into seapower after they have downloaded then close the game.\n"
|
||||||
|
"2) Paste a Steam Workshop URL at the top and click 'Fetch Required Mods'.\n"
|
||||||
" - Right list shows required Mod IDs, names and whether they are installed.\n"
|
" - Right list shows required Mod IDs, names and whether they are installed.\n"
|
||||||
"2) Installed mods load automatically from usersettings.ini (left list).\n"
|
"3) Installed mods load automatically from usersettings.ini (left list).\n"
|
||||||
"3) Click 'Enable Matching Mods' to turn on any installed required mods.\n"
|
"4) Click 'Enable Matching Mods' to turn on any installed required mods.\n"
|
||||||
" - A .bak backup of usersettings.ini is created before changes.\n"
|
" - A .bak backup of usersettings.ini is created before changes.\n"
|
||||||
"4) Mods marked Missing must be installed separately in Sea Power.\n\n"
|
"5) Mods marked Missing must be downloaded from the workshop see step 1.\n\n"
|
||||||
"Tips:\n"
|
"Tips:\n"
|
||||||
"- Run with a custom INI path: python sealoader_gui.py \"<path-to-usersettings.ini>\"\n"
|
"- Run with a custom INI path: python sealoader_gui.py \"<path-to-usersettings.ini>\"\n"
|
||||||
"- Press F1 to open this help.\n\n"
|
"- Press F1 to open this help.\n\n"
|
||||||
|
|||||||
Reference in New Issue
Block a user