Skip to content

Commit 407317f

Browse files
committed
Update version numbers and the changes log
1 parent b5b6f60 commit 407317f

3 files changed

Lines changed: 16 additions & 13 deletions

File tree

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
[package]
88
name = "MathCatForPython"
9-
version = "0.3.5"
9+
version = "0.3.8"
1010
authors = ["Neil Soiffer <soiffer@alum.mit.edu>"]
1111
edition = "2018"
1212

@@ -19,19 +19,19 @@ name = "libmathcat_py"
1919
crate-type = ["cdylib"]
2020

2121
[dependencies.mathcat]
22-
version = "0.3.5"
22+
# version = "0.3.8"
2323
# for testing MathCAT without having to publish a new version (change two occurences)
24-
# path = "../MathCAT/"
24+
path = "../MathCAT/"
2525

2626
[dependencies.pyo3]
2727
version = "0.15.1"
2828
features = ["extension-module", "abi3"]
2929

3030
[build-dependencies]
3131
zip = { version = "0.6.2", default-features = false, features = ["deflate"] }
32-
mathcat = "0.3.5"
32+
# mathcat = "0.3.8"
3333
# for testing MathCAT without having to publish a new version (change two occurences)
34-
# mathcat = {path = "../MathCAT/"}
34+
mathcat = {path = "../MathCAT/"}
3535

3636

3737
[profile.release]

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,17 +60,19 @@ There are lots of small tweaks to the speech and some bug fixes for both Nemeth
6060

6161
Note: there is now an option to get Vietnam's braille standard as braille output. This is still a work in progress and is too buggy to be used other than for testing. I expect the next MathCAT release will contain a reliable implementation.
6262

63-
### Version 0.3.7
63+
### Version 0.3.8
6464
Braille:
65-
* Dialog has been internationalized (many thanks to the translators!)
66-
* Initial implementation of CMU -- braille code used in Spain and several Portuguese speaking countries
67-
* Significant improvements to Vietnamese braille
68-
* Change relative rate dialog slider to have a maximum value of 100% (now only allows setting slower rates). Also, added step sizes so it is easier to raise/lower the rate significantly.
65+
* Dialog has been internationalized for several languages (many thanks to the translators!)
66+
* Initial implementation of CMU -- the braille code used in Spanish and Portuguese speaking countries
6967
* Fix some UEB bugs and added some characters for UEB
68+
* Significant improvements to Vietnamese braille
7069

7170
Other fixes:
71+
* Change relative rate dialog slider to have a maximum value of 100% (now only allows setting slower rates). Also, added step sizes so it is easier to raise/lower the rate significantly.
72+
* Fix espeak bug that sometimes cut off speech when the relative rate was changed
7273
* Improvements to Vietnamese speech
7374
* Fixed bug with OneCore voices saying "a"
7475
* Fixed some navigation bugs when `AutoZoomOut` is False (not the default)
7576
* Fix updating around language changes and some other dialog changes so they take effect immediately upon clicking "Apply" or "OK".
77+
* Several improvements for cleaning up poor MathML code
7678

buildVars.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,11 @@ def _(arg):
2626
"addon_description": _("""MathCAT is a replacement for MathPlayer which has been discontinued.
2727
It provides speech and braille support, and also supports MathPlayer's three modes of navigation.
2828
The speech quality is not quite as good as MathPlayer's speech yet,
29-
but the braille support is much better and includes both Nemeth and UEB Technical. It also includes support for CMU (Spanish/Portuguese) and Vietnamese braille standards.
29+
but the braille support is much better and includes both Nemeth and UEB Technical.
30+
It also includes support for CMU (Spanish/Portuguese) and Vietnamese braille code standards.
3031
Translations to Indonesian, Spanish, and Vietnamese exist and other translations are in progress."""),
3132
# version
32-
"addon_version": "0.3.7",
33+
"addon_version": "0.3.8",
3334
# Author(s)
3435
"addon_author": "Neil Soiffer <soiffer@alum.mit.edu>",
3536
# URL for the add-on documentation support
@@ -41,7 +42,7 @@ def _(arg):
4142
# Minimum NVDA version supported (e.g. "2018.3.0", minor version is optional)
4243
"addon_minimumNVDAVersion": "2019.3",
4344
# Last NVDA version supported/tested (e.g. "2018.4.0", ideally more recent than minimum version)
44-
"addon_lastTestedNVDAVersion": "2023.1",
45+
"addon_lastTestedNVDAVersion": "2024.1",
4546
# Add-on update channel (default is None, denoting stable releases,
4647
# and for development releases, use "dev".)
4748
# Do not change unless you know what you are doing!

0 commit comments

Comments
 (0)