-
Notifications
You must be signed in to change notification settings - Fork 14
Tauri #19
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
Tauri #19
Changes from 36 commits
Commits
Show all changes
43 commits
Select commit
Hold shift + click to select a range
c5493e5
fix(ci): Update build workflow and configuration
Y-RyuZU 720c86e
fix(types): Replace all 'any' types with proper TypeScript types
Y-RyuZU efb5813
fix(tests): Rewrite filesystem service tests to use built-in mocking
Y-RyuZU 74e0d6f
refactor: Remove unused imports and variables
Y-RyuZU c5cf945
fix(types): Resolve TypeScript compilation errors
Y-RyuZU 53093b7
fix(config, ci): improve type safety and remove unused debugging step
Y-RyuZU d156a67
fix(tauri): update bundle identifier for macOS build
Y-RyuZU 5dc2fbb
fix(config): update Tauri build commands to use "bun run" syntax
Y-RyuZU 711ae97
feat(ci): add environment variables for Tauri signing and update publ…
Y-RyuZU d0c3d1c
refactor(config): unify configuration structure and add temperature s…
Y-RyuZU ca16792
feat(translation): implement token counter with smart chunking
Y-RyuZU 5d65ecb
feat(logging): enhance translation logging with comprehensive progres…
Y-RyuZU d5e1ab5
fix(translation): enable token-based chunking and fix token limit issues
Y-RyuZU 0c3ae96
fix(translation): add token chunking config serialization and UI cont…
Y-RyuZU 7ee3b36
fix: replace error throwing with logging to avoid debug notifications
Y-RyuZU 49a9742
fix: prevent progress bar from jumping backwards
Y-RyuZU 541c0e5
fix: resolve hydration errors in SSR/client rendering
Y-RyuZU 4f69a65
feat: add toast notifications and fix settings persistence
Y-RyuZU 4c22e3f
fix: prevent duplicate language suffixes in quest files
Y-RyuZU 9cf2902
refactor: consolidate defaults into constants directory
Y-RyuZU 87f6ddf
test: update test configuration and add bun support
Y-RyuZU 7de9374
chore: miscellaneous improvements and code cleanup
Y-RyuZU 3ffafec
feat(backup): implement translation backup system
Y-RyuZU 8230634
feat(quest): implement T018 nested directory structure support for FT…
Y-RyuZU 26ea7ad
feat(T020): implement comprehensive legacy .lang file support
Y-RyuZU 83a61b9
feat(quest): implement T021 BetterQuest DefaultQuests.lang direct tra…
Y-RyuZU 6d42563
fix(backup): correct state management in backup settings component
Y-RyuZU 00b2cdd
test: update test configuration and fixtures
Y-RyuZU a7b4dee
feat(ui): add badge component and update type definitions
Y-RyuZU f2b06a7
fix(lint): resolve ESLint warnings in quests-tab.tsx
Y-RyuZU 94c0d1e
Merge branch 'main' into tauri - resolve conflicts
Y-RyuZU cd0d6bc
fix: resolve linting and formatting issues for CI validation
Y-RyuZU 81fd736
fix: update dependencies to resolve security vulnerabilities
Y-RyuZU e0313f0
fix: allow Cargo.lock in git for CI security audit
Y-RyuZU 34a8d6e
fix: add Cargo.lock to root for CI
Y-RyuZU e2e7b6c
fix: resolve CI issues
Y-RyuZU 967cabe
fix: resolve frontend type checking and linting issues
Y-RyuZU 08d9fbf
fix: resolve CI issues and apply CodeRabbit suggestions
Y-RyuZU 5572e16
fix: apply Rust formatting
Y-RyuZU fdd4b84
fix: add missing system dependencies to PR validation workflow
Y-RyuZU 9063a9a
fix: apply clippy uninlined_format_args fixes
Y-RyuZU b3c227f
fix: apply cargo fmt for remaining formatting issues
Y-RyuZU a6d4b1a
fix: use npm test in PR validation to run correct test subset
Y-RyuZU 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Secrets exposed to entire job
Setting
GITHUB_TOKENand signing keys at the job level exposes them to every subsequent step. Restrict to the step that actually needs them (the Tauri build) to minimise leakage surface:📝 Committable suggestion
🤖 Prompt for AI Agents