Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
13 changes: 10 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Loading