From 4e98923f49793af1667c940d02384d7fa5fc08ac Mon Sep 17 00:00:00 2001 From: Uladzislau Date: Mon, 3 Jun 2024 11:46:57 +0200 Subject: [PATCH 1/3] v1.2.2 231 is created Signed-off-by: Uladzislau --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 1122e649d..4cd5dbbdb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -14,7 +14,7 @@ org.gradle.jvmargs=-Xss1M platformVersion = 2023.1 # SemVer format -> https://semver.org -pluginVersion = 1.2.1-231 +pluginVersion = 1.2.2-231 pluginGroup = eu.ibagroup pluginRepositoryUrl = https://github.com/for-mainframe/For-Mainframe From 9c8f4b098af3ba3ce1d5381d142e5cbbcb906066 Mon Sep 17 00:00:00 2001 From: Uladzislau Date: Tue, 4 Jun 2024 21:28:45 +0200 Subject: [PATCH 2/3] IJMP-1725 GH-182 EAP version is created Signed-off-by: Uladzislau --- gradle.properties | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/gradle.properties b/gradle.properties index 4cd5dbbdb..5052ce87a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,16 +11,18 @@ org.gradle.jvmargs=-Xss1M # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension -platformVersion = 2023.1 +# For the snapshots: https://www.jetbrains.com/intellij-repository/snapshots +# platformVersion = LATEST-EAP-SNAPSHOT +platformVersion = 242.10180.25-EAP-SNAPSHOT # SemVer format -> https://semver.org -pluginVersion = 1.2.2-231 +pluginVersion = 1.2.2-242-eap pluginGroup = eu.ibagroup pluginRepositoryUrl = https://github.com/for-mainframe/For-Mainframe # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html -pluginSinceBuild = 231.8109 -pluginUntilBuild = 241.* +pluginSinceBuild = 242.10180 +pluginUntilBuild = 242.* # Gradle Releases -> https://github.com/gradle/gradle/releases gradleVersion = 8.7 From 8247610f169e52989d78ddbc1d5ec57fc71c17bb Mon Sep 17 00:00:00 2001 From: Uladzislau Date: Thu, 6 Jun 2024 10:20:49 +0200 Subject: [PATCH 3/3] IJMP-1725 Some small changes Signed-off-by: Uladzislau --- build.gradle.kts | 2 +- gradle.properties | 4 ++-- .../eu/ibagroup/formainframe/explorer/ui/dummyClasses.kt | 4 ++++ 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 6165b816d..862d141b4 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -36,7 +36,7 @@ group = properties("pluginGroup").get() version = properties("pluginVersion").get() val remoteRobotVersion = "0.11.22" val okHttp3Version = "4.12.0" -val kotestVersion = "5.8.1" +val kotestVersion = "5.9.0" repositories { mavenCentral() diff --git a/gradle.properties b/gradle.properties index 5052ce87a..496362f97 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,7 +13,7 @@ org.gradle.jvmargs=-Xss1M # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension # For the snapshots: https://www.jetbrains.com/intellij-repository/snapshots # platformVersion = LATEST-EAP-SNAPSHOT -platformVersion = 242.10180.25-EAP-SNAPSHOT +platformVersion = 242.14146.16-EAP-SNAPSHOT # SemVer format -> https://semver.org pluginVersion = 1.2.2-242-eap @@ -21,7 +21,7 @@ pluginGroup = eu.ibagroup pluginRepositoryUrl = https://github.com/for-mainframe/For-Mainframe # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html -pluginSinceBuild = 242.10180 +pluginSinceBuild = 242.14146 pluginUntilBuild = 242.* # Gradle Releases -> https://github.com/gradle/gradle/releases diff --git a/src/test/kotlin/eu/ibagroup/formainframe/explorer/ui/dummyClasses.kt b/src/test/kotlin/eu/ibagroup/formainframe/explorer/ui/dummyClasses.kt index 8dd63fedf..54051d1a5 100644 --- a/src/test/kotlin/eu/ibagroup/formainframe/explorer/ui/dummyClasses.kt +++ b/src/test/kotlin/eu/ibagroup/formainframe/explorer/ui/dummyClasses.kt @@ -84,6 +84,10 @@ open class TestFileEditorManager : FileEditorManager() { TODO("Not yet implemented") } + override fun getAllEditorList(file: VirtualFile): MutableList { + TODO("Not yet implemented") + } + override fun addTopComponent(editor: FileEditor, component: JComponent) { TODO("Not yet implemented") }