108 lines
7.7 KiB
Plaintext
108 lines
7.7 KiB
Plaintext
/*
|
|
Copyright 2015-2020 Amebis
|
|
|
|
This file is part of ZRCola.
|
|
|
|
ZRCola is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
ZRCola is distributed in the hope that it will be useful, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with ZRCola. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "..\\include\\version.h"
|
|
|
|
#include <Updater/common.h>
|
|
#include <windows.h>
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Neutral resources
|
|
|
|
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_NEU)
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Icon
|
|
//
|
|
|
|
// Icon with lowest ID value placed first to ensure application icon
|
|
// remains consistent on all systems.
|
|
00_zrcola.ico ICON "res\\zrcola.ico"
|
|
edit_cut.ico ICON "res\\edit_cut.ico"
|
|
edit_copy.ico ICON "res\\edit_copy.ico"
|
|
edit_paste.ico ICON "res\\edit_paste.ico"
|
|
char_select.ico ICON "res\\char_select.ico"
|
|
send_destination.ico ICON "res\\send_destination.ico"
|
|
send_source.ico ICON "res\\send_source.ico"
|
|
send_abort.ico ICON "res\\send_abort.ico"
|
|
copy_destination_and_return.ico ICON "res\\copy_destination_and_return.ico"
|
|
copy_source_and_return.ico ICON "res\\copy_source_and_return.ico"
|
|
composition.ico ICON "res\\composition.ico"
|
|
//navigate_back.ico ICON "res\\navigate_back.ico"
|
|
//navigate_forward.ico ICON "res\\navigate_forward.ico"
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Binary
|
|
//
|
|
|
|
UPDATER_IDR_KEY_PUBLIC RCDATA "..\\include\\UpdaterKeyPublic.bin"
|
|
|
|
#endif // Neutral resources
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// English (United States) resources
|
|
|
|
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
|
|
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Version
|
|
//
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION PRODUCT_VERSION_MAJ,PRODUCT_VERSION_MIN,PRODUCT_VERSION_REV,PRODUCT_VERSION_BUILD
|
|
PRODUCTVERSION PRODUCT_VERSION_MAJ,PRODUCT_VERSION_MIN,PRODUCT_VERSION_REV,PRODUCT_VERSION_BUILD
|
|
FILEFLAGSMASK VS_FF_DEBUG | VS_FF_PRERELEASE | VS_FF_PATCHED | VS_FF_PRIVATEBUILD | VS_FF_SPECIALBUILD
|
|
#ifdef _DEBUG
|
|
FILEFLAGS VS_FF_DEBUG
|
|
#else
|
|
FILEFLAGS 0x0L
|
|
#endif
|
|
FILEOS VOS_NT_WINDOWS32
|
|
FILETYPE VFT_APP
|
|
FILESUBTYPE 0x0L
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904b0"
|
|
BEGIN
|
|
VALUE "CompanyName", "Amebis, d. o. o., Kamnik, Slovenia"
|
|
VALUE "FileDescription", "ZRCola"
|
|
VALUE "FileVersion", PRODUCT_VERSION_STR
|
|
VALUE "LegalCopyright", "Copyright © 2015" "-" PRODUCT_BUILD_YEAR_STR
|
|
VALUE "OriginalFilename", "ZRCola.exe"
|
|
VALUE "ProductName", "ZRCola"
|
|
VALUE "ProductVersion", PRODUCT_VERSION_STR
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x409, 1200
|
|
END
|
|
END
|
|
|
|
#endif // English (United States) resources
|
|
/////////////////////////////////////////////////////////////////////////////
|