Conversation
Update find commands for AppImage updater artifacts to use more generic wildcards. Configure `action-gh-release` to not fail on unmatched files. Set `actions/upload-artifact` to warn if signature files are not found. Enhance log messages for artifact preparation steps. These changes make artifact matching more resilient to filename variations. They prevent the release workflow from failing if optional artifacts are missing. Improved logging provides clearer feedback during artifact preparation.
Adds a "Delete All" button and confirmation dialog to the Providers page. Introduces `isDeletingAll`, `executeDeleteAll`, `showDeleteAllConfirmation`, and `setShowDeleteAllConfirmation` states and functions in `useProvidersPresenter`. Implements the `executeDeleteAll` logic to call the new `authFilesApi.deleteAll` endpoint. Adds the `deleteAll` method to `authFilesApi` to send a DELETE request to `/auth-files?all=true`. Includes new internationalization keys for "Delete All" related texts across all locales. Bumps the application version to `1.1.0` in `package.json`, `Cargo.toml`, and `tauri.conf.json`. This provides users with a convenient and efficient way to remove all their connected provider accounts simultaneously, improving account management. It also ensures a consistent and localized user experience for this new functionality and reflects the new feature set in the application's version.
Adds a button to copy the refresh token for each provider directly from the UI. This allows users to easily retrieve their refresh tokens for debugging or other uses. Introduces a `copyRefreshToken` function in the presenter to handle the logic. Adds a new API endpoint to download the content of an authentication file. Updates the `AuthFile` type to include an optional `name` property. Adds corresponding translation keys for the new functionality.
Adds a new "Copy All" button to the Providers page, allowing users to copy refresh tokens from multiple selected providers. This feature includes: - A new dialog for selecting providers to include in the copy operation. - State management in `useProvidersPresenter` for the modal, selection, and copying process. - Logic to fetch and concatenate refresh tokens from selected providers. - Clipboard integration to copy the combined refresh tokens. - Internationalization support for new strings related to "Copy All" functionality. This enhances user convenience by providing a bulk action for managing refresh tokens.
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.
🚀 Summary
This PR introduces improvements to provider management and build robustness:
✨ Features
🛠 Improvements
📦 Impact
🧪 Testing