-
Notifications
You must be signed in to change notification settings - Fork 76
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
feat: add install Java17 option when choose JavaDownload #951
Conversation
I'm ok with the modal, because having a JDK is crucial for Metals and any problem related to its absence is serious, thus modal makes sense - it forces you to make some decisions. wdyt @tgodzik |
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.
Looks good, but I would even remove the option for JDK 8 to prepare for a possible deprecation.
I want to include this in the current release thus I'll commit changes that we concluded. |
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.
👍
Thanks @yoshinorin for your contribution! |
As is the title.
Problem
If we do not apply
modal: true
toshowInformationMessage
, users can not decide which button should select that they want to download. Because,showInformationMessage
width is narrow and can not contain 4 buttons.Solution (idea)
We can apply
modal: true
toshowInformationMessage
. This optionshowInformationMessage
with a dialog. It can contain 4 buttons.How do you think?
Thank you :)