From 0f25f62001976945ada52314bd0f0abce96dbc81 Mon Sep 17 00:00:00 2001 From: Mark Ryan Date: Sun, 19 Mar 2023 14:42:44 +0100 Subject: [PATCH 1/3] release: Add COPYING file to release So everything knows how the code is licensed. Signed-off-by: Mark Ryan --- build/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/build/Makefile b/build/Makefile index aa97e21..0b3f8db 100644 --- a/build/Makefile +++ b/build/Makefile @@ -74,6 +74,7 @@ release: - rm -rf release mkdir -p release/specasm cp specasm.tap salink.tap release/specasm + cp ../COPYING release/specasm cp SAIMPORT SAEXPORT *.X release/specasm cp ../bas/INSTALL release/specasm cp ../bas/REMOVE release/specasm From 4073097294269a058f006562c0351e8ef95b7de9 Mon Sep 17 00:00:00 2001 From: Mark Ryan Date: Sun, 19 Mar 2023 14:43:23 +0100 Subject: [PATCH 2/3] Fix installation script The installation script failed if the /BIN/EXTRA directory was not present on the user's spectrum, which is likely to be the case if they have never previously installed specasm, meaning that it was practically impossible for new users to install specasm. Not ideal! This commit fixes the issue by checking for the presence of /BIN/EXTRA in the install script. If the directory is not present it is created by the install script. Signed-off-by: Mark Ryan --- bas/INSTALL | Bin 406 -> 1041 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/bas/INSTALL b/bas/INSTALL index b7e2164237895a1ff5829fbe4c3b9daddc31ec01..53727bae84ee0adb72971797e1b0a6ef6dc7f086 100755 GIT binary patch literal 1041 zcmcgr&r2Io5dQK*3xy{Lwv-;^6)afY?rz?$8wIVbHHT1*A)CTpLpIPw6T~QZQ+n>D z9(w7eP`vn8^ja$T7xYlt9!gK5UWC%lWV80!wAb!szM1*vn|bs0Rac${&hlDtH-phU zfS0)p+BpLM=Q}`V1oDTYie7O9__+sx>@CRe@q$f0eaEgtU>cOj?=+ggjS0xhe#VwbgAZnVJ&L!awN$QHrLbP} z1#TLU=0;m-OX0B(QQjBsFoi4!D?#Fx?dF-n;PIZHsa2@M)z0Bl_v>% z{64Xpn|iVoR@Z9vWQM>`Jb_8;A4D_M# Date: Sun, 19 Mar 2023 14:46:08 +0100 Subject: [PATCH 3/3] Update version number to v6. Signed-off-by: Mark Ryan --- src/state_base.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/state_base.h b/src/state_base.h index 27a11ad..2678430 100644 --- a/src/state_base.h +++ b/src/state_base.h @@ -17,8 +17,8 @@ #ifndef SPECASM_STATE_READ_H #define SPECASM_STATE_READ_H -#define SPECASM_VERSION 5 -#define SPECASM_VERSION_STR "v5" +#define SPECASM_VERSION 6 +#define SPECASM_VERSION_STR "v6" #include