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..d703da4 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 @@ -39,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 +