Skip to content

Commit 51c82b9

Browse files
committed
Version up for release
1 parent d76bbe3 commit 51c82b9

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

docs/Manual_en.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
= knloader English Manual
22
:author: kounch
3-
:revnumber: 0.12.0
3+
:revnumber: 1.0.0
44
:doctype: book
55
:email: kounch@users.noreply.github.com
66
:Revision: 1.0

docs/Manual_es.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
= Manual de knloader
22
:author: kounch
3-
:revnumber: 0.12.0
3+
:revnumber: 1.0.0
44
:doctype: book
55
:email: kounch@users.noreply.github.com
66
:Revision: 1.0

docs/knloader_en.gde

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@title knloader Manual
22
@author kounch
3-
@version 0.12
3+
@version 1.0
44
@copyright Copyright (C)2020 kounch
55
@date 2020/05/31
66

@@ -12,7 +12,7 @@
1212

1313
@{c}knloader Manual
1414

15-
@{c}Version 0.12
15+
@{c}Version 1.0
1616

1717
@{h1}
1818

docs/knloader_es.gde

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@title Manual de knloader
22
@author kounch
3-
@version 0.12
3+
@version 1.0
44
@copyright Copyright (C)2020 kounch
55
@date 2020/06/13
66

@@ -12,7 +12,7 @@
1212

1313
@{c}Manual de knloader
1414

15-
@{c}Versión 0.12
15+
@{c}Versión 1.0
1616

1717
@{h1}
1818

knlauncher.bas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
50 LET %s=%REG 7&3:RUN AT 2
99
60 ON ERROR PRINT "ERROR":ERROR TO e,l:PRINT e,l:PAUSE 0:RUN AT %s:FOR %a=0 TO 15:CLOSE # %a:NEXT %a:ERASE:ON ERROR
1010
70 LAYER CLEAR:SPRITE CLEAR:PALETTE CLEAR:PAPER 7:BORDER 7:INK 0:CLS
11-
80 OPEN # 6,"w>22,1,1,32,4":PRINT #6;AT 0,0;">> knlauncher v0.12 >> (c) kounch 2020":CLOSE # 6
11+
80 OPEN # 6,"w>22,1,1,32,4":PRINT #6;AT 0,0;">> knlauncher v1.0 >> (c) kounch 2020":CLOSE # 6
1212
90 LET x=USR 5808:LOAD "c:/nextzxos/usr0.bin"CODE 32768
1313

1414
200 ; Load Options

knloader.bas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
60 ON ERROR PRINT "ERROR":ERROR TO e,l:PRINT e,l:PAUSE 0:RUN AT %s:FOR %a=0 TO 15:CLOSE # %a:NEXT %a:ERASE:ON ERROR
1010
70 GO SUB 7000:; Load Defaults
1111
80 LAYER CLEAR:SPRITE CLEAR:PALETTE CLEAR:PAPER tinta:BORDER tinta:INK papel:CLS
12-
90 PRINT AT 5,13;"> knloader v0.12 <":PRINT AT 8,15;"© kounch 2020":PRINT AT 15,14;"Press H for help"
12+
90 PRINT AT 5,13;"> knloader v1.0 <":PRINT AT 8,15;"© kounch 2020":PRINT AT 15,14;"Press H for help"
1313

1414
95 ; Load Menu Items
1515
100 GO SUB 4900:; Load Cache To RAM

locale/es/knloader.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
'9,1;"Press C or joystick secondary to hide/show images"'='9,1;"C o segundo disparo para mostrar/ocultar imagenes"'
1919
'13,1;"Press X to exit"'='13,1;"Pulse X para salir"'
2020
'15,1;"Press H to show this help"'='15,1;"Pulse H para ver esta ayuda"'
21-
'19,5;"Press any key or button to close this window"'='19,5;"Pulse cualquier tecla o boton para cerrar la ayuda"'
21+
'19,5;"Press any key or button to close this window"'='19,4;"Pulse cualquier tecla o boton para cerrar la ayuda"'
2222
'm$="3DOS (Next)"'='m$="3DOS (Next)"'
2323
'm$="TAP"'='m$="TAP"'
2424
'm$="TZX (fast)"'='m$="TZX (rapido)"'

utils/bdt_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
from pathlib2 import Path
3535

3636
__MY_NAME__ = 'bdt_builder.py'
37-
__MY_VERSION__ = '0.12'
37+
__MY_VERSION__ = '1.0'
3838

3939
DICT_EXTS = {
4040
'nex': 15,

utils/cache2bdt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
from pathlib2 import Path
3636

3737
__MY_NAME__ = 'cache2bdt.py'
38-
__MY_VERSION__ = '0.12'
38+
__MY_VERSION__ = '1.0'
3939

4040
__MAXNAME_L__ = 23
4141
__MAXPATH_L__ = 65

utils/cache_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
from pathlib2 import Path
3434

3535
__MY_NAME__ = 'cache_builder.py'
36-
__MY_VERSION__ = '0.12'
36+
__MY_VERSION__ = '1.0'
3737

3838
__MAXNAME_L__ = 23
3939
__MAXPATH_L__ = 65

0 commit comments

Comments
 (0)