-
Notifications
You must be signed in to change notification settings - Fork 1
Fix/v0.5.0 beta fixes #46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
03b0a6b
docs: add CHANGELOG.md for user-facing release notes
VariableThe 67a8256
docs: mandate CHANGELOG updates alongside audit logs
VariableThe 409ffa3
docs: refine changelog based on review feedback
VariableThe bcfc64c
fix: apply CodeRabbit auto-fixes
coderabbitai[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,104 @@ | ||
| # Changelog | ||
|
|
||
| All notable, user-facing changes to PaperCache will be documented in this file. | ||
|
|
||
| The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), | ||
| and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
|
||
| ## [v0.5.0-beta] - 2026-06-23 | ||
|
|
||
| ### Highlights | ||
| - 🚀 Migrated from Electron to Tauri | ||
| - ⚡ Automatic updates | ||
| - 🪟 Improved window behavior | ||
| - 🐞 Major stability improvements | ||
|
|
||
| ### Added | ||
| - **Auto-Updates**: The app now checks for updates silently in the background on startup. A "Check for Updates Now" button was also added to the Settings menu. | ||
|
|
||
| ### Changed | ||
| - **Tauri Migration**: PaperCache has been fully migrated from Electron to Tauri, reducing memory usage, startup time, and application size while preserving existing workflows. | ||
| - The macOS distribution format is now `.tar.gz` and `.app` to circumvent strict macOS 14 runner restrictions with `osascript`. The Homebrew Cask automation pulls the `.tar.gz` bundle. | ||
|
|
||
| ### Fixed | ||
| - Addressed multiple edge-cases with `CodeMirror` state overwrites causing typed text to disappear or duplicate. | ||
| - Fixed a bug where entering an empty string for the OpenAI API Key would incorrectly register as a valid key. The system now safely deletes the credentials. | ||
| - Improved window behavior and consistency across Windows, macOS, and Linux. | ||
| - The `Quit` action now gracefully emits the proper shutdown events rather than force-killing the process, preventing data loss. | ||
|
|
||
| ### Performance | ||
| - Eliminated scroll jank across the app by replacing broad CSS `transition: all` rules with targeted color and opacity transitions. | ||
| - Abstracted redundant window focus and visibility checks to speed up global shortcut responsiveness. | ||
|
|
||
| --- | ||
|
|
||
| ## [v0.4.0] - 2026-06-22 | ||
|
|
||
| ### Highlights | ||
| - ⌨️ Global Shortcut Recorder | ||
| - ✅ Tasks Integration | ||
| - 🧠 State Management Refactor | ||
| - 🏎️ MathJS Optimization | ||
|
|
||
| ### Added | ||
| - **Global Shortcut Recorder**: Added a UI in Settings to record custom keybindings for toggling the app and creating new notes. | ||
| - **Tasks Integration**: Support for inline checkboxes and a dedicated Tasks view. | ||
| - Added support for interactive hex color pills and currency formatting. | ||
| - The application now persists and reopens the last active note on startup. | ||
|
|
||
| ### Changed | ||
| - **State Management**: Migrated the core frontend architecture to `Zustand` for cleaner, slice-based state management. | ||
| - Normalized font stacks and refined typography weights for improved readability across themes. | ||
|
|
||
| ### Fixed | ||
| - Fixed an issue where internal wiki links (`[[link]]`) would accidentally overwrite adjacent text on auto-complete. | ||
| - Resolved race conditions in variable evaluation (`useVariables`). | ||
| - Fixed the Settings window so that it properly tracks the bounds of the main window. | ||
|
|
||
| ### Performance | ||
| - **MathJS Optimization**: Implemented dynamic lazy-loading and debounced evaluations, dramatically reducing idle CPU usage and startup overhead. | ||
| - Fixed a memory leak involving power state IPC listeners that drained battery on macOS. | ||
|
|
||
| ### Security | ||
| - **Production Hardening**: Removed unsafe `eval` usage in math processing. | ||
| - Restricted Tauri IPC scopes to only authorized directories (e.g. `~/.papercache`). | ||
|
|
||
| --- | ||
|
|
||
| ## [v0.3.0] - Skipped | ||
|
|
||
| _This version was not released._ | ||
|
|
||
| --- | ||
|
|
||
| ## [v0.2.0] - 2026-06-20 | ||
|
|
||
| ### Highlights | ||
| - 🧮 Core mathematical evaluation logic | ||
| - 📏 Horizontal rules and styling | ||
|
|
||
| ### Added | ||
| - Implemented core mathematical evaluation logic and inline widgets. | ||
| - Added horizontal rules (`---`) styling and custom colors for math results. | ||
|
|
||
| ### Changed | ||
| - Improved the default onboarding tutorial notes with deeper feature explanations. | ||
|
|
||
| ### Fixed | ||
| - Fixed Prettier formatting mismatches that were breaking the CI pipeline. | ||
| - Fixed an issue with window spawning on the wrong active workspace. | ||
|
|
||
| --- | ||
|
|
||
| ## [v0.1.0] - 2026-05-31 | ||
|
|
||
| ### Highlights | ||
| - 🎉 Initial Release of PaperCache! | ||
|
|
||
| ### Added | ||
| - **Initial Release** of PaperCache. | ||
| - Global hotkey launcher with floating markdown editor. | ||
| - Live markdown rendering with inline math and variables. | ||
| - System tray integration. | ||
| - Auto-hide on blur. | ||
| - Cross-platform desktop support. | ||
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.