chore: Various improvements and CI setup

- Add Jenkinsfile for CI/CD pipeline
- Fix keyboard shortcut '?' handling for help dialog
- Update note form and connections components
- Add work mode toggle improvements
- Update navigation history and usage tracking
- Improve validators
- Add session summaries
This commit is contained in:
2026-03-23 22:25:36 -03:00
parent e0433f8e57
commit ece8163d15
12 changed files with 976 additions and 36 deletions

View File

@@ -27,7 +27,7 @@ export function useGlobalShortcuts() {
}
// Handle ? for help
if (e.key === '?' && !e.shiftKey) {
if (e.key === '?' && e.shiftKey) {
e.preventDefault()
setShowHelp(true)
return