From 795556ea390732f3466255e6dff64ca311f1692c Mon Sep 17 00:00:00 2001 From: Orinks <38449772+Orinks@users.noreply.github.com> Date: Sun, 1 Mar 2026 21:18:20 +0000 Subject: [PATCH 1/2] fix(a11y): resolve Alt+R mnemonic conflict in SiteManagerDialog Co-Authored-By: Claude Opus 4.6 --- src/portkeydrop/dialogs/site_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/portkeydrop/dialogs/site_manager.py b/src/portkeydrop/dialogs/site_manager.py index e39f723..cdcc4b2 100644 --- a/src/portkeydrop/dialogs/site_manager.py +++ b/src/portkeydrop/dialogs/site_manager.py @@ -54,7 +54,7 @@ def _build_ui(self) -> None: fields = [ ("Na&me:", "name_text", wx.TextCtrl, {}), - ("P&rotocol:", "protocol_choice", wx.Choice, {"choices": ["sftp", "ftp", "ftps"]}), + ("Pro&tocol:", "protocol_choice", wx.Choice, {"choices": ["sftp", "ftp", "ftps"]}), ("&Host:", "host_text", wx.TextCtrl, {}), ("Po&rt:", "port_text", wx.TextCtrl, {}), ("&Username:", "username_text", wx.TextCtrl, {}), From d593259a26e54ae6c2a7af7b07bf6fd8da9a8e94 Mon Sep 17 00:00:00 2001 From: Orinks <38449772+Orinks@users.noreply.github.com> Date: Sun, 1 Mar 2026 23:47:07 +0000 Subject: [PATCH 2/2] ci: push releases to WordPress on publish --- .github/workflows/update-wordpress.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/update-wordpress.yml diff --git a/.github/workflows/update-wordpress.yml b/.github/workflows/update-wordpress.yml new file mode 100644 index 0000000..71b625c --- /dev/null +++ b/.github/workflows/update-wordpress.yml @@ -0,0 +1,12 @@ +name: Update WordPress on release + +on: + release: + types: [published] + +jobs: + push-to-wordpress: + uses: Orinks/orinks-github-releases/.github/workflows/push-releases.yml@master + secrets: + WP_PUSH_TOKEN: ${{ secrets.WP_PUSH_TOKEN }} + WP_SITE_URL: ${{ secrets.WP_SITE_URL }}