include/zrcola.h >> include/version.h
This commit is contained in:
parent
67d3c6f3ac
commit
641d178248
@ -9,7 +9,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wxExtend", "lib\wxExtend\bu
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{CFEBC17E-C840-4507-BDE6-1EF5B52DDCC5}"
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{CFEBC17E-C840-4507-BDE6-1EF5B52DDCC5}"
|
||||||
ProjectSection(SolutionItems) = preProject
|
ProjectSection(SolutionItems) = preProject
|
||||||
include\zrcola.h = include\zrcola.h
|
include\version.h = include\version.h
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libZRCola", "lib\libZRCola\build\libZRCola.vcxproj", "{3C61929E-7289-4101-8D0A-DA22D6E1AEA8}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libZRCola", "lib\libZRCola\build\libZRCola.vcxproj", "{3C61929E-7289-4101-8D0A-DA22D6E1AEA8}"
|
||||||
|
BIN
ZRCola/ZRCola.rc
BIN
ZRCola/ZRCola.rc
Binary file not shown.
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "../include/zrcola.h"
|
#include "../include/version.h"
|
||||||
#include "zrcolaabout.h"
|
#include "zrcolaabout.h"
|
||||||
#include "zrcolaapp.h"
|
#include "zrcolaapp.h"
|
||||||
#include "zrcolachrcatpnl.h"
|
#include "zrcolachrcatpnl.h"
|
||||||
|
Binary file not shown.
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "../include/zrcola.h"
|
#include "../include/version.h"
|
||||||
#include "dbsource.h"
|
#include "dbsource.h"
|
||||||
|
|
||||||
#include <zrcola/language.h>
|
#include <zrcola/language.h>
|
||||||
|
Binary file not shown.
@ -7,7 +7,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libZRCola", "lib\libZRCola\
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{ECE3F336-FFD2-41EE-AD8F-17BD7472BDCB}"
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{ECE3F336-FFD2-41EE-AD8F-17BD7472BDCB}"
|
||||||
ProjectSection(SolutionItems) = preProject
|
ProjectSection(SolutionItems) = preProject
|
||||||
include\zrcola.h = include\zrcola.h
|
include\version.h = include\version.h
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZRColaCompile", "ZRColaCompile\ZRColaCompile.vcxproj", "{87A3ADEC-1BE4-42E4-92B8-B742F3D21BC4}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZRColaCompile", "ZRColaCompile\ZRColaCompile.vcxproj", "{87A3ADEC-1BE4-42E4-92B8-B742F3D21BC4}"
|
||||||
|
Binary file not shown.
@ -1,4 +1,4 @@
|
|||||||
#include "zrcola.h"
|
#include "version.h"
|
||||||
|
|
||||||
//
|
//
|
||||||
// Update server(s)
|
// Update server(s)
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
// Product version as a single DWORD
|
// Product version as a single DWORD
|
||||||
// Note: Used for version comparison within C/C++ code.
|
// Note: Used for version comparison within C/C++ code.
|
||||||
//
|
//
|
||||||
#define ZRCOLA_VERSION 0x01ff1300
|
#define ZRCOLA_VERSION 0x01ff1400
|
||||||
|
|
||||||
//
|
//
|
||||||
// Product version by components
|
// Product version by components
|
||||||
@ -33,26 +33,26 @@
|
|||||||
//
|
//
|
||||||
#define ZRCOLA_VERSION_MAJ 1
|
#define ZRCOLA_VERSION_MAJ 1
|
||||||
#define ZRCOLA_VERSION_MIN 255
|
#define ZRCOLA_VERSION_MIN 255
|
||||||
#define ZRCOLA_VERSION_REV 19
|
#define ZRCOLA_VERSION_REV 20
|
||||||
#define ZRCOLA_VERSION_BUILD 0
|
#define ZRCOLA_VERSION_BUILD 0
|
||||||
|
|
||||||
//
|
//
|
||||||
// Human readable product version and build year for UI
|
// Human readable product version and build year for UI
|
||||||
//
|
//
|
||||||
#define ZRCOLA_VERSION_STR "2.0-beta10"
|
#define ZRCOLA_VERSION_STR "2.0-beta11"
|
||||||
#define ZRCOLA_BUILD_YEAR_STR "2016"
|
#define ZRCOLA_BUILD_YEAR_STR "2016"
|
||||||
|
|
||||||
//
|
//
|
||||||
// Numerical version presentation for ProductVersion propery in
|
// Numerical version presentation for ProductVersion propery in
|
||||||
// MSI packages (syntax: N.N[.N[.N]])
|
// MSI packages (syntax: N.N[.N[.N]])
|
||||||
//
|
//
|
||||||
#define ZRCOLA_VERSION_INST "1.255.19"
|
#define ZRCOLA_VERSION_INST "1.255.20"
|
||||||
|
|
||||||
//
|
//
|
||||||
// The product code for ProductCode property in MSI packages
|
// The product code for ProductCode property in MSI packages
|
||||||
// Replace with new on every version change, regardless how minor it is.
|
// Replace with new on every version change, regardless how minor it is.
|
||||||
//
|
//
|
||||||
#define ZRCOLA_VERSION_GUID "{DD261422-947E-4BB4-BCCE-8528EEEAD8C0}"
|
#define ZRCOLA_VERSION_GUID "{C949BB90-B6B2-4268-95DA-0C4533595E1A}"
|
||||||
|
|
||||||
//
|
//
|
||||||
// The product vendor and application name for configuration keeping.
|
// The product vendor and application name for configuration keeping.
|
Binary file not shown.
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "../../../include/zrcola.h"
|
#include "../../../include/version.h"
|
||||||
|
|
||||||
#include "../include/zrcola/character.h"
|
#include "../include/zrcola/character.h"
|
||||||
#include "../include/zrcola/language.h"
|
#include "../include/zrcola/language.h"
|
||||||
|
Binary file not shown.
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "../../../include/zrcola.h"
|
#include "../../../include/version.h"
|
||||||
#include "../include/zrcolaui/chargroup.h"
|
#include "../include/zrcolaui/chargroup.h"
|
||||||
#include "../include/zrcolaui/keyboard.h"
|
#include "../include/zrcolaui/keyboard.h"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user