Fix ZIP export to open the parent folder of the exported project#9219
Merged
mbien merged 1 commit intoapache:masterfrom Feb 25, 2026
Merged
Fix ZIP export to open the parent folder of the exported project#9219mbien merged 1 commit intoapache:masterfrom
mbien merged 1 commit intoapache:masterfrom
Conversation
matthiasblaesing
approved these changes
Feb 22, 2026
Contributor
matthiasblaesing
left a comment
There was a problem hiding this comment.
Looks sane to me. But the wording seems off. I read "of the exported project" as meaning to open the folder where the project resides, not where the zip file is placed.
Wouldn't make "Fix ZIP export to open the parent folder of the exported zip file" make this clearer? What do you think?
However. This is a nitpick. The change makes sense to me, as I was annoyed multiple times because I wanted to get to the final zip and instead the archive programm was opened.
Exporting a project via File -> Export Project -> To ZIP opened the generated zip file directly instead of the containing folder.
ce98053 to
c103649
Compare
Contributor
Author
|
I agree, it is clearer with "exported zip file" |
mbien
approved these changes
Feb 23, 2026
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.
The previous implementation opened the generated ZIP file directly after export, leading to inconsistent and undesirable behavior across platforms:
This change opens the parent directory of the exported ZIP, providing more consistent behavior across platforms. It also aligns with how
Desktop.getDesktop().open(...)is used elsewhere in the repository, for example in DiscoPlatformIt.java.