Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
randomdude999 committed Jan 20, 2021
1 parent 00fc0a8 commit a8538ca
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/asar/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
// Couldn't find a way to automate this without shoving the version somewhere in the CMake files
extern const int asarver_maj=1;
extern const int asarver_min=8;
extern const int asarver_bug=0;
extern const int asarver_bug=1;
extern const bool asarver_beta=false;

#ifdef _I_RELEASE
Expand Down
8 changes: 4 additions & 4 deletions src/asar/res/windows/asar.rc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
1 ICON DISCARDABLE "asar.ico"

1 VERSIONINFO
FILEVERSION 1,8,0,0
PRODUCTVERSION 1,8,0,0
FILEVERSION 1,8,1,0
PRODUCTVERSION 1,8,1,0
{
BLOCK "StringFileInfo"
{
Expand All @@ -11,12 +11,12 @@
VALUE "CompanyName", "Asar devs\0"
VALUE "FileDescription", "SNES assembler\0"
// explorer apparently always shows the file version with the numbers, but product version with text?
VALUE "FileVersion", "v1.80\0"
VALUE "FileVersion", "v1.81\0"
// apparently this is required?
VALUE "InternalName", "asar\0"
VALUE "OriginalFilename", "asar.exe\0"
VALUE "ProductName", "Asar\0"
VALUE "ProductVersion", "v1.80\0"
VALUE "ProductVersion", "v1.81\0"
}
}
BLOCK "VarFileInfo"
Expand Down
8 changes: 4 additions & 4 deletions src/asar/res/windows/asar_lib.rc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
1 VERSIONINFO
FILEVERSION 1,8,0,0
PRODUCTVERSION 1,8,0,0
FILEVERSION 1,8,1,0
PRODUCTVERSION 1,8,1,0
{
BLOCK "StringFileInfo"
{
Expand All @@ -9,12 +9,12 @@
VALUE "CompanyName", "Asar devs\0"
VALUE "FileDescription", "SNES assembler\0"
// explorer apparently always shows the file version with the numbers, but product version with text?
VALUE "FileVersion", "v1.80\0"
VALUE "FileVersion", "v1.81\0"
// apparently this is required?
VALUE "InternalName", "asar\0"
VALUE "OriginalFilename", "asar.exe\0"
VALUE "ProductName", "Asar\0"
VALUE "ProductVersion", "v1.80\0"
VALUE "ProductVersion", "v1.81\0"
}
}
BLOCK "VarFileInfo"
Expand Down

0 comments on commit a8538ca

Please sign in to comment.