Some checks reported errors
BlockStorage/repertory/pipeline/head Something is wrong with the build of this commit
## v2.0.2-rc ### BREAKING CHANGES * Refactored `config.json` - will need to verify configuration settings prior to mounting ### Issues * \#12 \[Unit Test\] Complete all providers unit tests * \#14 \[Unit Test\] SQLite mini-ORM unit tests and cleanup * \#16 Add support for bucket name in Sia provider * \#17 Update to common c++ build system * A single 64-bit Linux Jenkins server is used to build all Linux and Windows versions * All dependency sources are now included * MSVC is no longer supported * MSYS2 is required for building Windows binaries on Windows * OS X support is temporarily disabled * \#19 \[bug\] Rename file is broken for files that are existing * \#23 \[bug\] Incorrect file size displayed while upload is pending * \#24 RocksDB implementations should be transactional * \#25 Writes should block when maximum cache size is reached * \#26 Complete ring buffer and direct download support ### Changes from v2.0.1-rc * Ability to choose between RocksDB and SQLite databases * Added direct reads and implemented download fallback * Corrected file times on S3 and Sia providers * Corrected handling of `chown()` and `chmod()` * Fixed erroneous download of chunks after resize Reviewed-on: #27
65 lines
3.0 KiB
Plaintext
65 lines
3.0 KiB
Plaintext
#include <windows.h>
|
|
#define VER_FILEVERSION @PROJECT_MAJOR_VERSION@,@PROJECT_MINOR_VERSION@,@PROJECT_REVISION_VERSION@,@PROJECT_RELEASE_NUM@
|
|
#define VER_FILEVERSION_STR "@PROJECT_MAJOR_VERSION@.@PROJECT_MINOR_VERSION@.@PROJECT_REVISION_VERSION@-@PROJECT_RELEASE_ITER@_@PROJECT_GIT_REV@\0"
|
|
|
|
#define VER_PRODUCTVERSION @PROJECT_MAJOR_VERSION@,@PROJECT_MINOR_VERSION@,@PROJECT_REVISION_VERSION@,@PROJECT_RELEASE_NUM@
|
|
#define VER_PRODUCTVERSION_STR "@PROJECT_MAJOR_VERSION@.@PROJECT_MINOR_VERSION@.@PROJECT_REVISION_VERSION@-@PROJECT_RELEASE_ITER@_@PROJECT_GIT_REV@\0"
|
|
|
|
#define VER_COMPANYNAME_STR "@PROJECT_COMPANY_NAME@\0"
|
|
#define VER_INTERNALNAME_STR "@PROJECT_NAME@ @PROJECT_MAJOR_VERSION@.@PROJECT_MINOR_VERSION@.@PROJECT_REVISION_VERSION@-@PROJECT_RELEASE_ITER@_@PROJECT_GIT_REV@\0"
|
|
#define VER_LEGALCOPYRIGHT_STR "@PROJECT_COPYRIGHT@\0"
|
|
#define VER_ORIGINALFILENAME_STR "@PROJECT_NAME@.exe\0"
|
|
#define VER_LEGALTRADEMARKS1_STR "\0"
|
|
#define VER_LEGALTRADEMARKS2_STR "\0"
|
|
#define VER_FILEDESCRIPTION_STR "@PROJECT_DESC@\0"
|
|
#define VER_PRODUCTNAME_STR "@PROJECT_NAME@ @PROJECT_MAJOR_VERSION@.@PROJECT_MINOR_VERSION@.@PROJECT_REVISION_VERSION@-@PROJECT_RELEASE_ITER@_@PROJECT_GIT_REV@\0"
|
|
|
|
#ifdef DEBUG
|
|
#define VER_DEBUG VS_FF_DEBUG
|
|
#else
|
|
#define VER_DEBUG 0
|
|
#endif
|
|
|
|
#define VER_PRERELEASE @PROJECT_PRERELEASE@
|
|
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION VER_FILEVERSION
|
|
PRODUCTVERSION VER_PRODUCTVERSION
|
|
FILEFLAGSMASK (VS_FF_DEBUG|VS_FF_PRERELEASE)
|
|
FILEFLAGS (VER_DEBUG|VER_PRERELEASE)
|
|
FILEOS VOS__WINDOWS32
|
|
FILETYPE VFT_DLL
|
|
FILESUBTYPE VFT2_UNKNOWN
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904E4"
|
|
BEGIN
|
|
VALUE "CompanyName", VER_COMPANYNAME_STR
|
|
VALUE "FileDescription", VER_FILEDESCRIPTION_STR
|
|
VALUE "FileVersion", VER_FILEVERSION_STR
|
|
VALUE "InternalName", VER_INTERNALNAME_STR
|
|
VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR
|
|
VALUE "LegalTrademarks1", VER_LEGALTRADEMARKS1_STR
|
|
VALUE "LegalTrademarks2", VER_LEGALTRADEMARKS2_STR
|
|
VALUE "OriginalFilename", VER_ORIGINALFILENAME_STR
|
|
VALUE "ProductName", VER_PRODUCTNAME_STR
|
|
VALUE "ProductVersion", VER_PRODUCTVERSION_STR
|
|
END
|
|
END
|
|
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
/* The following line should only be modified for localized versions. */
|
|
/* It consists of any number of WORD,WORD pairs, with each pair */
|
|
/* describing a language,codepage combination supported by the file. */
|
|
/* */
|
|
/* For example, a file might have values "0x409,1252" indicating that it */
|
|
/* supports English language (0x409) in the Windows ANSI codepage (1252). */
|
|
|
|
VALUE "Translation", 0x409, 1252
|
|
|
|
END
|
|
END
|