New upstream version 1.0.5

This commit is contained in:
geos_one
2025-08-08 20:34:09 +02:00
commit 5e5aafa7b7
371 changed files with 402888 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
#ifndef _VERSION_ISS_
#define _VERSION_ISS_
#ifndef __POPT_P__
# define private CStrings
# pragma parseroption -p+
#endif
#define ExeVersion(Str FileName) \
Local[0] = 0, Local[1] = 0, Local[2] = 0, Local[3] = 0, \
ParseVersion(FileName, Local[0], Local[1], Local[2], Local[3]), \
DecodeVer(EncodeVer(Local[0], Local[1], Local[2], Local[3]), 2 + (((Local[2] + Local[3]) > 0) ? 1 : 0) + ((Local[3] > 0) ? 1 : 0))
#define ExeFullVersion(Str FileName) \
Local[0] = GetFileVersion(FileName), Local[0]
#define APPVERSION "1.0.5-r15.6"
#ifdef APPNAME
# ifdef APPVERSION
# define APPVERNAME APPNAME + ' ' + APPVERSION
# define APPFULLVER APPVERSION
# define APPFULLVERNAME APPNAME + ' ' + APPFULLVER
# else
# ifdef APPEXE
# define APPVERSION ExeVersion(APPEXE)
# define APPFULLVER ExeFullVersion(APPEXE)
# define APPVERNAME APPNAME + ' ' + APPVERSION
# define APPFULLVERNAME APPNAME + ' ' + APPFULLVER
# endif
# endif
# ifdef APPVERSION
# define SETUPVNAME APPNAME + '-' + APPVERSION
# endif
# ifdef APPFULLVER
# define SETUPFVNAME APPNAME + '-' + APPFULLVER
# endif
# define SETUPNAME APPNAME
#endif
#ifdef CStrings
# pragma parseroption -p-
#endif
#endif