Skip to content

Commit

Permalink
Versi├│n 0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hxebolax committed Jan 11, 2024
1 parent b735c82 commit 35a4416
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 350 deletions.
344 changes: 0 additions & 344 deletions addon/doc/es/readme.md

This file was deleted.

6 changes: 6 additions & 0 deletions addon/globalPlugins/TiendaNVDA/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1691,6 +1691,12 @@ def descargaActualizaciones(self):
addon.requestRemove()
break
addonHandler.installAddonBundle(bundle)
# Comprobamos si hay json de la tienda oficial y lo borramos.
if os.path.exists(os.path.join(globalVars.appArgs.configPath, "addons", "{}.json".format(bundleName))):
try:
os.remove(os.path.join(globalVars.appArgs.configPath, "addons", "{}.json".format(bundleName)))
except:
pass
else:
lstError.append(bundle.manifest['summary'])
if len(lstError) == 0:
Expand Down
4 changes: 2 additions & 2 deletions 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": _("Tienda de complementos no oficial de https://www.nvda.es"),
# version
"addon_version": "0.9.1",
"addon_version": "0.9.2",
# Author(s)
"addon_author": u"Héctor J. Benítez Corredera <[email protected]>",
# URL for the add-on documentation support
Expand All @@ -35,7 +35,7 @@ def _(arg):
# Minimum NVDA version supported (e.g. "2018.3.0", minor version is optional)
"addon_minimumNVDAVersion": "2019.3.0",
# Last NVDA version supported/tested (e.g. "2018.4.0", ideally more recent than minimum version)
"addon_lastTestedNVDAVersion": "2023.1.0",
"addon_lastTestedNVDAVersion": "2024.1.0",
# 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
6 changes: 5 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
* Actualizado idioma italiano y agregado ucraniano
* Visualizar en la ficha el nombre interno en la tienda.

* Agregado la eliminación de json si el complemento actualizado Hera oficial.

* Compatibilidad con NVDA 2024.1
2 changes: 1 addition & 1 deletion run.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ echo Creando complemento...
scons --clean
scons
scons pot
TiendaNVDA-0.9.1.nvda-addon
TiendaNVDA-0.9.2.nvda-addon
4 changes: 2 additions & 2 deletions run_git.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
scons --clean
git init
git add --all
git commit -m "Versión 0.9.1"
git commit -m "Versión 0.9.2"
git push -u origin master
git tag 0.9.1
git tag 0.9.2
git push --tags
pause

0 comments on commit 35a4416

Please sign in to comment.