From 1777cf7bfeddb002ff89c5ab208ddc7500501778 Mon Sep 17 00:00:00 2001 From: nesquena-hermes Date: Sun, 5 Apr 2026 12:46:58 -0700 Subject: [PATCH] docs: v0.36.1 release notes and version bump Co-authored-by: Nathan Esquenazi --- CHANGELOG.md | 8 ++++++++ static/index.html | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6964dff..39e9506 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ --- +## [v0.36.1] Login form Enter key fix +*April 5, 2026 | 433 tests* + +### Bug Fixes +- **Login form Enter key unreliable in some browsers (#124).** `onsubmit="return doLogin(event)"` returned a Promise (async functions always return a truthy Promise), which could let the browser fall through to native form submission. Fixed with `doLogin(event);return false` plus an explicit `onkeydown` Enter handler on the password input as belt-and-suspenders. (#125) + +--- + ## [v0.36] Self-Update Checker with One-Click Update *April 5, 2026 | 433 tests* diff --git a/static/index.html b/static/index.html index 6446861..471a99a 100644 --- a/static/index.html +++ b/static/index.html @@ -14,7 +14,7 @@