Skip to content

Commit

Permalink
v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
KaleiAlma committed Feb 16, 2025
1 parent 79ed38b commit 2604540
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions LuaSTG/LuaSTG/Custom/resource.rc
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,3,0,0
PRODUCTVERSION 0,3,0,0
FILEVERSION 0,3,1,0
PRODUCTVERSION 0,3,1,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -68,12 +68,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "KaleiAlma"
VALUE "FileDescription", "LuaSTG Evo"
VALUE "FileVersion", "0.3.0.0"
VALUE "FileVersion", "0.3.1.0"
VALUE "InternalName", "LuaSTG Evo"
VALUE "LegalCopyright", "Copyright 2020-2023 KaleiAlma"
VALUE "OriginalFilename", "LuaSTG.exe"
VALUE "ProductName", "LuaSTG Evo"
VALUE "ProductVersion", "0.3.0.0"
VALUE "ProductVersion", "0.3.1.0"
END
END
BLOCK "VarFileInfo"
Expand Down
4 changes: 2 additions & 2 deletions LuaSTG/LuaSTG/LConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

#define LUASTG_NAME "LuaSTG"
#define LUASTG_BRANCH "Evo"
#define LUASTG_VERSION_NAME "v0.3.0"
#define LUASTG_VERSION_NAME "v0.3.1"
#define LUASTG_VERSION_MAJOR 0
#define LUASTG_VERSION_MINOR 3
#define LUASTG_VERSION_PATCH 0
#define LUASTG_VERSION_PATCH 1

#define LUASTG_INFO LUASTG_NAME " " LUASTG_BRANCH " " LUASTG_VERSION_NAME

Expand Down
2 changes: 1 addition & 1 deletion LuaSTG/LuaSTG/LuaSTG.manifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
<assemblyIdentity type="win32" name="KaleiAlma.LuaSTG.Evo" version="0.3.0.0"/>
<assemblyIdentity type="win32" name="KaleiAlma.LuaSTG.Evo" version="0.3.1.0"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
Expand Down
2 changes: 1 addition & 1 deletion LuaSTG/write-version.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
local version = {
major = 0,
minor = 3,
patch = 0,
patch = 1,
}

local utf8_bom = "\xEF\xBB\xBF"
Expand Down

0 comments on commit 2604540

Please sign in to comment.