diff --git a/Cargo.toml b/Cargo.toml index c3c0496..e1b9502 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ [package] name = "MathCatForPython" -version = "0.5.4" +version = "0.5.6" authors = ["Neil Soiffer "] edition = "2018" @@ -19,7 +19,7 @@ name = "libmathcat_py" crate-type = ["cdylib"] [dependencies.mathcat] -version = "0.5.4" +version = "0.5.6" # for testing MathCAT without having to publish a new version (change two occurences) # path = "../MathCAT/" @@ -29,7 +29,7 @@ features = ["extension-module", "abi3"] [build-dependencies] zip = { version = "0.6.2", default-features = false, features = ["deflate"] } -mathcat = "0.5.4" +mathcat = "0.5.6" # for testing MathCAT without having to publish a new version (change two occurences) # mathcat = {path = "../MathCAT/"} diff --git a/README.md b/README.md index c556595..0ae0bb1 100644 --- a/README.md +++ b/README.md @@ -30,9 +30,10 @@ MathCAT's rules for speech are not yet as extensive as MathPlayer's rules -- tha ## MathCAT Update Log -### Version 0.5.4 +### Version 0.5.6 * Added Copy As... to the MathCAT dialog (in the "Navagation" pane). * Fixed a bug where the language reverted to English when changing speech styles. +* Fixed a bug with navigation and braille * Fixed some Asciimath spacing problems. * Improved chemistry recognition * Updated MathCAT to new BANA Nemeth chemistry spec (still only single line and special case style/font changes not handled) diff --git a/build-nvda-addon.sh b/build-nvda-addon.sh index 67a8b99..5354930 100644 --- a/build-nvda-addon.sh +++ b/build-nvda-addon.sh @@ -6,7 +6,7 @@ rm -rf addon/globalPlugins/MathCAT/Rules # We need to tell PYO3 that set PYO3_PYTHON_64=C:/Software/Python311 set PYO3_PYTHON_32=C:/Software/Python311-32 -set PYO3_PYTHON_32=c:/Users/neils/AppData/Local/Programs/Python/Python37-32 +# set PYO3_PYTHON_32=c:/Users/neils/AppData/Local/Programs/Python/Python37-32 env PYO3_PYTHON=$PYO3_PYTHON_32/python.exe cargo build --target i686-pc-windows-msvc --release cp target/i686-pc-windows-msvc/release/libmathcat_py.dll addon/globalPlugins/MathCAT/libmathcat.pyd sed 's/^import wx\.xrc/# import wx.xrc/' --in-place "addon/globalPlugins/MathCAT/MathCATgui.py" diff --git a/buildVars.py b/buildVars.py index ced9389..3328eac 100644 --- a/buildVars.py +++ b/buildVars.py @@ -32,7 +32,7 @@ def _(arg): and other translations are in progress.""" ), # version - "addon_version": "0.5.4", + "addon_version": "0.5.6", # Author(s) "addon_author": "Neil Soiffer ", # URL for the add-on documentation support