Thu, 24 Apr 2014 00:53:56 +0200
cross-win32: don't use version.h includes in rc files
|
15450
09e913390266
Restoring win32 stuff that was (I assume accidentally) dropped. I took advantage of the opportunity to try the daggy fix stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
1 | #include <winver.h> |
|
16058
dc1c7b09a058
4bit icons for windows < XP. These are certainly not as pretty as the originals, but look a lot better than scaled down versions.
Daniel Atallah <datallah@pidgin.im>
parents:
15891
diff
changeset
|
2 | #include "resource.h" |
|
dc1c7b09a058
4bit icons for windows < XP. These are certainly not as pretty as the originals, but look a lot better than scaled down versions.
Daniel Atallah <datallah@pidgin.im>
parents:
15891
diff
changeset
|
3 | |
|
15450
09e913390266
Restoring win32 stuff that was (I assume accidentally) dropped. I took advantage of the opportunity to try the daggy fix stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
4 | VS_VERSION_INFO VERSIONINFO |
|
35890
f79a5a517996
cross-win32: don't use version.h includes in rc files
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
35887
diff
changeset
|
5 | FILEVERSION @PURPLE_MAJOR_VERSION@,@PURPLE_MINOR_VERSION@,@PURPLE_MICRO_VERSION@,0 |
|
f79a5a517996
cross-win32: don't use version.h includes in rc files
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
35887
diff
changeset
|
6 | PRODUCTVERSION @PURPLE_MAJOR_VERSION@,@PURPLE_MINOR_VERSION@,@PURPLE_MICRO_VERSION@,0 |
|
15450
09e913390266
Restoring win32 stuff that was (I assume accidentally) dropped. I took advantage of the opportunity to try the daggy fix stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
7 | FILEFLAGSMASK 0 |
|
09e913390266
Restoring win32 stuff that was (I assume accidentally) dropped. I took advantage of the opportunity to try the daggy fix stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
8 | FILEFLAGS 0 |
|
09e913390266
Restoring win32 stuff that was (I assume accidentally) dropped. I took advantage of the opportunity to try the daggy fix stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
9 | FILEOS VOS__WINDOWS32 |
|
09e913390266
Restoring win32 stuff that was (I assume accidentally) dropped. I took advantage of the opportunity to try the daggy fix stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
10 | FILETYPE VFT_DLL |
|
09e913390266
Restoring win32 stuff that was (I assume accidentally) dropped. I took advantage of the opportunity to try the daggy fix stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
11 | FILESUBTYPE VFT2_UNKNOWN |
|
09e913390266
Restoring win32 stuff that was (I assume accidentally) dropped. I took advantage of the opportunity to try the daggy fix stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
12 | BEGIN |
|
09e913390266
Restoring win32 stuff that was (I assume accidentally) dropped. I took advantage of the opportunity to try the daggy fix stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
13 | BLOCK "StringFileInfo" |
|
09e913390266
Restoring win32 stuff that was (I assume accidentally) dropped. I took advantage of the opportunity to try the daggy fix stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
14 | BEGIN |
|
09e913390266
Restoring win32 stuff that was (I assume accidentally) dropped. I took advantage of the opportunity to try the daggy fix stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
15 | BLOCK "040904B0" |
|
09e913390266
Restoring win32 stuff that was (I assume accidentally) dropped. I took advantage of the opportunity to try the daggy fix stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
16 | BEGIN |
|
15674
e36e073afbca
Update dll and exe version resources for pidgin stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
15450
diff
changeset
|
17 | VALUE "CompanyName", "The Pidgin developer community" |
|
35865
7f49bc843ce1
cross-win32: add version information to Pidgin/libpurple binaries
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
29729
diff
changeset
|
18 | VALUE "FileDescription", "Pidgin UI library" |
|
7f49bc843ce1
cross-win32: add version information to Pidgin/libpurple binaries
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
29729
diff
changeset
|
19 | VALUE "FileVersion", "@PURPLE_VERSION@" |
|
15674
e36e073afbca
Update dll and exe version resources for pidgin stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
15450
diff
changeset
|
20 | VALUE "InternalName", "libpidgin" |
|
35865
7f49bc843ce1
cross-win32: add version information to Pidgin/libpurple binaries
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
29729
diff
changeset
|
21 | VALUE "LegalCopyright", "Copyright (C) 1998-2014 The Pidgin developer community (See the COPYRIGHT file in the source distribution)." |
|
35887
d18e59bae076
Fix win32/others versioning: rc files, bump gnt version, -version-info switch for libpidgin and libfinch
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
35865
diff
changeset
|
22 | VALUE "OriginalFilename", "libpidgin-@PURPLE_API_VERSION@.dll" |
|
15674
e36e073afbca
Update dll and exe version resources for pidgin stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
15450
diff
changeset
|
23 | VALUE "ProductName", "Pidgin" |
|
35865
7f49bc843ce1
cross-win32: add version information to Pidgin/libpurple binaries
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
29729
diff
changeset
|
24 | VALUE "ProductVersion", "@PURPLE_VERSION@" |
|
15450
09e913390266
Restoring win32 stuff that was (I assume accidentally) dropped. I took advantage of the opportunity to try the daggy fix stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
25 | END |
|
09e913390266
Restoring win32 stuff that was (I assume accidentally) dropped. I took advantage of the opportunity to try the daggy fix stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
26 | END |
|
09e913390266
Restoring win32 stuff that was (I assume accidentally) dropped. I took advantage of the opportunity to try the daggy fix stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
27 | BLOCK "VarFileInfo" |
|
09e913390266
Restoring win32 stuff that was (I assume accidentally) dropped. I took advantage of the opportunity to try the daggy fix stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
28 | BEGIN |
|
09e913390266
Restoring win32 stuff that was (I assume accidentally) dropped. I took advantage of the opportunity to try the daggy fix stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
29 | VALUE "Translation", 0x409, 1200 |
|
09e913390266
Restoring win32 stuff that was (I assume accidentally) dropped. I took advantage of the opportunity to try the daggy fix stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
30 | END |
|
09e913390266
Restoring win32 stuff that was (I assume accidentally) dropped. I took advantage of the opportunity to try the daggy fix stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
31 | END |
|
09e913390266
Restoring win32 stuff that was (I assume accidentally) dropped. I took advantage of the opportunity to try the daggy fix stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
32 | |
|
27105
9ae052d6327b
Work around a build problem in windres in recent binutils where string
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16808
diff
changeset
|
33 | PIDGIN_TRAY_AVAILABLE_4BIT ICON "pixmaps/tray/16/available_4bit.ico" |
|
9ae052d6327b
Work around a build problem in windres in recent binutils where string
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16808
diff
changeset
|
34 | PIDGIN_TRAY_AWAY_4BIT ICON "pixmaps/tray/16/away_4bit.ico" |
|
9ae052d6327b
Work around a build problem in windres in recent binutils where string
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16808
diff
changeset
|
35 | PIDGIN_TRAY_BUSY_4BIT ICON "pixmaps/tray/16/busy_4bit.ico" |
|
9ae052d6327b
Work around a build problem in windres in recent binutils where string
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16808
diff
changeset
|
36 | PIDGIN_TRAY_XA_4BIT ICON "pixmaps/tray/16/extended-away_4bit.ico" |
|
9ae052d6327b
Work around a build problem in windres in recent binutils where string
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16808
diff
changeset
|
37 | PIDGIN_TRAY_OFFLINE_4BIT ICON "pixmaps/tray/16/offline_4bit.ico" |
|
9ae052d6327b
Work around a build problem in windres in recent binutils where string
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16808
diff
changeset
|
38 | PIDGIN_TRAY_CONNECTING_4BIT ICON "pixmaps/tray/16/connecting_4bit.ico" |
|
9ae052d6327b
Work around a build problem in windres in recent binutils where string
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16808
diff
changeset
|
39 | PIDGIN_TRAY_PENDING_4BIT ICON "pixmaps/tray/16/message_4bit.ico" |
|
9ae052d6327b
Work around a build problem in windres in recent binutils where string
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16808
diff
changeset
|
40 | PIDGIN_TRAY_INVISIBLE_4BIT ICON "pixmaps/tray/16/invisible_4bit.ico" |