Is this making you happy mr. gates?

This commit is contained in:
Internet Addict 2025-02-18 22:10:02 +00:00
parent bbf872808f
commit a96ff58256

View file

@ -100,9 +100,7 @@ func main() {
fileVersion := fmt.Sprintf("%s,%s,%s,%s", v1, v2, v3, v4) fileVersion := fmt.Sprintf("%s,%s,%s,%s", v1, v2, v3, v4)
// Note: We use "2 RT_MANIFEST" so it doesn't collide with the VERSIONINFO (ID=1). // Note: We use "2 RT_MANIFEST" so it doesn't collide with the VERSIONINFO (ID=1).
rcContent := fmt.Sprintf(`1 24 "app.manifest" rcContent := fmt.Sprintf(`1 VERSIONINFO
2 VERSIONINFO
FILEVERSION %s FILEVERSION %s
PRODUCTVERSION %s PRODUCTVERSION %s
FILEFLAGSMASK 0x3fL FILEFLAGSMASK 0x3fL
@ -134,6 +132,8 @@ BEGIN
VALUE "Translation", 0x0409, 1252 VALUE "Translation", 0x0409, 1252
END END
END END
2 24 "app.manifest"
`, fileVersion, fileVersion, *company, *description, *version, *internalName, *internalName, *name, *version, *officialURL, *devURL) `, fileVersion, fileVersion, *company, *description, *version, *internalName, *internalName, *name, *version, *officialURL, *devURL)
if err := os.WriteFile("app.rc", []byte(rcContent), 0644); err != nil { if err := os.WriteFile("app.rc", []byte(rcContent), 0644); err != nil {