Skip to content

Commit

Permalink
Bump version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-y committed Sep 22, 2023
1 parent 60391a8 commit 5206c5a
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 22 deletions.
19 changes: 16 additions & 3 deletions Avalanche.guide
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,19 @@ Infected files will be deleted without warning.
Files will not be further extracted in order to be scanned, so infected files that are individually compressed inside the archive will not be picked up. It is recommended to run a scan with a full featured virus checker over any archives of concern.
@endnode

@node deark "Deark"
Deark is a program which can extract all sorts of data from files, and convert obscure file formats to more modern ones.

Download from Aminet, source is at https://github.com/jsummers/deark

To use in Avalanche it needs to be present in the path, and enabled in the MODULES @{"tooltype" link config}.

There is a bug which prevents extraction to root directories on the Amiga, so currently extraction needs to be to a subdirectory.

The 68k version appears to be very unstable.

@endnode

@node arexx "ARexx port"
Avalanche has an ARexx port called "AVALANCHE".
This is mostly for internal use, but has the following commands:
Expand All @@ -120,11 +133,11 @@ This is mostly for internal use, but has the following commands:

@node history "Changelog"
@rem keep this to <80 chars for readme
@{u}2.4 (xx.xx.xxxx)@{uu}
* Support Deark (needs enabling by tooltype - see below)
@{u}2.4 (22.09.2023)@{uu}
* Support @{"Deark" link deark} (needs enabling by tooltype - see below)
This is a "beta" feature, it may be unstable and due to a bug in
Deark, it is not possible to extract to the root of any device.
* Add option to select modules (MODULES @{"tooltypes" link config})
* Add option to select modules (MODULES @{"tooltype" link config})
* Fix password caching
* Also use T: as temp by default from CLI

Expand Down
12 changes: 9 additions & 3 deletions avalanche.readme
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Short: ReAction unarchive GUI for xfd/xadmaster
Uploader: chris@unsatisfactorysoftware.co.uk (Chris Young)
Author: chris@unsatisfactorysoftware.co.uk (Chris Young)
Type: util/arc
Version: 2.3
Version: 2.4
Architecture: m68k-amigaos >= 3.2.1; ppc-amigaos >= 4.1.0
Requires: util/arc/xadmaster000.lha

Expand All @@ -19,8 +19,14 @@ All use is at your own risk.
GPL, source code available on website.

Changes in this version:
* Fix setting of list mode
* Remove tree in list mode view
* Support Deark (needs enabling by tooltype)
This is a "beta" feature, it may be unstable and due to a bug in
Deark, it is not possible to extract to the root of any device.
* Add option to select modules (MODULES tooltype)
* Fix password caching
* Also use T: as temp by default from CLI

-- To enable Deark, add MODULES=XAD|XFD|DEARK to tooltypes.


For full history see documentation inside the archive.
10 changes: 5 additions & 5 deletions src/Avalanche_rev.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#define VERSION 2
#define REVISION 3
#define DATE "16.6.2023"
#define VERS "Avalanche 2.3"
#define VSTRING "Avalanche 2.3 (16.6.2023)\r\n"
#define VERSTAG "\0$VER: Avalanche 2.3 (16.6.2023)"
#define REVISION 4
#define DATE "22.9.2023"
#define VERS "Avalanche 2.4"
#define VSTRING "Avalanche 2.4 (22.9.2023)\r\n"
#define VERSTAG "\0$VER: Avalanche 2.4 (22.9.2023)"
10 changes: 5 additions & 5 deletions src/Avalanche_rev.i
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
VERSION EQU 2
REVISION EQU 3
REVISION EQU 4

DATE MACRO
dc.b '16.6.2023'
dc.b '22.9.2023'
ENDM

VERS MACRO
dc.b 'Avalanche 2.3'
dc.b 'Avalanche 2.4'
ENDM

VSTRING MACRO
dc.b 'Avalanche 2.3 (16.6.2023)',13,10,0
dc.b 'Avalanche 2.4 (22.9.2023)',13,10,0
ENDM

VERSTAG MACRO
dc.b 0,'$VER: Avalanche 2.3 (16.6.2023)',0
dc.b 0,'$VER: Avalanche 2.4 (22.9.2023)',0
ENDM
2 changes: 1 addition & 1 deletion src/Avalanche_rev.rev
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3
4
10 changes: 5 additions & 5 deletions src/Avalanche_rev.s
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
VERSION = 2
REVISION = 3
REVISION = 4

.macro DATE
.ascii "16.6.2023"
.ascii "22.9.2023"
.endm

.macro VERS
.ascii "Avalanche 2.3"
.ascii "Avalanche 2.4"
.endm

.macro VSTRING
.ascii "Avalanche 2.3 (16.6.2023)"
.ascii "Avalanche 2.4 (22.9.2023)"
.byte 13,10,0
.endm

.macro VERSTAG
.byte 0
.ascii "$VER: Avalanche 2.3 (16.6.2023)"
.ascii "$VER: Avalanche 2.4 (22.9.2023)"
.byte 0
.endm

0 comments on commit 5206c5a

Please sign in to comment.