From 1474172b4a30d4764c2f35c1cb3e578b89d3136c Mon Sep 17 00:00:00 2001 From: Ray San Date: Thu, 19 Oct 2017 13:25:51 +0200 Subject: Updated for raylib 1.8 --- src/resources | Bin 107260 -> 106876 bytes 1 file changed, 0 insertions(+), 0 deletions(-) (limited to 'src/resources') diff --git a/src/resources b/src/resources index 92ccf3a6..2273ca71 100644 Binary files a/src/resources and b/src/resources differ -- cgit v1.2.3 From 368b0320c65ad5b669f21d001d688d3019d00d78 Mon Sep 17 00:00:00 2001 From: Ray Date: Sun, 22 Oct 2017 11:07:17 +0200 Subject: Added resource config file --- src/raylib.ico | Bin 0 -> 105907 bytes src/raylib.rc | 27 +++++++++++++++++++++++++++ src/resources | Bin 106876 -> 107260 bytes 3 files changed, 27 insertions(+) create mode 100644 src/raylib.ico create mode 100644 src/raylib.rc (limited to 'src/resources') diff --git a/src/raylib.ico b/src/raylib.ico new file mode 100644 index 00000000..afeb12b9 Binary files /dev/null and b/src/raylib.ico differ diff --git a/src/raylib.rc b/src/raylib.rc new file mode 100644 index 00000000..89eb8e34 --- /dev/null +++ b/src/raylib.rc @@ -0,0 +1,27 @@ +GLFW_ICON ICON "raylib.ico" + +1 VERSIONINFO +FILEVERSION 1,8,0,0 +PRODUCTVERSION 1,8,0,0 +BEGIN + BLOCK "StringFileInfo" + BEGIN + //BLOCK "080904E4" // English UK + BLOCK "040904E4" // English US + BEGIN + //VALUE "CompanyName", "My Company Name" + VALUE "FileDescription", "Created using raylib (www.raylib.com)" + VALUE "FileVersion", "1.8.0" + VALUE "InternalName", "raylib" + VALUE "LegalCopyright", "(c) 2017 Ramon Santamaria - @raysan5" + //VALUE "OriginalFilename", "raylib_app.exe" + VALUE "ProductName", "raylib game" + VALUE "ProductVersion", "1.8.0" + END + END + BLOCK "VarFileInfo" + BEGIN + //VALUE "Translation", 0x809, 1252 // English UK + VALUE "Translation", 0x409, 1252 // English US + END +END diff --git a/src/resources b/src/resources index 2273ca71..ca725042 100644 Binary files a/src/resources and b/src/resources differ -- cgit v1.2.3