-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
24 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#define VERSION 3 | ||
#define REVISION 1 | ||
#define DATE "28.4.2019" | ||
#define VERS "libarchive 3.1" | ||
#define VSTRING "libarchive 3.1 (28.4.2019)\r\n" | ||
#define VERSTAG "\0$VER: libarchive 3.1 (28.4.2019)" | ||
#define REVISION 2 | ||
#define DATE "1.5.2019" | ||
#define VERS "libarchive 3.2" | ||
#define VSTRING "libarchive 3.2 (1.5.2019)\r\n" | ||
#define VERSTAG "\0$VER: libarchive 3.2 (1.5.2019)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
VERSION EQU 3 | ||
REVISION EQU 1 | ||
REVISION EQU 2 | ||
|
||
DATE MACRO | ||
dc.b '28.4.2019' | ||
dc.b '1.5.2019' | ||
ENDM | ||
|
||
VERS MACRO | ||
dc.b 'libarchive 3.1' | ||
dc.b 'libarchive 3.2' | ||
ENDM | ||
|
||
VSTRING MACRO | ||
dc.b 'libarchive 3.1 (28.4.2019)',13,10,0 | ||
dc.b 'libarchive 3.2 (1.5.2019)',13,10,0 | ||
ENDM | ||
|
||
VERSTAG MACRO | ||
dc.b 0,'$VER: libarchive 3.1 (28.4.2019)',0 | ||
dc.b 0,'$VER: libarchive 3.2 (1.5.2019)',0 | ||
ENDM |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1 | ||
2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
VERSION = 3 | ||
REVISION = 1 | ||
REVISION = 2 | ||
|
||
.macro DATE | ||
.ascii "28.4.2019" | ||
.ascii "1.5.2019" | ||
.endm | ||
|
||
.macro VERS | ||
.ascii "libarchive 3.1" | ||
.ascii "libarchive 3.2" | ||
.endm | ||
|
||
.macro VSTRING | ||
.ascii "libarchive 3.1 (28.4.2019)" | ||
.ascii "libarchive 3.2 (1.5.2019)" | ||
.byte 13,10,0 | ||
.endm | ||
|
||
.macro VERSTAG | ||
.byte 0 | ||
.ascii "$VER: libarchive 3.1 (28.4.2019)" | ||
.ascii "$VER: libarchive 3.2 (1.5.2019)" | ||
.byte 0 | ||
.endm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,15 +2,15 @@ Short: XAD (UnArc) client for RAR5/ZIPX archives | |
Uploader: [email protected] (Chris Young) | ||
Author: Chris Young | ||
Type: util/arc | ||
Version: 3.1 | ||
Version: 3.2 | ||
URL: http://www.unsatisfactorysoftware.co.uk | ||
Architecture: ppc-amigaos | ||
|
||
This is a xadmaster client for extraction of archives using | ||
libarchive. It currently supports RAR5 and ZIPX files. | ||
|
||
Note that the optional Zip portion, unlike the built-in version, | ||
does not yet support encryption or self-extracting archives. | ||
does not yet support self-extracting archives. | ||
Self-extracting archives are still handled with the built-in | ||
Zip client even with this installed. | ||
|
||
|
@@ -20,8 +20,8 @@ How to identify which version you are running | |
|
||
In the Shell, type xadLibInfo: | ||
|
||
Zip | 5016 | 13 | 3.1 | FILE,EXTERN,FREE(FI) | ||
RAR5 | ---- | 13 | 3.1 | FILE,EXTERN,FREE(FI) | ||
Zip | 5016 | 13 | 3.2 | FILE,EXTERN,FREE(FI) | ||
RAR5 | ---- | 13 | 3.2 | FILE,EXTERN,FREE(FI) | ||
^^^ | ||
| | ||
client version | ||
|
@@ -48,6 +48,9 @@ support RAR4 files, so you still need a client specifically for RAR4. | |
HISTORY | ||
======= | ||
|
||
3.2 (01.05.2019) | ||
Zip client now supports encrypted files. | ||
|
||
3.1 (28.04.2019) | ||
First release. | ||
Version number starts at 3 as the intention was to obsolete the | ||
|