mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 07:14:55 -06:00
9.04 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
8874e4fbc9
commit
829409452d
@@ -38,6 +38,7 @@ cmdline\switches\method.htm
|
||||
cmdline\switches\ar_include.htm
|
||||
cmdline\switches\ar_exclude.htm
|
||||
cmdline\switches\ar_no.htm
|
||||
cmdline\switches\scc.htm
|
||||
cmdline\switches\charset.htm
|
||||
cmdline\switches\email.htm
|
||||
cmdline\switches\list_tech.htm
|
||||
|
||||
10
DOC/7zip.nsi
10
DOC/7zip.nsi
@@ -1,9 +1,9 @@
|
||||
;--------------------------------
|
||||
;Defines
|
||||
|
||||
!define VERSION_MAJOR 4
|
||||
!define VERSION_MINOR 65
|
||||
!define VERSION_POSTFIX_FULL ""
|
||||
!define VERSION_MAJOR 9
|
||||
!define VERSION_MINOR 04
|
||||
!define VERSION_POSTFIX_FULL " beta"
|
||||
!ifdef WIN64
|
||||
!ifdef IA64
|
||||
!define VERSION_SYS_POSTFIX_FULL " for Windows IA-64"
|
||||
@@ -159,11 +159,7 @@ Section
|
||||
File descript.ion
|
||||
File History.txt
|
||||
File License.txt
|
||||
File copying.txt
|
||||
File readme.txt
|
||||
!ifndef WIN64
|
||||
File 7zip_pad.xml
|
||||
!endif
|
||||
|
||||
# File 7-zip.dll
|
||||
# File 7-zipn.dll
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0"?>
|
||||
|
||||
<?define VerMajor = "4" ?>
|
||||
<?define VerMinor = "65" ?>
|
||||
<?define VerMajor = "9" ?>
|
||||
<?define VerMinor = "04" ?>
|
||||
<?define VerBuild = "00" ?>
|
||||
<?define MmVer = "$(var.VerMajor).$(var.VerMinor)" ?>
|
||||
<?define MmHex = "0$(var.VerMajor)$(var.VerMinor)" ?>
|
||||
@@ -206,7 +206,6 @@
|
||||
</Component>
|
||||
|
||||
<Component Id="Docs" Guid="$(var.CompDocs)" DiskId="1" Win64="$(var.Is64)">
|
||||
<File Id="copying.txt" Name="copying.txt" />
|
||||
<File Id="descript.ion" Name="descript.ion" />
|
||||
<File Id="History.txt" Name="History.txt" />
|
||||
<File Id="License.txt" Name="License.txt" />
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
Licenses for files are:
|
||||
|
||||
1) CPP/7zip/Compress/Rar files: GNU LGPL + unRAR restriction
|
||||
1) CPP/7zip/Compress/Rar* files: GNU LGPL + unRAR restriction
|
||||
2) All other files: GNU LGPL
|
||||
|
||||
The GNU LGPL + unRAR restriction means that you must follow both
|
||||
|
||||
@@ -1,6 +1,16 @@
|
||||
Sources history of the 7-Zip
|
||||
----------------------------
|
||||
|
||||
9.04 2009-05-30
|
||||
-------------------------
|
||||
- ICoder.h: NCoderPropID::EEnum values were changed
|
||||
|
||||
|
||||
9.02 2009-04-23
|
||||
-------------------------
|
||||
- Bug was fixed: if swap2 filter was requests at compression,
|
||||
7-zip used swap4 filter instead (but id was swap2), so archives were incorrect.
|
||||
|
||||
4.61 2008-11-23
|
||||
-------------------------
|
||||
- Bug in ver. 4.58+ was fixed:
|
||||
|
||||
15
DOC/lzma.txt
15
DOC/lzma.txt
@@ -1,4 +1,4 @@
|
||||
LZMA SDK 4.65
|
||||
LZMA SDK 9.04
|
||||
-------------
|
||||
|
||||
LZMA SDK provides the documentation, samples, header files, libraries,
|
||||
@@ -49,6 +49,7 @@ lzma.txt - LZMA SDK description (this file)
|
||||
7zC.txt - 7z ANSI-C Decoder description
|
||||
methods.txt - Compression method IDs for .7z
|
||||
lzma.exe - Compiled file->file LZMA encoder/decoder for Windows
|
||||
7zr.exe - 7-Zip with 7z/lzma/xz support.
|
||||
history.txt - history of the LZMA SDK
|
||||
|
||||
|
||||
@@ -66,7 +67,7 @@ C/ - C files
|
||||
LzmaEnc.* - LZMA encoding
|
||||
LzmaLib.* - LZMA Library for DLL calling
|
||||
Types.h - Basic types for another .c files
|
||||
Threads.* - The code for multithreading.
|
||||
Threads.* - The code for multithreading.
|
||||
|
||||
LzmaLib - LZMA Library (.DLL for Windows)
|
||||
|
||||
@@ -86,11 +87,7 @@ CPP/ -- CPP files
|
||||
|
||||
Compress - files related to compression/decompression
|
||||
|
||||
Copy - Copy coder
|
||||
RangeCoder - Range Coder (special code of compression/decompression)
|
||||
LZMA - LZMA compression/decompression on C++
|
||||
LZMA_Alone - file->file LZMA compression/decompression
|
||||
Branch - Filters for x86, IA-64, ARM, ARM-Thumb, PowerPC and SPARC code
|
||||
|
||||
Archive - files related to archiving
|
||||
|
||||
@@ -369,8 +366,8 @@ Interface:
|
||||
propData - LZMA properties (5 bytes)
|
||||
propSize - size of propData buffer (5 bytes)
|
||||
finishMode - It has meaning only if the decoding reaches output limit (*destLen).
|
||||
LZMA_FINISH_ANY - Decode just destLen bytes.
|
||||
LZMA_FINISH_END - Stream must be finished after (*destLen).
|
||||
LZMA_FINISH_ANY - Decode just destLen bytes.
|
||||
LZMA_FINISH_END - Stream must be finished after (*destLen).
|
||||
You can use LZMA_FINISH_END, when you know that
|
||||
current output buffer covers last bytes of stream.
|
||||
alloc - Memory allocator.
|
||||
@@ -431,7 +428,7 @@ Memory Requirements:
|
||||
{
|
||||
...
|
||||
int res = LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen,
|
||||
const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode);
|
||||
const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode);
|
||||
...
|
||||
}
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
7-Zip 4.65 Sources
|
||||
7-Zip 9.04 Sources
|
||||
------------------
|
||||
|
||||
7-Zip is a file archiver for Windows 95/98/ME/NT/2000/2003/XP/Vista.
|
||||
|
||||
Reference in New Issue
Block a user