You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix reshoot state-machine corruption and PeerList modal a11y
- TimerScheduler: preserve pre-reshoot stoppedReason across reshoot
runs so nextSeries()/restartSeries() resume correctly instead of
treating the reshoot as a manual abort (which skipped a series
when reshooting between series or from idle).
- PeerList: drop panel onkeydown stopPropagation so Escape reaches
the document listener when focus is inside the dialog.
- PeerList: add aria-labelledby linking the panel to the <h2> title
for screen-reader dialog naming.
- registry: restore DEFAULT_LOADING_TIME to 60s and fix comment typo.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: src/lib/programs/registry.js
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7,10 +7,10 @@
7
7
8
8
import{loadCustomPrograms}from'../storage'
9
9
10
-
constDEFAULT_LOADING_TIME=6
10
+
constDEFAULT_LOADING_TIME=60
11
11
constDEFAULT_TARGET_HIDDEN_TIME=7
12
12
constDEFAULT_TARGET_VISIBLE_TIME_DUEL=3
13
-
constTARGET_DISPLAY_TIME_OFFSET_DUEL=0.29// At the range the target uses .29 seconds to transition between hidden and visible, so this needs to be added to the visible time to get the correct timing for when the target is fully
13
+
constTARGET_DISPLAY_TIME_OFFSET_DUEL=0.29// At the range the target uses .29 seconds to transition between hidden and visible, so this needs to be added to the visible time to get the correct timing for when the target is fully visible
0 commit comments