Skip to content

Commit 6696fb5

Browse files
committed
update version
1 parent 5934f5d commit 6696fb5

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ name = "libmathcat_py"
1919
crate-type = ["cdylib"]
2020

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

@@ -29,7 +29,7 @@ features = ["extension-module", "abi3"]
2929

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

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,10 @@ MathCAT's rules for speech are not yet as extensive as MathPlayer's rules -- tha
3131

3232
## MathCAT Update Log
3333

34-
### Version 0.3.10
34+
### Version 0.3.11
3535
* Upgraded to python 3.11 and verified working with NVDA 2024.1
3636
* Fix bugs in Vietnamese braille and also in Speech, mostly for chemistry.
37+
* Fix broken braille when braille code and dependent language don't match (specifically Vietnam braille and Vietnamese speech)
3738
* Fix whitespace bug in HTML inside of tokens
3839
* Improve roman numeral detection
3940

addon/globalPlugins/MathCAT/MathCATPreferences.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import webbrowser
1010
import gettext
1111
import addonHandler
12-
from logHandler import log # logging
12+
# from logHandler import log # logging
1313
from typing import Dict, Union
1414
from .MathCAT import ConvertSSMLTextForNVDA
1515
from speech import speak

buildVars.py

+1-1
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.3.10",
35+
"addon_version": "0.3.11",
3636
# Author(s)
3737
"addon_author": "Neil Soiffer <soiffer@alum.mit.edu>",
3838
# URL for the add-on documentation support

0 commit comments

Comments
 (0)