Mercurial > public > mk2
changeset 653:994a04d7ae57
2.55beta start
author | heinrichsweikamp |
---|---|
date | Fri, 12 Oct 2012 11:05:34 +0200 |
parents | 86b49e47b2f5 |
children | a38d82918458 |
files | code_part1/OSTC_code_asm_part1/changelog.txt code_part1/OSTC_code_asm_part1/definitions.asm code_part1/OSTC_code_asm_part1/english_text.asm code_part1/OSTC_code_asm_part1/french_text.asm code_part1/OSTC_code_asm_part1/german_text.asm code_part1/OSTC_code_asm_part1/italian_text.asm code_part1/OSTC_code_asm_part1/pled_outputs.asm code_part1/OSTC_code_asm_part1/russian_text.asm code_part1/OSTC_code_asm_part1/spanish_text.asm code_part1/OSTC_code_asm_part1/turkish_text.asm |
diffstat | 10 files changed, 16 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/code_part1/OSTC_code_asm_part1/changelog.txt Thu Oct 11 20:58:48 2012 +0200 +++ b/code_part1/OSTC_code_asm_part1/changelog.txt Fri Oct 12 11:05:34 2012 +0200 @@ -1,6 +1,11 @@ +New in 2.55: +BETA Version - Do NOT use for diving! + + New in 2.54: BETA Version - Do NOT use for diving! BUGFIX: Allow Diluents with more then 50% He +CHANGE: "Max." Depth text position New in 2.53: BETA Version - Do NOT use for diving!
--- a/code_part1/OSTC_code_asm_part1/definitions.asm Thu Oct 11 20:58:48 2012 +0200 +++ b/code_part1/OSTC_code_asm_part1/definitions.asm Fri Oct 12 11:05:34 2012 +0200 @@ -22,7 +22,7 @@ ; ToDo: #DEFINE softwareversion_x d'2' ; Software version XX.YY -#DEFINE softwareversion_y d'54' ; Software version XX.YY +#DEFINE softwareversion_y d'55' ; Software version XX.YY #DEFINE softwareversion_beta 1 ; (and 0 for release)
--- a/code_part1/OSTC_code_asm_part1/english_text.asm Thu Oct 11 20:58:48 2012 +0200 +++ b/code_part1/OSTC_code_asm_part1/english_text.asm Fri Oct 12 11:05:34 2012 +0200 @@ -406,7 +406,7 @@ TCODE .120, .135, "Air " ;265 Air TCODE .0, .0, "pSCR Info" ;266 pSCR Info (Must be 9Chars!) - TCODE .0, .216, "Max." ;267 Max. + TCODE .0, .184, "Max." ;267 Max. TCODE .0, .0, "" ;268 unused TCODE .0, .0, "" ;269 unused TCODE .0, .0, "" ;270 unused
--- a/code_part1/OSTC_code_asm_part1/french_text.asm Thu Oct 11 20:58:48 2012 +0200 +++ b/code_part1/OSTC_code_asm_part1/french_text.asm Fri Oct 12 11:05:34 2012 +0200 @@ -405,7 +405,7 @@ TCODE .120, .135, "Air " ;265 Air TCODE .0, .0, "pSCR Info" ;266 pSCR Info (Must be 9Chars!) - TCODE .0, .216, "Max." ;267 Max. + TCODE .0, .184, "Max." ;267 Max. TCODE .0, .0, "" ;268 unused TCODE .0, .0, "" ;269 unused TCODE .0, .0, "" ;270 unused
--- a/code_part1/OSTC_code_asm_part1/german_text.asm Thu Oct 11 20:58:48 2012 +0200 +++ b/code_part1/OSTC_code_asm_part1/german_text.asm Fri Oct 12 11:05:34 2012 +0200 @@ -407,7 +407,7 @@ TCODE .120, .135, "Luft " ;265 Air TCODE .0, .0, "pSCR Info" ;266 pSCR Info (Must be 9Chars!) - TCODE .0, .216, "Max." ;267 Max. + TCODE .0, .184, "Max." ;267 Max. TCODE .0, .0, "" ;268 unused TCODE .0, .0, "" ;269 unused TCODE .0, .0, "" ;270 unused
--- a/code_part1/OSTC_code_asm_part1/italian_text.asm Thu Oct 11 20:58:48 2012 +0200 +++ b/code_part1/OSTC_code_asm_part1/italian_text.asm Fri Oct 12 11:05:34 2012 +0200 @@ -403,7 +403,7 @@ TCODE .120, .135, "Aria " ;265 Air TCODE .0, .0, "Info pSCR" ;266 pSCR Info (Must be 9Chars!) - TCODE .0, .216, "Max." ;267 Max. + TCODE .0, .184, "Max." ;267 Max. TCODE .0, .0, "" ;268 unused TCODE .0, .0, "" ;269 unused TCODE .0, .0, "" ;270 unused
--- a/code_part1/OSTC_code_asm_part1/pled_outputs.asm Thu Oct 11 20:58:48 2012 +0200 +++ b/code_part1/OSTC_code_asm_part1/pled_outputs.asm Fri Oct 12 11:05:34 2012 +0200 @@ -2164,7 +2164,7 @@ ; Display normal "xx.y" lfsr FSR2,letter call PLED_standard_color - WIN_TOP .184 + WIN_TOP .208 WIN_LEFT .0 WIN_FONT FT_MEDIUM WIN_INVERT .0 ; Init new Wordprocessor @@ -2185,7 +2185,7 @@ ; That means ignore figure 4 and 5 lfsr FSR2,letter call PLED_standard_color - WIN_TOP .184 + WIN_TOP .208 WIN_LEFT .0 WIN_FONT FT_MEDIUM WIN_INVERT .0 ; Init new Wordprocessor @@ -2200,7 +2200,7 @@ return PLED_clear_maxdepth: - WIN_BOX_BLACK .184, .215, .0, .41 ;top, bottom, left, right + WIN_BOX_BLACK .208, .239, .0, .41 ;top, bottom, left, right bsf maxdepth_greater_100m ; Set Flag return
--- a/code_part1/OSTC_code_asm_part1/russian_text.asm Thu Oct 11 20:58:48 2012 +0200 +++ b/code_part1/OSTC_code_asm_part1/russian_text.asm Fri Oct 12 11:05:34 2012 +0200 @@ -407,7 +407,7 @@ TCODE .120, .135, "Возд." ;265 Air TCODE .0, .0, "pSCR Инфо" ;266 pSCR Info (Must be 9Chars!) - TCODE .0, .216, "Макс." ;267 Max. + TCODE .0, .184, "Макс." ;267 Max. TCODE .0, .0, "" ;268 unused TCODE .0, .0, "" ;269 unused TCODE .0, .0, "" ;270 unused
--- a/code_part1/OSTC_code_asm_part1/spanish_text.asm Thu Oct 11 20:58:48 2012 +0200 +++ b/code_part1/OSTC_code_asm_part1/spanish_text.asm Fri Oct 12 11:05:34 2012 +0200 @@ -403,7 +403,7 @@ TCODE .120, .135, "Aire " ;265 Air TCODE .0, .0, "pSCR Info" ;266 pSCR Info (Must be 9Chars!) - TCODE .0, .216, "Max." ;267 Max. + TCODE .0, .184, "Max." ;267 Max. TCODE .0, .0, "" ;268 unused TCODE .0, .0, "" ;269 unused TCODE .0, .0, "" ;270 unused
--- a/code_part1/OSTC_code_asm_part1/turkish_text.asm Thu Oct 11 20:58:48 2012 +0200 +++ b/code_part1/OSTC_code_asm_part1/turkish_text.asm Fri Oct 12 11:05:34 2012 +0200 @@ -406,7 +406,7 @@ TCODE .120, .135, "Hava " ;265 Air TCODE .0, .0, "pSCR Info" ;266 pSCR Info (Must be 9Chars!) - TCODE .0, .216, "Max" ;267 Max. + TCODE .0, .184, "Max" ;267 Max. TCODE .0, .0, "" ;268 unused TCODE .0, .0, "" ;269 unused TCODE .0, .0, "" ;270 unused