mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 01:14:55 -06:00
21.07
This commit is contained in:
@@ -58,6 +58,7 @@ cmdline\switches\shared.htm
|
||||
cmdline\switches\sni.htm
|
||||
cmdline\switches\sns.htm
|
||||
cmdline\switches\spf.htm
|
||||
cmdline\switches\spm.htm
|
||||
cmdline\switches\ssc.htm
|
||||
cmdline\switches\stdin.htm
|
||||
cmdline\switches\stdout.htm
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0"?>
|
||||
|
||||
<?define VerMajor = "21" ?>
|
||||
<?define VerMinor = "06" ?>
|
||||
<?define VerMinor = "07" ?>
|
||||
<?define VerBuild = "00" ?>
|
||||
<?define MmVer = "$(var.VerMajor).$(var.VerMinor)" ?>
|
||||
<?define MmHex = "$(var.VerMajor)$(var.VerMinor)" ?>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
7-Zip 21.05 Sources
|
||||
7-Zip 21.07 Sources
|
||||
-------------------
|
||||
|
||||
7-Zip is a file archiver for Windows.
|
||||
@@ -148,6 +148,28 @@ Also you can change some compiler options in the mak files:
|
||||
var_gcc.mak
|
||||
warn_gcc.mak
|
||||
|
||||
makefile.gcc supports some variables that can change compile options
|
||||
|
||||
USE_JWASM=1
|
||||
use JWasm assembler instead of Asmc.
|
||||
Note that JWasm doesn't support AES instructions. So AES code from C version AesOpt.c
|
||||
will be used instead of assembler code from AesOpt.asm.
|
||||
|
||||
DISABLE_RAR=1
|
||||
removes whole RAR related code from compilation.
|
||||
|
||||
DISABLE_RAR_COMPRESS=1
|
||||
removes "not fully free" code of RAR decompression codecs from compilation.
|
||||
|
||||
RAR decompression codecs in 7-Zip code has some additional license restrictions,
|
||||
that can be treated as not fully compatible with free-software licenses.
|
||||
DISABLE_RAR_COMPRESS=1 allows to exclude such "not-fully-free" RAR code from compilation.
|
||||
if DISABLE_RAR_COMPRESS=1 is specified, 7-zip will not be able to decompress files
|
||||
from rar archives, but 7-zip still will be able to open rar archives to get list of
|
||||
files or to extract files that are stored without compression.
|
||||
if DISABLE_RAR=1 is specified, 7-zip will not be able to work with RAR archives.
|
||||
|
||||
|
||||
|
||||
7-Zip and p7zip
|
||||
===============
|
||||
|
||||
@@ -1,6 +1,14 @@
|
||||
HISTORY of the 7-Zip source code
|
||||
--------------------------------
|
||||
|
||||
21.07 2021-12-26
|
||||
-------------------------
|
||||
- The sorting order of files in archives was slightly changed to be more consistent
|
||||
for cases where the name of some directory is the same as the prefix part of the name
|
||||
of another directory or file.
|
||||
- TAR archives created by 7-Zip now are more consistent with archives created by GNU TAR program.
|
||||
|
||||
|
||||
21.06 2021-11-24
|
||||
-------------------------
|
||||
- Bug in LZMA encoder in file LzmaEnc.c was fixed:
|
||||
|
||||
Reference in New Issue
Block a user