Skip to content

Commit

Permalink
🎉 v2.1.2
Browse files Browse the repository at this point in the history
release v2.1.2
  • Loading branch information
bitcookies committed Apr 24, 2022
1 parent f945d22 commit e90727c
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 6 deletions.
3 changes: 2 additions & 1 deletion WinRarKeygen.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,8 @@ class WinRarKeygen {
RegInfo.Checksum
);

// The length has been limited to 60, this maybe it's been fixed.
// The length has been limited to 60
// This problem has been fixed, this prompt should no longer appear
if (RegInfo.HexData.length() % 54 != 0) {
throw std::runtime_error("InternalError: The length of register data is not correct.");
}
Expand Down
2 changes: 1 addition & 1 deletion _tmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ void Help() {
_putts(TEXT(" or:"));
_putts(TEXT(" winrar-keygen.exe \"Github\" \"Github.com\" > rarreg.key\n"));
_putts(TEXT(" or:"));
_putts(TEXT(" winrar-keygen.exe \"Github\" \"Github.com\" | out-file -encoding ascii rarreg.key\n"));
_putts(TEXT(" winrar-keygen.exe \"Github\" \"Github.com\" | Out-File -Encoding ASCII rarreg.key\n"));
}

void PrintRegisterInfo(const WinRarKeygen<WinRarConfig>::RegisterInfo& Info) {
Expand Down
Binary file modified bin/Win32-Release/winrar-keygen.exe
Binary file not shown.
Binary file removed bin/Win32-Release/winrar-keygen.pdb
Binary file not shown.
Binary file modified bin/x64-Release/winrar-keygen.exe
Binary file not shown.
Binary file removed bin/x64-Release/winrar-keygen.pdb
Binary file not shown.
Binary file modified winrar-keygen.aps
Binary file not shown.
8 changes: 4 additions & 4 deletions winrar-keygen.rc
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ IDI_ICON1 ICON "icon.ico"
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,1,1,0
PRODUCTVERSION 2,1,1,0
FILEVERSION 2,1,2,0
PRODUCTVERSION 2,1,2,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -79,12 +79,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "WinRAR Keygen"
VALUE "FileDescription", "WinRAR Key Generation Tool"
VALUE "FileVersion", "2.1.1.0"
VALUE "FileVersion", "2.1.2.0"
VALUE "InternalName", "winrar-keygen.exe"
VALUE "LegalCopyright", "Copyright (C) 2022 MIT License"
VALUE "OriginalFilename", "winrar-keygen.exe"
VALUE "ProductName", "WinRAR Keygen"
VALUE "ProductVersion", "2.1.1.0"
VALUE "ProductVersion", "2.1.2.0"
END
END
BLOCK "VarFileInfo"
Expand Down
3 changes: 3 additions & 0 deletions winrar-keygen.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,9 @@
<Image Include="icon.ico" />
<Image Include="icon.png" />
</ItemGroup>
<ItemGroup>
<None Include="LICENSE" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
Expand Down
3 changes: 3 additions & 0 deletions winrar-keygen.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,7 @@
<Filter>资源文件</Filter>
</Image>
</ItemGroup>
<ItemGroup>
<None Include="LICENSE" />
</ItemGroup>
</Project>

0 comments on commit e90727c

Please sign in to comment.