diff options
author | Michał Cichoń <michcic@gmail.com> | 2015-08-25 19:56:24 +0200 |
---|---|---|
committer | Michał Cichoń <michcic@gmail.com> | 2015-08-25 19:56:24 +0200 |
commit | 682f23e7bb4a52bedf46eff5c4859e1308eda124 (patch) | |
tree | 30ad4f37b434ecdfb5edc36dfbaf7fc924e53c0e /pianobar/resources | |
parent | 8b41fc907bcd27d24c895062ae8a61b305fc2d46 (diff) | |
download | pianobar-windows-build-682f23e7bb4a52bedf46eff5c4859e1308eda124.tar.gz pianobar-windows-build-682f23e7bb4a52bedf46eff5c4859e1308eda124.tar.bz2 pianobar-windows-build-682f23e7bb4a52bedf46eff5c4859e1308eda124.zip |
Update build ref
Diffstat (limited to 'pianobar/resources')
-rw-r--r-- | pianobar/resources/pianobar.ico | bin | 0 -> 90566 bytes | |||
-rw-r--r-- | pianobar/resources/pianobar.rc | 36 |
2 files changed, 36 insertions, 0 deletions
diff --git a/pianobar/resources/pianobar.ico b/pianobar/resources/pianobar.ico Binary files differnew file mode 100644 index 0000000..2ec5aa5 --- /dev/null +++ b/pianobar/resources/pianobar.ico diff --git a/pianobar/resources/pianobar.rc b/pianobar/resources/pianobar.rc new file mode 100644 index 0000000..fe31bfa --- /dev/null +++ b/pianobar/resources/pianobar.rc @@ -0,0 +1,36 @@ +#include "../src/src/config.h"
+
+MAINICON ICON "pianobar.ico"
+
+1 VERSIONINFO
+FILEVERSION 1,0,0,0
+//PRODUCTVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_BUILD,VERSION_REV
+FILEFLAGSMASK 0X3FL
+FILEFLAGS 0L
+FILEOS 0X40004L
+FILETYPE 0X1
+FILESUBTYPE 0
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040904B0"
+ BEGIN
+ VALUE "Comments", "Ported to Windows by Micha³ Cichoñ <thedmd@interia.pl>"
+ //VALUE "FileVersion", BUILD_VERSION
+ VALUE "ProductVersion", VERSION
+#ifdef _DEBUG
+ VALUE "OriginalFilename", PACKAGE "-debug.exe"
+#else
+ VALUE "OriginalFilename", PACKAGE ".exe"
+#endif
+ VALUE "FileDescription", "Pandora Radio Client"
+ VALUE "LegalCopyright", "Copyright (C) 2011-2015, Lars-Dominik Braun <lars@6xq.net>"
+ VALUE "ProductName", "pianobar - Pandora Radio Client"
+ VALUE "PrivateBuild", "Micha³ Cichoñ <thedmd@interia.pl>"
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x0409, 0x04B0
+ END
+END
|