Skip to content

Commit 02f8464

Browse files
committed
build for 243
1 parent 2540d2c commit 02f8464

File tree

3 files changed

+16
-19
lines changed

3 files changed

+16
-19
lines changed

build.gradle.kts

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -41,21 +41,10 @@ data class BuildData(
4141

4242
val buildDataList = listOf(
4343
BuildData(
44-
ideaSDKShortVersion = "242",
45-
ideaSDKVersion = "242-EAP-SNAPSHOT",
44+
ideaSDKShortVersion = "243",
45+
ideaSDKVersion = "243-EAP-SNAPSHOT",
4646
sinceBuild = "232",
47-
untilBuild = "242.*",
48-
bunch = "212",
49-
targetCompatibilityLevel = JavaVersion.VERSION_17,
50-
jvmTarget = "17"
51-
),
52-
BuildData(
53-
ideaSDKShortVersion = "231",
54-
// 223.7571.123-EAP-SNAPSHOT
55-
// LATEST-EAP-SNAPSHOT
56-
ideaSDKVersion = "233.11799.6-EAP-SNAPSHOT",
57-
sinceBuild = "232",
58-
untilBuild = "233.*",
47+
untilBuild = "243.*",
5948
bunch = "212",
6049
targetCompatibilityLevel = JavaVersion.VERSION_17,
6150
jvmTarget = "17"

src/main/java/com/tang/intellij/lua/debugger/app/LuaAppSettingsEditor.java

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,18 @@ public class LuaAppSettingsEditor extends SettingsEditor<LuaAppRunConfiguration>
6060
private EnvironmentVariablesTextFieldWithBrowseButton myEnvironments;
6161
private ComboBox<String> outputCharset;
6262
private JCheckBox showConsoleWindowCheckBox;
63-
private Project project;
63+
private final Project project;
6464

6565
LuaAppSettingsEditor(Project project) {
6666
this.project = project;
67-
FileChooserDescriptor descriptor = FileChooserDescriptorFactory.createSingleFileNoJarsDescriptor();
68-
myProgram.addBrowseFolderListener("Choose Program", "Choose program file", project, descriptor);
69-
descriptor = FileChooserDescriptorFactory.createSingleFolderDescriptor();
70-
myWorkingDir.addBrowseFolderListener("Choose Working Dir", "Choose working dir", project, descriptor);
67+
FileChooserDescriptor descriptor = FileChooserDescriptorFactory.createSingleFileNoJarsDescriptor()
68+
.withTitle("Choose Program")
69+
.withDescription("Choose program file");
70+
myProgram.addBrowseFolderListener(project, descriptor);
71+
descriptor = FileChooserDescriptorFactory.createSingleFolderDescriptor()
72+
.withTitle("Choose Working Dir")
73+
.withDescription("Choose working dir");
74+
myWorkingDir.addBrowseFolderListener(project, descriptor);
7175

7276
DebuggerType[] debuggerTypes = new DebuggerType[] { DebuggerType.Mob };
7377
/*if (SystemInfoRt.isWindows)

src/main/resources/META-INF/plugin.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@
6969
]]></description>
7070

7171
<change-notes><![CDATA[
72+
<strong>1.4.15</strong>
73+
<ul>
74+
<li>[NEW] compatible with IDEA243</li>
75+
</ul>
7276
<strong>1.4.14</strong>
7377
<ul>
7478
<li>[NEW] compatible with IDEA242</li>

0 commit comments

Comments
 (0)