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.1.2]
- Fix startup issue on Windows

## [1.1.1]
- Platform updates

Expand Down
5 changes: 4 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@ dependencies {
implementation(compose.materialIconsExtended)
implementation(libs.segment)

val version = "0.8.18"
// I usually do
// ./gradlew dependencies | grep "skiko"
// to get the skiko version that compose depends on
val version = "0.9.37.4"
val macTarget = "macos-arm64"
val windowsTarget = "windows-x64"
val linuxTarget = "linux-x64"
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pluginGroup = com.joetr.modulemaker
pluginName = ModuleMaker
pluginRepositoryUrl = https://github.com/j-roskopf/ModuleMakerPlugin
# SemVer format -> https://semver.org
pluginVersion = 1.1.1
pluginVersion = 1.1.2

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 222
Expand All @@ -13,7 +13,7 @@ pluginSinceBuild = 222
# 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 = 2024.3.1.1
platformVersion = 2025.2.3.1

# Example: platformBundledPlugins = com.intellij.java
platformBundledPlugins = com.intellij.java
Expand All @@ -39,4 +39,4 @@ 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

compose.version=1.7.3
compose.version=1.10.1
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
freemarker = "2.3.30"
serialization = "1.5.1"
jdk = "17"
kotlin = "2.1.20"
kotlin = "2.3.0"
changelog = "2.0.0"
gradleIntelliJPlugin = "2.4.0"
gradleIntelliJPlugin = "2.11.0"
spotless = "6.8.0"
segment = "1.13.2"
junit = "4.13.2"
Expand Down
Loading