Skip to content

Commit

Permalink
v3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-y committed May 1, 2019
1 parent 561731f commit 4179d31
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 21 deletions.
10 changes: 5 additions & 5 deletions source/libarchive_rev.h
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)"
10 changes: 5 additions & 5 deletions source/libarchive_rev.i
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
2 changes: 1 addition & 1 deletion source/libarchive_rev.rev
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1
2
10 changes: 5 additions & 5 deletions source/libarchive_rev.s
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
2 changes: 1 addition & 1 deletion xad_libarchive/Install
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
(askchoice
(prompt "Please select which features you want.\n"
"ZIPX may cause loss of features if you only deal with "
"normal Zip files. For example, it does not support encryption.")
"normal Zip files.")
(help @askchoice-help)
(choices "RAR5"
"RAR5+ZIPX")
Expand Down
Binary file modified xad_libarchive/RAR5/libarchive
Binary file not shown.
Binary file modified xad_libarchive/RAR5_ZIP/libarchive
Binary file not shown.
11 changes: 7 additions & 4 deletions xad_libarchive/xad_libarchive.readme
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 4179d31

Please sign in to comment.