aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier <dev.git@javispedro.com>2022-12-11 17:28:45 +0100
committerJavier <dev.git@javispedro.com>2022-12-11 17:28:45 +0100
commit9a33ea807b463e3ef344e4237eedee4f618d2788 (patch)
tree3fd6fe5fa36c55065500e4431bb9719952aca132
parent7e3679f7c06cee1bd5ca76c6efdebc8ce367f587 (diff)
downloadvbados-9a33ea807b463e3ef344e4237eedee4f618d2788.tar.gz
vbados-9a33ea807b463e3ef344e4237eedee4f618d2788.zip
bump to 0.65v0.65
-rw-r--r--README.md8
-rw-r--r--oemsetup.inf2
-rw-r--r--version.h2
3 files changed, 7 insertions, 5 deletions
diff --git a/README.md b/README.md
index 87009ea..ab49660 100644
--- a/README.md
+++ b/README.md
@@ -21,7 +21,7 @@ The VB stands for "Very Basic" :)
# Downloads
-The current release is _0.64_.
+The current release is _0.65_.
You can get a recent build from the ready-to-go floppy disk image:
[💾 VBADOS.FLP](https://depot.javispedro.com/vbox/vbados/vbados.flp)
@@ -40,7 +40,9 @@ For the source code, you can check out [this git repository](..).
## Version history
-* _0.64_: Reduce memory requirements of int33h driver status save/restore APIs.
+* _0.65_: Change mouse show/hide cursor APIs to not allow cursor show counter to go above 0,
+ which better matches MS Mouse behavior and improves Borland compatibility.
+* _0.64_: Reduce memory requirements of int33h mouse driver status save/restore APIs.
This helps compatibility with Borland IDEs, which seem to allocate around 1K max.
* _0.63_: Localization support using [Kitten](http://wiki.freedos.org/wiki/index.php/Kitten); currently only Spanish is available (`set lang=es`).
Non-fully-uppercase but still 8.3 filenames are no longer "shortened" by default.
@@ -288,7 +290,7 @@ by default, it tries to use a DOS UMB block.
* `remount X: [<OPTIONS...>]` changes the options of a currently mounted drive.
See the `mount` command for details on options. Any option set previously
- can be disabled with a corresponding `/noopt`, e.g., `/noshort`.
+ can be disabled with a corresponding `/noopt`, e.g., `/nohost`.
* `unmount X:` unmounts a specific drive.
diff --git a/oemsetup.inf b/oemsetup.inf
index 5177b8f..db56056 100644
--- a/oemsetup.inf
+++ b/oemsetup.inf
@@ -2,7 +2,7 @@
Version = "3.0"
[disks]
- 1 =., "VBMouse driver disk", disk1
+ 1 =., "VBADOS driver disk", disk1
[pointing.device]
vbmouse = 1:vbmouse.drv, "VBMouse int33 absolute mouse driver", x:*vmd, vbmouse
diff --git a/version.h b/version.h
index a72de8e..4292ffc 100644
--- a/version.h
+++ b/version.h
@@ -2,6 +2,6 @@
#define VERSION_H
#define VERSION_MAJOR 0
-#define VERSION_MINOR 0x64
+#define VERSION_MINOR 0x65
#endif // VERSION_H