🎉 v2.1.2

release v2.1.2
This commit is contained in:
bitcookies 2022-04-24 15:36:03 +08:00
parent f945d22759
commit e90727c376
10 changed files with 13 additions and 6 deletions

View file

@ -238,7 +238,8 @@ public:
RegInfo.Checksum 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) { if (RegInfo.HexData.length() % 54 != 0) {
throw std::runtime_error("InternalError: The length of register data is not correct."); throw std::runtime_error("InternalError: The length of register data is not correct.");
} }

View file

@ -16,7 +16,7 @@ void Help() {
_putts(TEXT(" or:")); _putts(TEXT(" or:"));
_putts(TEXT(" winrar-keygen.exe \"Github\" \"Github.com\" > rarreg.key\n")); _putts(TEXT(" winrar-keygen.exe \"Github\" \"Github.com\" > rarreg.key\n"));
_putts(TEXT(" or:")); _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) { void PrintRegisterInfo(const WinRarKeygen<WinRarConfig>::RegisterInfo& Info) {

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -61,8 +61,8 @@ IDI_ICON1 ICON "icon.ico"
// //
VS_VERSION_INFO VERSIONINFO VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,1,1,0 FILEVERSION 2,1,2,0
PRODUCTVERSION 2,1,1,0 PRODUCTVERSION 2,1,2,0
FILEFLAGSMASK 0x3fL FILEFLAGSMASK 0x3fL
#ifdef _DEBUG #ifdef _DEBUG
FILEFLAGS 0x1L FILEFLAGS 0x1L
@ -79,12 +79,12 @@ BEGIN
BEGIN BEGIN
VALUE "CompanyName", "WinRAR Keygen" VALUE "CompanyName", "WinRAR Keygen"
VALUE "FileDescription", "WinRAR Key Generation Tool" VALUE "FileDescription", "WinRAR Key Generation Tool"
VALUE "FileVersion", "2.1.1.0" VALUE "FileVersion", "2.1.2.0"
VALUE "InternalName", "winrar-keygen.exe" VALUE "InternalName", "winrar-keygen.exe"
VALUE "LegalCopyright", "Copyright (C) 2022 MIT License" VALUE "LegalCopyright", "Copyright (C) 2022 MIT License"
VALUE "OriginalFilename", "winrar-keygen.exe" VALUE "OriginalFilename", "winrar-keygen.exe"
VALUE "ProductName", "WinRAR Keygen" VALUE "ProductName", "WinRAR Keygen"
VALUE "ProductVersion", "2.1.1.0" VALUE "ProductVersion", "2.1.2.0"
END END
END END
BLOCK "VarFileInfo" BLOCK "VarFileInfo"

View file

@ -185,6 +185,9 @@
<Image Include="icon.ico" /> <Image Include="icon.ico" />
<Image Include="icon.png" /> <Image Include="icon.png" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<None Include="LICENSE" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets"> <ImportGroup Label="ExtensionTargets">
</ImportGroup> </ImportGroup>

View file

@ -61,4 +61,7 @@
<Filter>资源文件</Filter> <Filter>资源文件</Filter>
</Image> </Image>
</ItemGroup> </ItemGroup>
<ItemGroup>
<None Include="LICENSE" />
</ItemGroup>
</Project> </Project>