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 Dec 21, 2022
1 parent ff4a436 commit bba7bc8
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 28 deletions.
3 changes: 2 additions & 1 deletion Avalanche.guide
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,13 @@ This is mostly for internal use, but has the following commands:

@node history "Changelog"
@rem keep this to <80 chars for readme
@{u}1.9 (xx.xx.xxxx)@{uu}
@{u}1.9 (21.12.2022)@{uu}
* Add "snapshot window" option
- note that the position is not saved unless save is clicked in prefs
* Add ToolType to disable the ASL hook (filters ASL req to only show archives)
* Add ToolType to set the initial drawer visible in ASL requester
* Fix iconify
* Rebuilt with optimisations

@{u}1.8 (07.12.2022)@{uu}
* Multiple windows supported internally. Limitations:
Expand Down
16 changes: 7 additions & 9 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.8
Version: 1.9
Architecture: m68k-amigaos >= 3.2.0; ppc-amigaos >= 4.1.0
Requires: util/arc/xadmaster000.lha

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

Changes in this version:
* 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.
* Add "snapshot window" option
- note that the position is not saved unless save is clicked in prefs
* Add ToolType to disable the ASL hook (filters ASL req to only show archives)
* Add ToolType to set the initial drawer visible in ASL requester
* Fix iconify
* Rebuilt with optimisations

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 8
#define DATE "9.12.2022"
#define VERS "Avalanche 1.8"
#define VSTRING "Avalanche 1.8 (9.12.2022)\r\n"
#define VERSTAG "\0$VER: Avalanche 1.8 (9.12.2022)"
#define REVISION 9
#define DATE "21.12.2022"
#define VERS "Avalanche 1.9"
#define VSTRING "Avalanche 1.9 (21.12.2022)\r\n"
#define VERSTAG "\0$VER: Avalanche 1.9 (21.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 8
REVISION EQU 9

DATE MACRO
dc.b '9.12.2022'
dc.b '21.12.2022'
ENDM

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

VSTRING MACRO
dc.b 'Avalanche 1.8 (9.12.2022)',13,10,0
dc.b 'Avalanche 1.9 (21.12.2022)',13,10,0
ENDM

VERSTAG MACRO
dc.b 0,'$VER: Avalanche 1.8 (9.12.2022)',0
dc.b 0,'$VER: Avalanche 1.9 (21.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 @@
8
9
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 = 8
REVISION = 9

.macro DATE
.ascii "9.12.2022"
.ascii "21.12.2022"
.endm

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

.macro VSTRING
.ascii "Avalanche 1.8 (9.12.2022)"
.ascii "Avalanche 1.9 (21.12.2022)"
.byte 13,10,0
.endm

.macro VERSTAG
.byte 0
.ascii "$VER: Avalanche 1.8 (9.12.2022)"
.ascii "$VER: Avalanche 1.9 (21.12.2022)"
.byte 0
.endm
4 changes: 2 additions & 2 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ distrib: install
lha a ram:avalanche.lha ram:Avalanche ram:Avalanche.info ram:AutoInstall

clean:
make -i -C os3 clean
make -i -C os4 clean
delete locale_strings.h
make -i -f Makefile.OS3 -C os3 clean
make -i -f Makefile.OS4 -C os4 clean

version:
bumprev 1 Avalanche

0 comments on commit bba7bc8

Please sign in to comment.