Skip to content

Commit

Permalink
Merge pull request #13 from actlaboratory/master
Browse files Browse the repository at this point in the history
merge master into release
  • Loading branch information
yncat authored Mar 21, 2023
2 parents 8b0ffc1 + acc5a05 commit 4389209
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 4 additions & 0 deletions addon/doc/en/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ For email support, please send an email to "[email protected]".

## Changelog

### 2023/03/21 Version 1.0.2

1. Support NVDA 2023.1.

### 2022/10/20 Version 1.0.1

1. Fixed an issue where UML initialization was failing When UML was loaded on NVDA startup. This issue was causing side effects such as say all command failure or synth freezing followed by an infinite loop.
4 changes: 4 additions & 0 deletions addon/doc/ja/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ GitHubのアカウントを持っている方は、 [Universal Multilingualのis

## 更新履歴

### 2022/10/20 Version 1.0.2

1. NVDA 2023.1 をサポートします。

### 2022/10/20 Version 1.0.1

1. NVDAの起動と同時にUMLが読み込まれた場合に、UMLの内部で初期化処理に失敗していた不具合を修正しました。この不具合により、連続読みが正しく動作しない、UMLを再読み込みした場合に無限ループになって音声が出なくなるといった副作用が発生していました。
6 changes: 3 additions & 3 deletions buildVars.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ def _(arg):
return arg


ADDON_VERSION = "1.0.1"
ADDON_RELEASE_DATE = "2022-10-20"
ADDON_VERSION = "1.0.2"
ADDON_RELEASE_DATE = "2023-03-21"
ADDON_NAME = "UniversalMultilingual"
ADDON_KEYWORD = "UML"

Expand Down Expand Up @@ -42,7 +42,7 @@ def _(arg):
# Minimum NVDA version supported (e.g. "2018.3.0", minor version is optional)
"addon_minimumNVDAVersion": "2021.1",
# Last NVDA version supported/tested (e.g. "2018.4.0", ideally more recent than minimum version)
"addon_lastTestedNVDAVersion": "2022.4",
"addon_lastTestedNVDAVersion": "2023.1",
# Add-on update channel (default is None, denoting stable releases,
# and for development releases, use "dev".)
# Do not change unless you know what you are doing!
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version": "1.0.1", "release_date": "2022-10-20"}
{"version": "1.0.2", "release_date": "2023-03-21"}

0 comments on commit 4389209

Please sign in to comment.