feat: Implement Tauri auto-updater with version display#13
Merged
Conversation
added 4 commits
February 2, 2026 00:28
- Add tauri-plugin-updater and tauri-plugin-process dependencies - Implement automatic update check on app startup - Add version info display component showing app version and git commit - Configure GitHub Actions for signed release artifacts - Add updater configuration to tauri.conf.json - Create useVersionInfo hook and VersionInfo component - Update App.tsx footer to display version information Note: Requires TAURI_SIGNING_PRIVATE_KEY and TAURI_SIGNING_PRIVATE_KEY_PASSWORD secrets to be configured in GitHub repository settings before release.
…support - Add pre-release workflow for alpha/beta/rc tags with detailed release notes - Add test-build workflow for multi-platform build verification - Enhance release workflow with build environment variables (commit hash, branch, timestamp) - Add macOS multi-target support (aarch64 and x86_64) - Improve release notes with download instructions and auto-update information - Add pre-release tag exclusion logic to prevent conflicts
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.
概要
Tauri updater pluginを使用した自動アップデート機能を実装しました。
実装内容
変更内容
Rust側
フロントエンド側
リリース前の準備
署名キーの生成とGitHub Secretsの設定が必要です。詳細はコミットメッセージを参照してください。