From e0e02db845d8cc2b9b1356f88e85f9045872dedb Mon Sep 17 00:00:00 2001 From: Joe Roskopf <7951665+j-roskopf@users.noreply.github.com> Date: Thu, 26 Feb 2026 09:00:36 -0600 Subject: [PATCH 1/2] update min version to 252 --- CHANGELOG.md | 3 +++ gradle.properties | 9 ++++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2347650..8f6d37d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Module Maker Changelog +## [1.2.1] +- Update min version to 252 + ## [1.2.0] - Fix startup issue on Windows - Change to standard IntelliJ theming diff --git a/gradle.properties b/gradle.properties index e3c76bb..be08cc7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,16 +4,19 @@ pluginGroup = com.joetr.modulemaker pluginName = ModuleMaker pluginRepositoryUrl = https://github.com/j-roskopf/ModuleMakerPlugin # SemVer format -> https://semver.org -pluginVersion = 1.2.0 +pluginVersion = 1.2.1 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html -pluginSinceBuild = 222 +# Branch numbers are based on the YYYY.R IDE release version numbers. +# The branch number takes the last two digits of the year and the R release number. +# For example, 231 for 2023.1, 232 for 2023.2, and 233 for 2023.3. +pluginSinceBuild = 252 # pluginUntilBuild = # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension platformType = AI # AS version and patch at the end -platformVersion = 2025.2.3.1 +platformVersion = 2025.3.1.1 # Example: platformBundledPlugins = com.intellij.java platformBundledPlugins = com.intellij.java From 6eedb6759bd3380efabacfcc4b44bce9c973a1d6 Mon Sep 17 00:00:00 2001 From: Joe Roskopf <7951665+j-roskopf@users.noreply.github.com> Date: Thu, 26 Feb 2026 09:39:53 -0600 Subject: [PATCH 2/2] increase timeout --- gradle.properties | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gradle.properties b/gradle.properties index be08cc7..d703da4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -42,3 +42,7 @@ org.gradle.caching = true # Enable Gradle Kotlin DSL Lazy Property Assignment -> https://docs.gradle.org/current/userguide/kotlin_dsl.html#kotdsl:assignment systemProp.org.gradle.unsafe.kotlin.assignment = true +# Increase HTTP timeouts for downloading large IDE artifacts (e.g. Android Studio ~1GB) on CI +systemProp.org.gradle.internal.http.socketTimeout=300000 +systemProp.org.gradle.internal.http.connectionTimeout=60000 +