update CHANGELOG

This commit is contained in:
Wengier
2021-11-15 17:12:21 -05:00
parent 5a85ef8ecf
commit 42729deb9e
2 changed files with 8 additions and 7 deletions

View File

@@ -1,7 +1,8 @@
0.83.20
- Added IMGSWAP command to swap disks for drives.
e.g. "IMGSWAP A 2" to swap A: drive to the 2nd
swap position. (Wengier)
e.g. "IMGSWAP D" to swap C: drive to the next swap
position, and "IMGSWAP A 3" to swap A: drive to
the 3nd swap position. (Wengier)
- The CAPMOUSE command without a paramter now shows
whether the mouse is captured/released. (Wengier)
- The command "config -set" is now case-insensitive
@@ -34,9 +35,9 @@
- Added ability to change floppy images with drive
number (0 or 1) only. (Wengier)
- Added menu item "Enable extended Chinese character
set" in "TTF options" to toggle the setting for the
Simplified Chinese (GBK extension) and Traditional
Chinese (ChinaSea extension). (Wengier)
set" in "Video" => "TTF options" to toggle setting
for the Simplified Chinese (GBK extension) and
Traditional Chinese (ChinaSea extension). (Wengier)
- Added config option "chinasea" (in [ttf] section)
which when set to "true" allows ChinaSea (中國海字集)
extension of the Big5 charset for the Traditional

View File

@@ -4039,7 +4039,7 @@ static void VGA_VerticalTimer(Bitu /*val*/) {
if (!boxdefault && col<ttf.cols-3) {
if (CheckBoxDrawing((uint8_t)((*draw).chr), (uint8_t)*(vidmem+2), (uint8_t)*(vidmem+4), (uint8_t)*(vidmem+6)))
bd[col]=bd[col+1]=bd[col+2]=bd[col+3]=true;
else if (col == ttf.cols - 6 && (uint8_t)((*draw).chr) == 205 && (uint8_t)*(vidmem+2) == 91 && (uint8_t)*(vidmem+6) == 93 && (uint8_t)*(vidmem+8) == 205)
else if (ttf.cols >= 80 && col == 80-6 && (uint8_t)((*draw).chr) == 205 && (uint8_t)*(vidmem+2) == 91 && (uint8_t)*(vidmem+6) == 93 && (uint8_t)*(vidmem+8) == 205)
bd[col]=bd[col+1]=bd[col+2]=bd[col+3]=bd[col+4]=true;
else if (!bd[col])
boxdefault=true;
@@ -4119,7 +4119,7 @@ static void VGA_VerticalTimer(Bitu /*val*/) {
if (!boxdefault && col<ttf.cols-3) {
if (CheckBoxDrawing((uint8_t)((*draw).chr), (uint8_t)*(vidmem+1), (uint8_t)*(vidmem+2), (uint8_t)*(vidmem+3)))
bd[col]=bd[col+1]=bd[col+2]=bd[col+3]=true;
else if (col == ttf.cols - 6 && (uint8_t)((*draw).chr) == 205 && (uint8_t)*(vidmem+1) == 91 && (uint8_t)*(vidmem+3) == 93 && (uint8_t)*(vidmem+4) == 205)
else if (ttf.cols >= 80 && col == 80-6 && (uint8_t)((*draw).chr) == 205 && (uint8_t)*(vidmem+1) == 91 && (uint8_t)*(vidmem+3) == 93 && (uint8_t)*(vidmem+4) == 205)
bd[col]=bd[col+1]=bd[col+2]=bd[col+3]=bd[col+4]=true;
else if (!bd[col])
boxdefault=true;