Skip to content

Commit bd38a95

Browse files
committed
NVDA2026.1対応
1 parent 4f6dcf9 commit bd38a95

6 files changed

Lines changed: 25 additions & 12 deletions

File tree

addon/globalPlugins/dokutor_for_nvda/compat.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
import wx
22
import gui
3-
import versionInfo
3+
try:
4+
import buildVersion as _versionInfo
5+
except ImportError:
6+
import versionInfo as _versionInfo
47

58
def isCompatibleWith2025():
6-
return versionInfo.version_year >= 2025
9+
return _versionInfo.version_year >= 2025
710

811
def messageBox(message, title):
912
if isCompatibleWith2025():

addon/globalPlugins/dokutor_for_nvda/updater.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99
import tempfile
1010
import threading
1111
import time
12-
import versionInfo
12+
try:
13+
import buildVersion as _versionInfo
14+
except ImportError:
15+
import versionInfo as _versionInfo
1316
import winreg
1417
import wx
1518
from logHandler import log
@@ -34,7 +37,7 @@
3437
MANUAL=1
3538

3639
def isCompatibleWith2025():
37-
return versionInfo.version_year >= 2025
40+
return _versionInfo.version_year >= 2025
3841

3942
def messageBox(message, title):
4043
if isCompatibleWith2025():

buildVars.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: UTF-8 -*-
22

3-
ADDON_VERSION = "1.1.5"
4-
ADDON_RELEASE_DATE = "2025-02-27"
3+
ADDON_VERSION = "1.1.6"
4+
ADDON_RELEASE_DATE = "2026-04-07"
55
ADDON_NAME = "dokutor_for_nvda"
66
ADDON_KEYWORD = "DFN"
77

@@ -41,7 +41,7 @@ def _(arg):
4141
# Minimum NVDA version supported (e.g. "2018.3.0", minor version is optional)
4242
"addon_minimumNVDAVersion": 2019.3,
4343
# Last NVDA version supported/tested (e.g. "2018.4.0", ideally more recent than minimum version)
44-
"addon_lastTestedNVDAVersion": 2025.5,
44+
"addon_lastTestedNVDAVersion": 2026.5,
4545
# Add-on update channel (default is None, denoting stable releases,
4646
# and for development releases, use "dev".)
4747
# Do not change unless you know what you are doing!

public/readme.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# 読ターFor NVDA Ver1.1.5 説明書
1+
# 読ターFor NVDA Ver1.1.6 説明書
22

3-
(更新: 2025-02-27)
3+
(更新: 2026-04-07)
44

55

66
## 目次
@@ -154,6 +154,9 @@ ACT Laboratory(Accessible Tools Laboratory)は、プログラミングを学ぶ
154154

155155
## 8. 更新履歴
156156

157+
* 1.1.6 (2026/04/07)
158+
* NVDA 2026.1に対応
159+
157160
* 1.1.5 (2025/02/27)
158161
* NVDA 2025.1に対応
159162

readme.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# 読ターFor NVDA Ver1.1.5 説明書
1+
# 読ターFor NVDA Ver1.1.6 説明書
22

3-
(更新: 2025-02-27)
3+
(更新: 2026-04-07)
44

55

66
## 目次
@@ -154,6 +154,10 @@ ACT Laboratory(Accessible Tools Laboratory)は、プログラミングを学ぶ
154154

155155
## 8. 更新履歴
156156

157+
* 1.1.6 (2026/04/07)
158+
* NVDA 2026.1に対応
159+
160+
157161
* 1.1.5 (2025/02/27)
158162
* NVDA 2025.1に対応
159163

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version": "1.1.5", "release_date": "2025-02-27"}
1+
{"version": "1.1.6", "release_date": "2026-04-07"}

0 commit comments

Comments
 (0)