Skip to content

Commit

Permalink
7z 21.03
Browse files Browse the repository at this point in the history
  • Loading branch information
w17 committed Jul 28, 2021
1 parent e15e975 commit 0c68e95
Show file tree
Hide file tree
Showing 12 changed files with 1,147 additions and 1,137 deletions.
Binary file modified plugins/arclite/7z/dll/final.32W.vc/7z.dll
Binary file not shown.
Binary file modified plugins/arclite/7z/dll/final.64W.vc/7z.dll
Binary file not shown.
7 changes: 6 additions & 1 deletion plugins/arclite/7z/h/C/7zTypes.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* 7zTypes.h -- Basic types
2021-04-25 : Igor Pavlov : Public domain */
2021-07-13 : Igor Pavlov : Public domain */

#ifndef __7Z_TYPES_H
#define __7Z_TYPES_H
Expand Down Expand Up @@ -62,6 +62,8 @@ typedef int SRes;
typedef unsigned WRes;
#define MY_SRes_HRESULT_FROM_WRes(x) HRESULT_FROM_WIN32(x)

// #define MY_HRES_ERROR__INTERNAL_ERROR MY_SRes_HRESULT_FROM_WRes(ERROR_INTERNAL_ERROR)

#else // _WIN32

// #define ENV_HAVE_LSTAT
Expand Down Expand Up @@ -95,6 +97,7 @@ typedef int WRes;
#define ERROR_DIRECTORY 267L
#define ERROR_TOO_MANY_POSTS 298L
#define ERROR_INTERNAL_ERROR 1359L
#define ERROR_INVALID_REPARSE_DATA 4392L
#define ERROR_REPARSE_TAG_INVALID 4393L
#define ERROR_REPARSE_TAG_MISMATCH 4394L
Expand Down Expand Up @@ -206,6 +209,8 @@ typedef size_t SIZE_T;
#endif // _WIN32


#define MY_HRES_ERROR__INTERNAL_ERROR ((HRESULT)0x8007054FL)


#ifdef _SZ_NO_INT_64

Expand Down
Binary file modified plugins/arclite/7z/sfx/7z.sfx
Binary file not shown.
Binary file modified plugins/arclite/7z/sfx/7zCon.sfx
Binary file not shown.
Binary file modified plugins/arclite/7z/sfx/7zS2.sfx
Binary file not shown.
Binary file modified plugins/arclite/7z/sfx/7zS2con.sfx
Binary file not shown.
Binary file modified plugins/arclite/7z/sfx/7zSD.sfx
Binary file not shown.
2,262 changes: 1,127 additions & 1,135 deletions plugins/arclite/7z/src/CPP/7zip/Bundles/Format7zF/Format7z.vcxproj

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -948,6 +948,12 @@
<ClCompile Include="..\..\..\Common\Sha256Prepare.cpp">
<Filter>Common</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\C\LzFindOpt.c">
<Filter>C</Filter>
</ClCompile>
<ClCompile Include="..\..\..\Common\LzFindPrepare.cpp">
<Filter>Common</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="resource.rc">
Expand Down Expand Up @@ -1643,5 +1649,8 @@
<MASM Include="..\..\..\..\Asm\x86\XzCrc64Opt.asm">
<Filter>Asm</Filter>
</MASM>
<MASM Include="..\..\..\..\Asm\x86\LzFindOpt.asm">
<Filter>Asm</Filter>
</MASM>
</ItemGroup>
</Project>
4 changes: 4 additions & 0 deletions plugins/arclite/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
w17 28.07.2021 15:38:31 +0300 - build 319

1. 7z.dll обновлена до версии 21.03

w17 06.05.2021 17:37:40 +0300 - build 318

1. 7z.dll обновлена до версии 21.02
Expand Down
2 changes: 1 addition & 1 deletion plugins/arclite/project.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
MODULE = arclite
VER_MAJOR = 3
VER_MINOR = 0
VER_BUILD = 318
VER_BUILD = 319

1 comment on commit 0c68e95

@BestiaPL
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it a good idea to add beta versions?
Isn't it better to wait for the final version?

Please sign in to comment.