Skip to content

Commit

Permalink
Version 2023.09.03
Browse files Browse the repository at this point in the history
Yet another occurrence of same bug corrected!
  • Loading branch information
ruifontes committed Sep 3, 2023
1 parent 0c1245f commit 9465e8f
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 41 deletions.
29 changes: 0 additions & 29 deletions 2023.9.2.json

This file was deleted.

6 changes: 3 additions & 3 deletions 2023.9.1.json → 2023.9.3.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"displayName": "Regists blocks of text frequently used",
"URL": "",
"description": "Stores and make possible the entry of frequently used blocks of text. Command: Windows+F12.",
"sha256": "538cc18967b7abd03a79347c3846a112cd1d2315368ed40163c3194c96e1ce7e",
"sha256": "912f676c2aa012af0db797dd8f4d43832b2eb581e45a8e649d8c181262492ac0",
"homepage": "https://github.com/ruifontes/frequentText",
"addonVersionName": "2023.09.01",
"addonVersionName": "2023.09.03",
"addonVersionNumber": {
"major": 2023,
"minor": 9,
"patch": 1
"patch": 3
},
"minNVDAVersion": {
"major": 2021,
Expand Down
6 changes: 4 additions & 2 deletions addon/GlobalPlugins/frequentText/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,10 @@ def onShow(self, evt):
self.Close()
global category
category = catgIDX
gui.mainFrame.popupSettingsDialog(FrequentTextDialog)
#return
try:
gui.mainFrame.popupSettingsDialog(FrequentTextDialog)
except AttributeError:
gui.mainFrame._popupSettingsDialog(FrequentTextDialog)

def onAdd (self, evt):
# Add a new category
Expand Down
2 changes: 1 addition & 1 deletion addon/doc/de/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ Um den Textblock in ein Bearbeitungsfeld einzufügen, wählen Sie einfach den Bl
Im Add-on-Dialogfeld können Sie auch umbenennen, den Inhalt ändern, zu einer anderen Kategorie wechseln, den Textblock löschen oder zum Kategoriendialog zurückkehren.


[1]: https://github.com/ruifontes/frequentText/releases/download/2023.09.02/frequentText-2023.09.02.nvda-addon
[1]: https://github.com/ruifontes/frequentText/releases/download/2023.09.03/frequentText-2023.09.03.nvda-addon
2 changes: 1 addition & 1 deletion addon/doc/es/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ Para pegar el bloque de texto en un campo de edición, simplemente seleccione el
En las opciones del complemento también puede cambiar el nombre, cambiar el contenido, pasar a otra categoría, eliminar el bloque de texto o volver al diálogo de categorías.


[1]: https://github.com/ruifontes/frequentText/releases/download/2023.09.02/frequentText-2023.09.02.nvda-addon
[1]: https://github.com/ruifontes/frequentText/releases/download/2023.09.03/frequentText-2023.09.03.nvda-addon
2 changes: 1 addition & 1 deletion addon/doc/pt_BR/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ Para colar o bloco de texto num campo de edição, seleccione o bloco e pression
Na caixa de diálogo da lista de blocos também pode renomear, alterar o conteúdo, mudar de categoria, eliminar um bloco de texto, ou voltar para a caixa de diálogo das categorias.


[1]: https://github.com/ruifontes/frequentText/releases/download/2023.09.02/frequentText-2023.09.02.nvda-addon
[1]: https://github.com/ruifontes/frequentText/releases/download/2023.09.03/frequentText-2023.09.03.nvda-addon
2 changes: 1 addition & 1 deletion addon/doc/pt_PT/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ Para colar o bloco de texto num campo de edição, seleccione o bloco e pression
Na caixa de diálogo da lista de blocos também pode renomear, alterar o conteúdo, mudar de categoria ou eliminar um bloco de texto, ou voltar para a caixa de diálogo das categorias.


[1]: https://github.com/ruifontes/frequentText/releases/download/2023.09.02/frequentText-2023.09.02.nvda-addon
[1]: https://github.com/ruifontes/frequentText/releases/download/2023.09.03/frequentText-2023.09.03.nvda-addon
2 changes: 1 addition & 1 deletion addon/doc/tr/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ Metin bloğunu bir düzenleme alanına yapıştırmak için bloğu seçin ve Ent
Eklenti iletişim kutusunda ayrıca yeniden adlandırabilir, içeriği değiştirebilir, başka bir kategoriye geçebilir, metin bloğunu silebilir veya kategoriler iletişim kutusuna geri dönebilirsiniz.


[1]: https://github.com/ruifontes/frequentText/releases/download/2023.09.02/frequentText-2023.09.02.nvda-addon
[1]: https://github.com/ruifontes/frequentText/releases/download/2023.09.03/frequentText-2023.09.03.nvda-addon
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": _("""Stores and make possible the entry of frequently used blocks of text. Command: Windows+F12."""),
# version
"addon_version": "2023.09.02",
"addon_version": "2023.09.03",
# Author(s)
"addon_author": _("Rui Fontes <[email protected]>, Ângelo Abrantes <[email protected]> and Abel Passos Júnior"),
# URL for the add-on documentation support
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ To paste the block of text in an edit field, just select the block and press Ent
In the add-on dialog box you also can rename, change the contents, move to other category, delete the block of text or go back to categories dialog.


[1]: https://github.com/ruifontes/frequentText/releases/download/2023.09.02/frequentText-2023.09.02.nvda-addon
[1]: https://github.com/ruifontes/frequentText/releases/download/2023.09.03/frequentText-2023.09.03.nvda-addon

0 comments on commit 9465e8f

Please sign in to comment.