Skip to content

Commit

Permalink
Version 0.5.1, fixing manual conversion mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
rmcpantoja committed May 9, 2024
1 parent ce8c636 commit 347019b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions addon/doc/es/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ Si quieres ayudar a mejorar este complemento, puedes enviar un correo a `angelit

# Historial de cambios:

## 0.5.1

* En este parche arreglé un error con el modo de conversión manual, debido a las consecuencias de la reorganización del código.

## 0.5

* 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.
Expand Down
2 changes: 1 addition & 1 deletion addon/globalPlugins/n2w/conversion_UI.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import sys
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'num2words'))
import num2words
from .nvda_implementation import check_language
from .nvda_implementation import check_language, convert_num_to_words
from .tools.datetime2words import convert_date, convert_hour
import addonHandler
addonHandler.initTranslation()
Expand Down
2 changes: 1 addition & 1 deletion buildVars.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def _(arg):
# Translators: Long description to be shown for this add-on on add-on information from add-ons manager
"addon_description": _("Implementation of the num2Word python library for NVDA that supports many languages"),
# version
"addon_version": "0.5",
"addon_version": "0.5.1",
# Author(s)
"addon_author": "Mateo Cedillo <[email protected]>",
# URL for the add-on documentation support
Expand Down
4 changes: 4 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ If you want to help improve this addon, you can send an email to `angelitomateoc

# Changelog:

## 0.5.1

* In this patch I've fixed an error with manual conversion mode due to the code organization consequences.

## 0.5

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

0 comments on commit 347019b

Please sign in to comment.