Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-y committed Dec 7, 2022
1 parent 73d3d0c commit 25cff60
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 27 deletions.
10 changes: 6 additions & 4 deletions Avalanche.guide
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,11 @@ Avalanche can be started as a default tool for an archive, or manually. If star
It is possible to "quick extract" archives into their current directory by highlighting
and selecting "Extract here" from the Tools menu.

The Destination can also be changed here. To make this change permanent, select Save settings from the Settings menu. If "Save window position" is checked when Save settings is selected, then the current window position and size will also be saved.

When a valid archive or crunched file is loaded, the contents will be displayed. Unchecked items will not be extracted.

The state of checkboxes can be toggled by clicking on them, or by choosing "Select all" or "Clear selection" from the Edit menu.

Clicking Extract will extract the archive to the chosen destination. If "scan for viruses" is enabled then Avalanche will scan each file using xvs.library after extraction. Any infected files will be deleted. See @{"virus scanning" link vscan} for more details.
Clicking Extract will extract the archive to the chosen destination. If @{"scan for viruses" link config} is enabled then Avalanche will scan each file using xvs.library after extraction. Any infected files will be deleted. See @{"virus scanning" link vscan} for more details.

The browser can be put into a @{"hierarchical" link hbrowser} mode through the menu. This is experimental - see the associated page for details.

Expand Down Expand Up @@ -113,11 +111,15 @@ This is mostly for internal use, but has the following commands:

@node history "Changelog"
@rem keep this to <80 chars for readme
@{u}1.8 (xx.xx.xxxx)@{uu}
@{u}1.8 (07.12.2022)@{uu}
* Multiple windows supported internally. Limitations:
- Commodities events only operate on the main (first) window
- Does not spawn new process, so cannot use other windows whilst one is busy
* Simple @{"ARexx port" link arexx} added.
* Config options moved to separate prefs window
- Note the options to snapshot the current window and change the default
destination are currently not available. They can still be manually set
through @{"tooltypes" link config}.

@{u}1.7 (03.08.2022)@{uu}
* Avalanche now registers as a commodity
Expand Down
13 changes: 9 additions & 4 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: 1.7
Version: 1.8
Architecture: m68k-amigaos >= 3.2.0; ppc-amigaos >= 4.1.0
Requires: util/arc/xadmaster000.lha

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

Changes in this version:
* Avalanche now registers as a commodity
* Added Tools menu item "Extract here" for quick extraction
* Fix initial state of "confirm quit" and "ignore fs" menu items.
* Multiple windows supported internally. Limitations:
- Commodities events only operate on the main (first) window
- Does not spawn new process, so cannot use other windows whilst one is busy
* Simple ARexx port added.
* Config options moved to separate prefs window
- Note the options to snapshot the current window and change the default
destination are currently not available. They can still be manually set
through 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 1
#define REVISION 7
#define DATE "3.8.2022"
#define VERS "Avalanche 1.7"
#define VSTRING "Avalanche 1.7 (3.8.2022)\r\n"
#define VERSTAG "\0$VER: Avalanche 1.7 (3.8.2022)"
#define REVISION 8
#define DATE "7.12.2022"
#define VERS "Avalanche 1.8"
#define VSTRING "Avalanche 1.8 (7.12.2022)\r\n"
#define VERSTAG "\0$VER: Avalanche 1.8 (7.12.2022)"
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 1
REVISION EQU 7
REVISION EQU 8

DATE MACRO
dc.b '3.8.2022'
dc.b '7.12.2022'
ENDM

VERS MACRO
dc.b 'Avalanche 1.7'
dc.b 'Avalanche 1.8'
ENDM

VSTRING MACRO
dc.b 'Avalanche 1.7 (3.8.2022)',13,10,0
dc.b 'Avalanche 1.8 (7.12.2022)',13,10,0
ENDM

VERSTAG MACRO
dc.b 0,'$VER: Avalanche 1.7 (3.8.2022)',0
dc.b 0,'$VER: Avalanche 1.8 (7.12.2022)',0
ENDM
2 changes: 1 addition & 1 deletion src/Avalanche_rev.rev
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7
8
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 = 1
REVISION = 7
REVISION = 8

.macro DATE
.ascii "3.8.2022"
.ascii "7.12.2022"
.endm

.macro VERS
.ascii "Avalanche 1.7"
.ascii "Avalanche 1.8"
.endm

.macro VSTRING
.ascii "Avalanche 1.7 (3.8.2022)"
.ascii "Avalanche 1.8 (7.12.2022)"
.byte 13,10,0
.endm

.macro VERSTAG
.byte 0
.ascii "$VER: Avalanche 1.7 (3.8.2022)"
.ascii "$VER: Avalanche 1.8 (7.12.2022)"
.byte 0
.endm
3 changes: 1 addition & 2 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ LIBS := -lamiga
OBJS := avalanche.o arexx.o config.o libs.o locale.o req.o win.o xad.o xfd.o xvs.o
DEPS := avalanche_rev.h avalanche.h arexx.h config.h libs.h locale.h locale_strings.h req.h win.h xad.h xfd.h xvs.h

all: locale_strings.h install
all: install

%.o: %.c $(DEPS)
$(CC) $(CFLAGS) -c -o $@ $<
Expand Down Expand Up @@ -40,7 +40,6 @@ distrib: install

clean:
delete #?.o
delete locale_strings.h
delete Avalanche

version:
Expand Down
2 changes: 1 addition & 1 deletion src/avalanche.c
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ static struct MsgPort *RegisterCx(CxObj **CXBroker)
newbroker.nb_Name = "Avalanche";
newbroker.nb_Title = VERS;
newbroker.nb_Descr = locale_get_string(MSG_CXDESCRIPTION);
newbroker.nb_Unique = 0;
newbroker.nb_Unique = NBU_UNIQUE;
newbroker.nb_Flags = COF_SHOW_HIDE;
newbroker.nb_Pri = config.cx_pri;
newbroker.nb_Port = CXMP;
Expand Down

0 comments on commit 25cff60

Please sign in to comment.