]> git.xonotic.org Git - xonotic/xonotic.git/commitdiff
Remove usage of resedit.exe, as it no longer works anyway.
authorRudolf Polzer <divverent@xonotic.org>
Sun, 18 Jan 2015 15:34:42 +0000 (07:34 -0800)
committerRudolf Polzer <divverent@xonotic.org>
Sun, 18 Jan 2015 15:34:42 +0000 (07:34 -0800)
misc/tools/all/release.subr
misc/tools/change-icon-of-exe.sh [deleted file]

index 3fcbb63e2338acdb9fc2c72965869b72e5807782..cb6ec82620e764311eadf16dbd28adca94f19a6e 100644 (file)
@@ -212,11 +212,7 @@ case "$cmd" in
                verbose wget -O "$binary" "http://beta.xonotic.org/autobuild-bin/$rev/$dpname"
                [ -s "$binary" ] || rm -f "$binary"
                [ -f "$binary" ]
                verbose wget -O "$binary" "http://beta.xonotic.org/autobuild-bin/$rev/$dpname"
                [ -s "$binary" ] || rm -f "$binary"
                [ -f "$binary" ]
-               # TODO eventually do the rebranding on travis too.
                case "$binary" in
                case "$binary" in
-                       Xonotic/xonotic*.exe)
-                               verbose "$d0/misc/tools/change-icon-of-exe.sh" "$d0/misc/logos/icons_ico/xonotic.ico" "$binary"
-                               ;;
                        Xonotic/*osx*|Xonotic/*linux*)
                                chmod +x "$binary"
                                ;;
                        Xonotic/*osx*|Xonotic/*linux*)
                                chmod +x "$binary"
                                ;;
diff --git a/misc/tools/change-icon-of-exe.sh b/misc/tools/change-icon-of-exe.sh
deleted file mode 100755 (executable)
index e5055c5..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/sh
-
-d=`pwd`
-t=`mktemp -d -t change-icon-of-exe.XXXXXX`
-cp "$1" "$t/darkplaces-icon.ico"
-cp "$2" "$t/darkplaces.exe"
-cat >"$t/darkplaces.rc" <<EOF
-#include <windows.h> // include for version info constants
-
-A ICON MOVEABLE PURE LOADONCALL DISCARDABLE "darkplaces-icon.ico"
-
-1 VERSIONINFO
-FILEVERSION 1,0,0,0
-PRODUCTVERSION 1,0,0,0
-FILETYPE VFT_APP
-{
-  BLOCK "StringFileInfo"
-        {
-                BLOCK "040904E4"
-                {
-                        VALUE "CompanyName", "Forest Hale Digital Services"
-                        VALUE "FileVersion", "1.0"
-                        VALUE "FileDescription", "DarkPlaces Game Engine"
-                        VALUE "InternalName", "darkplaces.exe"
-                        VALUE "LegalCopyright", "id Software, Forest Hale, and contributors"
-                        VALUE "LegalTrademarks", ""
-                        VALUE "OriginalFilename", "darkplaces.exe"
-                        VALUE "ProductName", "DarkPlaces"
-                        VALUE "ProductVersion", "1.0"
-                }
-        }
-}
-EOF
-cd "$t"
-wine "c:/Program Files/ResEdit/ResEdit.exe" -convert darkplaces.rc darkplaces.exe
-cd "$d"
-mv "$t/darkplaces.exe" "$2"
-rm -rf "$t"