Skip to content

Commit 18a6103

Browse files
committed
Update version numbers and what's changed
1 parent 90c2515 commit 18a6103

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

Cargo.toml

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

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

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

2121
[dependencies.mathcat]
22-
version = "0.5.4"
22+
version = "0.5.6"
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.5.4"
32+
mathcat = "0.5.6"
3333
# for testing MathCAT without having to publish a new version (change two occurences)
3434
# mathcat = {path = "../MathCAT/"}
3535

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,10 @@ MathCAT's rules for speech are not yet as extensive as MathPlayer's rules -- tha
3030

3131
## MathCAT Update Log
3232

33-
### Version 0.5.4
33+
### Version 0.5.6
3434
* Added Copy As... to the MathCAT dialog (in the "Navagation" pane).
3535
* Fixed a bug where the language reverted to English when changing speech styles.
36+
* Fixed a bug with navigation and braille
3637
* Fixed some Asciimath spacing problems.
3738
* Improved chemistry recognition
3839
* Updated MathCAT to new BANA Nemeth chemistry spec (still only single line and special case style/font changes not handled)

build-nvda-addon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ rm -rf addon/globalPlugins/MathCAT/Rules
66
# We need to tell PYO3 that
77
set PYO3_PYTHON_64=C:/Software/Python311
88
set PYO3_PYTHON_32=C:/Software/Python311-32
9-
set PYO3_PYTHON_32=c:/Users/neils/AppData/Local/Programs/Python/Python37-32
9+
# set PYO3_PYTHON_32=c:/Users/neils/AppData/Local/Programs/Python/Python37-32
1010
env PYO3_PYTHON=$PYO3_PYTHON_32/python.exe cargo build --target i686-pc-windows-msvc --release
1111
cp target/i686-pc-windows-msvc/release/libmathcat_py.dll addon/globalPlugins/MathCAT/libmathcat.pyd
1212
sed 's/^import wx\.xrc/# import wx.xrc/' --in-place "addon/globalPlugins/MathCAT/MathCATgui.py"

buildVars.py

Lines changed: 1 addition & 1 deletion
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.5.4",
35+
"addon_version": "0.5.6",
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)