Conversation
- Add `AppIconManager` for platform-specific app icons and taskbar integration. - Rebrand project to "OpenBucket" with updated metadata, resource paths, and logos. - Implement detailed file type icons in `ObjectBrowserPanel`. - Add macOS-specific `jpackage` tasks for `.app` and `.dmg` packaging. - Refactor sidebar and dialogs for improved interaction and design. - Update README and LICENSE files for better documentation.
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.
Motivation
AccountandSingle Bucketand keep each form layout stable and readable.Description
JListtype selector and aCardLayoutcontent area so each type has its own fixed form; implemented inAccountDialogand preserved theConnectionInputcontract.SingleBucketConfig,SingleBucketDao, and a Flyway migrationV2__add_single_bucket_support.sql.MainWindow: addedsingleBucketConfigsmap andsingleBucketDao, addedconnectFromDialogflow to handleConnectionInput(account vs single-bucket), introducednormalizeSingleBucketandtoSessionAccountConfig, splitcreateManagerto accept provider/credentials, and fixedloadSavedAccounts()to always load both accounts and single-buckets.SidebarTreePanel.AccountNodewith asingleBucketflag andbucketName, addedaddSingleBucket/updateSingleBucketandpopulateBucketshelper, and adjusted selection/expand/menus to treat single-bucket entries as leaf nodes;AccountContextMenunow conditionally enablesCreate bucket.Add Account→Add Connection) and defensive handling for nulls/empty buckets in tree population.Testing
./gradlew testwhich failed during configuration evaluation becausepublishing.gradlerequires thegiteaTokenproperty in this environment (build evaluation error)../gradlew test -PgiteaToken=dummywhich failed during dependency resolution due to HTTP 403 from Maven Central (could not download dependencies)../gradlew compileJava -PgiteaToken=dummy --offlinewhich failed because offline mode has no local cached dependencies.AccountDialogcode paths and reviewed UI layout changes in the code; desktop runtime validation is recommended via./gradlew runin an environment with network/dependency access.Codex Task