Skip to content

Commit

Permalink
Preparation for launching the add-on store. Compatible with NVDA2024.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
cary-rowen committed Mar 24, 2024
1 parent 4a8e4ef commit 5a2b6ac
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_addon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
tags: ["*"]
# To build on main/master branch, uncomment the following line:
# branches: [ main , master ]
branches: [ main , master ]

pull_request:
branches: [ main, master ]
Expand Down
2 changes: 1 addition & 1 deletion addon/globalPlugins/windowsOfProcess.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def __init__(self,title,hl,selection):
super(windowsListView,self).__init__(gui.mainFrame,title=title)
listBoxSizer = wx.BoxSizer(wx.VERTICAL)
self.st = wx.StaticText(self,-1,_("Window"))
listBoxSizer.Add(self.st,0.5, wx.ALL, 10)
listBoxSizer.Add(self.st, 1, wx.ALL, 10)
self.listBox = wx.ListBox(self,-1)
listBoxSizer.Add(self.listBox,0,wx.ALL| wx.EXPAND,10)
self.SetSizer(listBoxSizer)
Expand Down
6 changes: 3 additions & 3 deletions addon/locale/zh_CN/LC_MESSAGES/nvda.po
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ msgid ""
msgstr ""
"Project-Id-Version: 'windowsOfProcess' '2022.1.1'\n"
"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n"
"POT-Creation-Date: 2022-01-08 18:04+0800\n"
"PO-Revision-Date: 2022-01-08 18:08+0800\n"
"POT-Creation-Date: 2024-03-24 20:59+0800\n"
"PO-Revision-Date: 2024-03-24 20:59+0800\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.3\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Poedit 3.4.2\n"

#: addon\globalPlugins\windowsOfProcess.py:134
msgid "{} window, {} process"
Expand Down
6 changes: 3 additions & 3 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": _("""allows you to quickly switch between windows with the same process or different process"""),
# version
"addon_version": "2023.3.2",
"addon_version": "2024.3.24",
# Author(s)
"addon_author": "沉浮 <394434124@qq.com>",
# URL for the add-on documentation support
Expand All @@ -35,9 +35,9 @@ def _(arg):
# Documentation file name
"addon_docFileName": "readme.html",
# Minimum NVDA version supported (e.g. "2018.3.0", minor version is optional)
"addon_minimumNVDAVersion": 2021.1,
"addon_minimumNVDAVersion": 2023.1,
# Last NVDA version supported/tested (e.g. "2018.4.0", ideally more recent than minimum version)
"addon_lastTestedNVDAVersion": 2023.1,
"addon_lastTestedNVDAVersion": 2024.1,
# 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
29 changes: 29 additions & 0 deletions windowsOfProcess-2024.3.24.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"addonId": "windowsOfProcess",
"displayName": "WindowsOfProcess",
"URL": "",
"description": "allows you to quickly switch between windows with the same process or different process",
"sha256": "0f3458901df9028a8c90b26193f1b805a730ec69dd8f12bcee52543c304138a4",
"homepage": "https://www.nvdacn.com/",
"addonVersionName": "2024.3.24",
"addonVersionNumber": {
"major": 2024,
"minor": 3,
"patch": 24
},
"minNVDAVersion": {
"major": 0,
"minor": 0,
"patch": 0
},
"lastTestedVersion": {
"major": 0,
"minor": 0,
"patch": 0
},
"channel": "stable",
"publisher": "",
"sourceURL": null,
"license": "GPL v2",
"licenseURL": "https://www.gnu.org/licenses/gpl-2.0.html"
}

0 comments on commit 5a2b6ac

Please sign in to comment.