Skip to content

Commit

Permalink
fix: forgot to remove zip print
Browse files Browse the repository at this point in the history
  • Loading branch information
dady8889 committed May 24, 2022
1 parent ebbf119 commit d6ff59c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Onova.Installer/Onova.Installer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,9 @@ bool Unzip(wstring targetZip, wstring targetPath, DWORD& unpackedSize)
std::ifstream stream(targetZip, std::ios::binary);
miniz_cpp::zip_file zip(stream);

#ifndef NDEBUG
zip.printdir(std::wcout);
#endif

size_t size = zip.extractall(targetPath);
unpackedSize = size / 1024;
Expand Down
4 changes: 2 additions & 2 deletions Onova.Publisher.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>Onova.Publisher</id>
<title>Onova.Publisher</title>
<version>1.2.2</version>
<version>1.2.3</version>
<authors>dady8889</authors>
<owners>dady8889</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
Expand All @@ -15,7 +15,7 @@
<group targetFramework="net5.0" />
<group targetFramework="net6.0" />
</dependencies>
<releaseNotes>* REFACTORING: Replaced zip handler library. This change should fix potential issues with UTF path names in zip, unpacking of empty files/folders.
<releaseNotes>* FIX: Removed printing of zip file structure during install.
</releaseNotes>
</metadata>
<files>
Expand Down
2 changes: 1 addition & 1 deletion Onova.Publisher/Onova.Publisher.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<TargetFramework>net5.0</TargetFramework>
<Authors>dady8889</Authors>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Version>1.2.2</Version>
<Version>1.2.3</Version>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<OutputPath>$(SolutionDir)bin\$(MSBuildProjectName)\$(Configuration)\$(Platform)\</OutputPath>
Expand Down

0 comments on commit d6ff59c

Please sign in to comment.