Skip to content

Commit 42b0b8b

Browse files
author
Patrice de Saint Steban
committed
🔖 Update plugin versions.
1 parent bd539a5 commit 42b0b8b

File tree

11 files changed

+17
-22
lines changed

11 files changed

+17
-22
lines changed
Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,15 @@
1111
</option>
1212
<option name="taskNames">
1313
<list>
14-
<option value="runPluginVerifier" />
14+
<option value="verifyPlugin" />
1515
</list>
1616
</option>
1717
<option name="vmOptions" value="" />
1818
</ExternalSystemSettings>
1919
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
2020
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
2121
<DebugAllEnabled>false</DebugAllEnabled>
22-
<method v="2">
23-
<option name="Gradle.BeforeRunTask" enabled="true" tasks="clean" externalProjectPath="$PROJECT_DIR$" vmOptions="" scriptParameters="" />
24-
</method>
22+
<RunAsTest>false</RunAsTest>
23+
<method v="2" />
2524
</configuration>
2625
</component>

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
## [2.4.0] - 2025-12-01
1515

16-
- ⬆️ Update versions of dependencie
16+
- ⬆️ Update versions of dependencies
1717
- 🌐Add pt_BR translation (thanks to @P3terHenry)
1818

1919
## [2.3.0] - 2025-05-13

build.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,8 @@ intellijPlatform {
108108

109109
pluginVerification {
110110
ides {
111-
ide(providers.gradleProperty("platformType"), providers.gradleProperty("platformVersion"))
111+
recommended()
112112
}
113-
freeArgs = listOf("-mute", "TemplateWordInPluginName")
114113
}
115114
}
116115

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ pluginVersion = 3.0.0
99

1010
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1111
# for insight into build numbers and IntelliJ Platform versions.
12-
pluginSinceBuild = 242
12+
pluginSinceBuild = 251
1313
pluginUntilBuild =
1414

1515
# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
1616
platformType = IC
17-
platformVersion = 2024.2.5
17+
platformVersion = 2025.2.5
1818

1919
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
2020
# Note: Bundled plugins are now defined separately from plugins of other sources (like JetBrains Marketplace).
@@ -26,7 +26,7 @@ platformBundledPlugins = Git4Idea
2626
javaVersion = 21
2727

2828
# Gradle Releases -> https://github.com/gradle/gradle/releases
29-
gradleVersion = 8.13
29+
gradleVersion = 9.2.1
3030

3131
# Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib
3232
kotlin.stdlib.default.dependency = false

gradle/libs.versions.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@ junit = "4.13.2"
44
opentest4j = "1.3.0"
55

66
# plugins
7-
changelog = "2.2.1"
7+
changelog = "2.5.0"
88
intelliJPlatform = "2.10.5"
99
kotlin = "2.2.21"
10-
kover = "0.9.1"
10+
kover = "0.9.3"
1111
qodana = "2025.2.2"
1212

13+
1314
[libraries]
1415
junit = { group = "junit", name = "junit", version.ref = "junit" }
1516
opentest4j = { group = "org.opentest4j", name = "opentest4j", version.ref = "opentest4j" }

gradle/wrapper/gradle-wrapper.jar

1.88 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 2 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/kotlin/com/github/patou/gitmoji/GitmojiCustomColumn.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class GitmojiCustomColumn : VcsLogCustomColumn<GitmojiData> {
3434
}
3535

3636
override fun getValue(model: GraphTableModel, row: Int): GitmojiData? {
37-
model.getCommitMetadata(row).let {
37+
model.getCommitMetadata(row)?.let {
3838
for (moji in Gitmojis.gitmojis) {
3939
if (it.subject.contains(moji.emoji) || it.subject.contains(moji.code)) {
4040
return moji

0 commit comments

Comments
 (0)