diff options
author | Barichello <artur@barichello.me> | 2022-01-05 22:15:24 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-05 22:15:24 -0300 |
commit | 733bf92983fa60abfaad6af5c0b9950c3d1e3a4e (patch) | |
tree | aaf69b5f6dec0acf5d660977d789e82dc158ca8b /LauncherInjector | |
parent | a71044f7f430e481511f171d5c50a7425e8ac066 (diff) | |
parent | c928d8169cd80e48716a17819aa4b9e51b41da1a (diff) | |
download | NorthstarLauncher-733bf92983fa60abfaad6af5c0b9950c3d1e3a4e.tar.gz NorthstarLauncher-733bf92983fa60abfaad6af5c0b9950c3d1e3a4e.zip |
Merge pull request #10 from MindSwipe/feature/version_resourcev1.4.0
Add version resource
Diffstat (limited to 'LauncherInjector')
-rw-r--r-- | LauncherInjector/resources.rc | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/LauncherInjector/resources.rc b/LauncherInjector/resources.rc index a51894c4..c065b7bb 100644 --- a/LauncherInjector/resources.rc +++ b/LauncherInjector/resources.rc @@ -54,6 +54,45 @@ END // remains consistent on all systems. IDI_ICON1 ICON "ns_icon.ico" + +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +VS_VERSION_INFO VERSIONINFO + FILEVERSION 1,3,0,0 + PRODUCTVERSION 1,3,0,0 + FILEFLAGSMASK 0x3fL +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x40004L + FILETYPE 0x1L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "080904b0" + BEGIN + VALUE "CompanyName", "Northstar Developers" + VALUE "FileDescription", "Northstar Launcher" + VALUE "FileVersion", "1.3.0.0" + VALUE "InternalName", "NorthstarLauncher.exe" + VALUE "LegalCopyright", "Copyright (C) 2021" + VALUE "OriginalFilename", "NorthstarLauncher.exe" + VALUE "ProductName", "Northstar Launcher" + VALUE "ProductVersion", "1.3.0.0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x809, 1200 + END +END + #endif // English (United Kingdom) resources ///////////////////////////////////////////////////////////////////////////// |