aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dists/amiga/RM2AG.rexx4
1 files changed, 1 insertions, 3 deletions
diff --git a/dists/amiga/RM2AG.rexx b/dists/amiga/RM2AG.rexx
index 93ea838d2b..ab41d64df7 100644
--- a/dists/amiga/RM2AG.rexx
+++ b/dists/amiga/RM2AG.rexx
@@ -1,6 +1,5 @@
/*
README(.md) to .guide converter $VER: RM2AG.rexx 0.20 (18.05.2019)
-
This script converts a given markdown README file of ScummVM to a basic
hypertext Amiga guide file.
*/
@@ -30,7 +29,7 @@ OPEN(guide_write,'README.guide','W')
Prepare the Amiga guide file, add the intro and fixed text.
*/
WRITELN(guide_write,'@DATABASE ScummVM README.guide')
-WRITELN(guide_write,'@$VER: ScummVM Readme 2.0.0 (17.12.2017)')
+WRITELN(guide_write,'@$VER: ScummVM Readme 2.1.0git')
WRITELN(guide_write,'@(C) by The ScummVM team')
WRITELN(guide_write,'@AUTHOR The ScummVM team')
WRITELN(guide_write,'@WORDWRAP')
@@ -181,7 +180,6 @@ DO WHILE EOF(readme_read) = 0
Two chapters (1.0 and 7.8) are "empty", consisting of only it's
chapter names. We link them to their respective sub chapters
(1.1 and 7.8.1), so we don't end up displaying a blank page.
-
If chapter 1.1 is found don't close the NODE, just write the line.
*/
IF POS('<>1.1<>',working_line) = 1 THEN DO