Skip to content

Commit

Permalink
build for 243
Browse files Browse the repository at this point in the history
tangzx committed Nov 10, 2024
1 parent 2540d2c commit 02f8464
Showing 3 changed files with 16 additions and 19 deletions.
17 changes: 3 additions & 14 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -41,21 +41,10 @@ data class BuildData(

val buildDataList = listOf(
BuildData(
ideaSDKShortVersion = "242",
ideaSDKVersion = "242-EAP-SNAPSHOT",
ideaSDKShortVersion = "243",
ideaSDKVersion = "243-EAP-SNAPSHOT",
sinceBuild = "232",
untilBuild = "242.*",
bunch = "212",
targetCompatibilityLevel = JavaVersion.VERSION_17,
jvmTarget = "17"
),
BuildData(
ideaSDKShortVersion = "231",
// 223.7571.123-EAP-SNAPSHOT
// LATEST-EAP-SNAPSHOT
ideaSDKVersion = "233.11799.6-EAP-SNAPSHOT",
sinceBuild = "232",
untilBuild = "233.*",
untilBuild = "243.*",
bunch = "212",
targetCompatibilityLevel = JavaVersion.VERSION_17,
jvmTarget = "17"
Original file line number Diff line number Diff line change
@@ -60,14 +60,18 @@ public class LuaAppSettingsEditor extends SettingsEditor<LuaAppRunConfiguration>
private EnvironmentVariablesTextFieldWithBrowseButton myEnvironments;
private ComboBox<String> outputCharset;
private JCheckBox showConsoleWindowCheckBox;
private Project project;
private final Project project;

LuaAppSettingsEditor(Project project) {
this.project = project;
FileChooserDescriptor descriptor = FileChooserDescriptorFactory.createSingleFileNoJarsDescriptor();
myProgram.addBrowseFolderListener("Choose Program", "Choose program file", project, descriptor);
descriptor = FileChooserDescriptorFactory.createSingleFolderDescriptor();
myWorkingDir.addBrowseFolderListener("Choose Working Dir", "Choose working dir", project, descriptor);
FileChooserDescriptor descriptor = FileChooserDescriptorFactory.createSingleFileNoJarsDescriptor()
.withTitle("Choose Program")
.withDescription("Choose program file");
myProgram.addBrowseFolderListener(project, descriptor);
descriptor = FileChooserDescriptorFactory.createSingleFolderDescriptor()
.withTitle("Choose Working Dir")
.withDescription("Choose working dir");
myWorkingDir.addBrowseFolderListener(project, descriptor);

DebuggerType[] debuggerTypes = new DebuggerType[] { DebuggerType.Mob };
/*if (SystemInfoRt.isWindows)
4 changes: 4 additions & 0 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -69,6 +69,10 @@
]]></description>

<change-notes><![CDATA[
<strong>1.4.15</strong>
<ul>
<li>[NEW] compatible with IDEA243</li>
</ul>
<strong>1.4.14</strong>
<ul>
<li>[NEW] compatible with IDEA242</li>

0 comments on commit 02f8464

Please sign in to comment.