4.41 beta

This commit is contained in:
Igor Pavlov
2006-05-09 00:00:00 +00:00
committed by Kornel Lesiński
parent bd9a40b0ed
commit 631462beb2
19 changed files with 209 additions and 194 deletions

View File

@@ -2,7 +2,7 @@
;Defines
!define VERSION_MAJOR 4
!define VERSION_MINOR 40
!define VERSION_MINOR 41
!define VERSION_POSTFIX_FULL " beta"
!ifdef WIN64
!ifdef IA64

View File

@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<?define VerMajor = "4" ?>
<?define VerMinor = "40" ?>
<?define VerMinor = "41" ?>
<?define VerBuild = "00" ?>
<?define MmVer = "$(var.VerMajor).$(var.VerMinor)" ?>
<?define MmHex = "0$(var.VerMajor)$(var.VerMinor)" ?>
@@ -370,7 +370,7 @@
<ComponentRef Id="InstallRegAppPath" />
</Feature>
<Feature Id="LanguageFiles" Title="Localization files" Description="Localization files for 62 languages."
<Feature Id="LanguageFiles" Title="Localization files" Description="Localization files for 63 languages."
Level="1" AllowAdvertise="no">
<ComponentRef Id="Lang" />
</Feature>

28
DOC/lzma_format.txt Executable file
View File

@@ -0,0 +1,28 @@
6 Signature 0xFF 'L' 'Z' 'M' 'A' 0x00
1 Flags
0 Has CRC16 of the header
1 Has CRC32 of the data
2 Has filter
3 Need initial dictionary
4-7 Reserved, *must* be zero for now.
1 CompressionMethod
0 No compression
1 Lzma
1 Filter ID
0 none
1 BCJ
2 LZMA properties
1 (uint8_t)((pb * 5 + lp) * 9 + lc) (like in LZMA_Alone)
1 Dictionary size.
eppnnnnn
e: 1 - there is end marker
Dictionary size = (1 << nnnnn) + (pp) << (nnnnn - 2);
2 CRC16 of the header
Compressed data
... ...
(-16) 4 CRC32 of the uncompressed data as big endian uint32_t
-12 8 Uncompressed size as big endian uint64_t
-4 4 Footer magic bytes: 0x0A 'I' 'P' 0x0A
0 (End of file; the last byte of the file is at offset -1.)

View File

@@ -1,4 +1,4 @@
7-Zip 4.40 Sources
7-Zip 4.41 Sources
------------------
7-Zip is a file archiver for Windows 95/98/ME/NT/2000/2003/XP.