Skip to content

Commit

Permalink
Bump and clean (#557)
Browse files Browse the repository at this point in the history
* Bump IJP plugin to 2.0.1

* Disable autoreload in ide-plugin sample

It was causing more harm than good, with ~30% chance of the plugin being
unloaded at launch of runIde, and it never actually being dynamically
reloaded.

* Update Gradle to 8.10

* Update Compose to 1.7.0-alpha03

* Update IJP to 242.1 RC (242.21829.40)
  • Loading branch information
rock3r authored Aug 23, 2024
1 parent 0a43abe commit dbb0502
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[versions]
commonmark = "0.22.0"
composeDesktop = "1.7.0-dev1743"
composeDesktop = "1.7.0-alpha03"
detekt = "1.23.6"
dokka = "1.9.20"
idea = "2024.2"
intelliJPlatformBuild = "242.20224.300"
ideaPlugin = "2.0.0"
idea = "242.21829.40"
intelliJPlatformBuild = "242.21829.40-EAP-SNAPSHOT"
ideaPlugin = "2.0.1"
jna = "5.14.0"
kotlin = "1.9.24"
kotlinSarif = "0.5.0"
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,8 @@ internal class TestDataSink : DataSink {
) {
set(key, data())
}

override fun <T : Any> lazyNull(key: DataKey<T>) {
set(key, null)
}
}
1 change: 1 addition & 0 deletions samples/ide-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ dependencies {
intellijPlatform {
pluginConfiguration { name = "Jewel Demo" }
buildSearchableOptions = false
autoReload = false
}

tasks {
Expand Down

0 comments on commit dbb0502

Please sign in to comment.