feat: F11 fullscreen + cleaner "What's new" update dialog#75
Merged
Conversation
Fullscreen (F11): - Toggle OS fullscreen on Windows/Linux/macOS via the Tauri window API (one cross-platform code path, no native code). Title bar stays visible so there is always an obvious way back, with a one-time "press F11 to exit" hint. Also available from the command palette and cheatsheet. - Add core:window:allow-set-fullscreen capability. Update dialog: - Root cause: the release body was a generic install blurb, shown as raw text. release.yml now injects the top CHANGELOG section as the release body, so the updater shows the actual changes. - UpdateDialog renders the notes as a clean, scrollable "What's new" list via react-markdown; a sanitizer strips install boilerplate so old releases degrade gracefully. Links open in the OS browser.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Two features:
1. Fullscreen (F11)
Cross-platform fullscreen toggle via the Tauri window API (
setFullscreen/isFullscreen) — one code path for Windows, Linux, and macOS. The custom title bar stays visible so there's always an obvious way back, plus a one-time "press F11 to exit" toast. Available from the keyboard (F11), the command palette, and listed in the cheatsheet.2. Cleaner "What's new" update dialog
The updater popup previously dumped a generic install blurb as raw text — users never saw the actual changes. Now:
release.ymlinjects the topCHANGELOG.mdsection into the release body, so the updater shows real release notes.UpdateDialogrenders them as a clean, scrollable "What's new" list viareact-markdown(a sanitizer strips install boilerplate, so old releases degrade gracefully). Links open in the OS browser, not the webview.Notes
## [Unreleased], keep that section trimmed to current highlights.Testing
tsc --noEmitclean