Skip to content

Commit 347019b

Browse files
committed
Version 0.5.1, fixing manual conversion mode.
1 parent ce8c636 commit 347019b

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

addon/doc/es/readme.md

+4
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@ Si quieres ayudar a mejorar este complemento, puedes enviar un correo a `angelit
8989

9090
# Historial de cambios:
9191

92+
## 0.5.1
93+
94+
* En este parche arreglé un error con el modo de conversión manual, debido a las consecuencias de la reorganización del código.
95+
9296
## 0.5
9397

9498
* Agregado: Se ha reintroducido la compatibilidad con NVDA 2024.1, agregando compatibilidad con el modo de voz en petición para alternar num2words en tiempo real.

addon/globalPlugins/n2w/conversion_UI.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import sys
1111
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'num2words'))
1212
import num2words
13-
from .nvda_implementation import check_language
13+
from .nvda_implementation import check_language, convert_num_to_words
1414
from .tools.datetime2words import convert_date, convert_hour
1515
import addonHandler
1616
addonHandler.initTranslation()

buildVars.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def _(arg):
2525
# Translators: Long description to be shown for this add-on on add-on information from add-ons manager
2626
"addon_description": _("Implementation of the num2Word python library for NVDA that supports many languages"),
2727
# version
28-
"addon_version": "0.5",
28+
"addon_version": "0.5.1",
2929
# Author(s)
3030
"addon_author": "Mateo Cedillo <[email protected]>",
3131
# URL for the add-on documentation support

readme.md

+4
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@ If you want to help improve this addon, you can send an email to `angelitomateoc
8989

9090
# Changelog:
9191

92+
## 0.5.1
93+
94+
* In this patch I've fixed an error with manual conversion mode due to the code organization consequences.
95+
9296
## 0.5
9397

9498
* Added: The support for NVDA 2024.1 has been reintroduced, adding On-Demand mode support for switch num2words in realtime.

0 commit comments

Comments
 (0)