Skip to content
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

fix: Incompatibility issue with IDEA 2024.3 #22

Merged
merged 1 commit into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ intellijPlatform {
untilBuild.set("243.*")
}
}
buildSearchableOptions.set(false)
}

val pitVersion = "1.17.1"
Expand All @@ -37,7 +38,7 @@ dependencies {
implementation("org.pitest:pitest-command-line:$pitVersion")
implementation("org.pitest:pitest-entry:$pitVersion")
intellijPlatform {
intellijIdeaCommunity("2024.3")
intellijIdeaCommunity("2024.2.3")
bundledPlugin("com.intellij.java")
bundledPlugin("org.jetbrains.idea.maven")
bundledPlugin("com.intellij.gradle")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,11 @@ private ActionListener getDirectoryListener(final String title, final TextFieldW
final Consumer<String> editorStatusConsumer) {
return e -> {
new BrowseFolderActionListener<>(
title,
null,
field,
project,
FileChooserDescriptorFactory.createSingleFolderDescriptor().withTitle(title),
FileChooserDescriptorFactory.createSingleFolderDescriptor(),
TextComponentAccessor.TEXT_FIELD_WHOLE_TEXT
).actionPerformed(e);
editorStatusConsumer.accept(field.getText());
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<p><em>New release to address incompatibility with IDEA 2024.3.</em></p>
<h5>Changes</h5>
<ul>
<li>Prepared plugin for IntelliJ 2024.3 version</li>
<li>Fixed an incompatibility issue with IDEA 2024.3</li>
</ul>
<h5>Known issues</h5>
<p style="margin-left: 30px;">There are no known issues at this moment. Hooray!</p>
Expand Down
Loading