Skip to content

Commit 5d457bd

Browse files
committed
Update version numbers and readme (probably still more things to add to readme)
1 parent bce174e commit 5d457bd

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

Cargo.toml

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

77
[package]
88
name = "MathCatForPython"
9-
version = "0.7.0-rc.6"
9+
version = "0.7.1"
1010
authors = ["Neil Soiffer <soiffer@alum.mit.edu>"]
1111
edition = "2018"
1212
resolver = "2" # allows different build dependency features
@@ -21,18 +21,18 @@ name = "libmathcat_py"
2121
crate-type = ["cdylib"]
2222

2323
[dependencies.mathcat]
24-
version = "=0.7.0"
24+
version = "=0.7.1"
2525
# for testing MathCAT without having to publish a new version (change two occurrences)
26-
# path = "../MathCAT/"
26+
path = "../MathCAT/"
2727

2828
[dependencies.pyo3]
2929
version = "0.22"
3030
features = ["extension-module", "abi3"]
3131

3232
[build-dependencies]
33-
zip = { version = "4.1", default-features = false, features = ["bzip2"] }
34-
mathcat = {version = "=0.7.0", features = ["include-zip"]} # for building, we want the zip files so we can include them separately
35-
# mathcat = { path = "../MathCAT/", features = ["include-zip"]} # for building, we want the zip files so we can include them separately
33+
zip = { version = "5.1", default-features = false, features = ["bzip2"] }
34+
# mathcat = {version = "=0.7.1", features = ["include-zip"]} # for building, we want the zip files so we can include them separately
35+
mathcat = { path = "../MathCAT/", features = ["include-zip"]} # for building, we want the zip files so we can include them separately
3636
# for testing MathCAT without having to publish a new version (change two occurrences)
3737

3838

buildVars.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def _(arg):
3232
and other translations are in progress.""",
3333
),
3434
# version
35-
"addon_version": "0.7.0-rc.6",
35+
"addon_version": "0.7.1-rc.1",
3636
# Author(s)
3737
"addon_author": "Neil Soiffer <soiffer@alum.mit.edu>",
3838
# URL for the add-on documentation support
@@ -44,7 +44,7 @@ def _(arg):
4444
# Minimum NVDA version supported (e.g. "2018.3.0", minor version is optional)
4545
"addon_minimumNVDAVersion": "2025.1",
4646
# Last NVDA version supported/tested (e.g. "2018.4.0", ideally more recent than minimum version)
47-
"addon_lastTestedNVDAVersion": "2025.2",
47+
"addon_lastTestedNVDAVersion": "2025.3",
4848
# Add-on update channel (default is None, denoting stable releases,
4949
# and for development releases, use "dev".)
5050
# Do not change unless you know what you are doing!

readme.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,14 @@ MathCAT's rules for speech are not yet as extensive as MathPlayer's rules althou
3232

3333
## MathCAT Update Log
3434

35+
### Version 0.7.1
36+
37+
* Added German translation. There is still more work to do on this, but I'm told it is usable.
38+
* Added Norwegian translation
39+
* Changed some character wording ("if and only if", "implies", "triangle")
40+
* Fix problems with the zip files and regional variants. This should allow en-gb and zh-tw to be available.
41+
* Fixed bugs in navigating in character mode. The bug fix is a bit of a design change. Character navigation mode has always meant to be a low level way of discovering all the symbols in the math, even if they are not spoken. Simple mode was described as being like character mode, but you need to explicitly zoom into any 2D structure such as a fraction or root. However, in the past, simple mode didn't always let you see all the characters and spoke using a semantic interpretation. This change makes simple mode be literal, just as character mode is literal. Enhanced mode continues to offer a semantic means of navigating an expression.
42+
3543
### Version 0.6.10
3644

3745
* Update manifest to indicate compatibility with 2025.1, no external changes

0 commit comments

Comments
 (0)