-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
73f75ee
commit ee6df82
Showing
4 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,3 +20,4 @@ vendor/ | |
go.work | ||
|
||
*.ort | ||
*.syso |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
|
||
# Builds the .syso file for Windows resource (program icon, metadata) | ||
# Run in MINGW64, then build with Go as usual (it will pick up the syso) | ||
|
||
set -xe | ||
|
||
windres -i ortlinde.rc -O coff -o ortlinde.syso |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#pragma code_page(65001) | ||
|
||
1 VERSIONINFO | ||
FILEVERSION 0,0,1,0 | ||
BEGIN | ||
BLOCK "StringFileInfo" | ||
BEGIN | ||
BLOCK "040904B0" | ||
BEGIN | ||
VALUE "CompanyName", "NexerqDev" | ||
VALUE "FileDescription", "Simple SDVX Konasute Launcher" | ||
VALUE "LegalCopyright", "Copyright © NexerqDev 2023. BSD 2-Clause" | ||
VALUE "OriginalFilename", "ortlinde" | ||
VALUE "ProductName", "Ortlinde" | ||
END | ||
END | ||
BLOCK "VarFileInfo" | ||
BEGIN | ||
VALUE "Translation", 0x0809, 1200 | ||
END | ||
END | ||
|
||
1 ICON "ortlinde.ico" |