Skip to content

Commit 913966b

Browse files
committed
remove qodana, change logo, update license, update deps, add synthwave modified, change renovate
1 parent 04ed422 commit 913966b

13 files changed

+271
-251
lines changed

.idea/compiler.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

+5-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015-2021 Elior "Mallowigi" Boukhobza
3+
Copyright (c) 2015-2022 Elior "Mallowigi" Boukhobza
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

build.gradle.kts

+7-14
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,17 @@ plugins {
2929
// Java support
3030
id("java")
3131
// Kotlin support
32-
id("org.jetbrains.kotlin.jvm") version "1.6.10"
32+
id("org.jetbrains.kotlin.jvm") version "1.7.0-Beta"
3333
// gradle-intellij-plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin
34-
id("org.jetbrains.intellij") version "1.4.0"
34+
id("org.jetbrains.intellij") version "1.6.0-SNAPSHOT"
3535
// gradle-changelog-plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
3636
id("org.jetbrains.changelog") version "1.3.1"
3737
// Gradle Qodana Plugin
3838
id("org.jetbrains.qodana") version "0.1.13"
3939
// detekt linter - read more: https://detekt.github.io/detekt/gradle.html
40-
id("io.gitlab.arturbosch.detekt") version "1.19.0"
40+
id("io.gitlab.arturbosch.detekt") version "1.20.0"
4141
// ktlint linter - read more: https://github.com/JLLeitschuh/ktlint-gradle
42-
id("org.jlleitschuh.gradle.ktlint") version "10.2.0"
42+
id("org.jlleitschuh.gradle.ktlint") version "10.3.0"
4343
}
4444

4545
group = properties("pluginGroup")
@@ -55,10 +55,10 @@ repositories {
5555
}
5656

5757
dependencies {
58-
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.19.0")
58+
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.20.0")
5959
implementation("com.jgoodies:jgoodies-forms:1.9.0")
6060
implementation("com.thoughtworks.xstream:xstream:1.4.19")
61-
implementation("org.javassist:javassist:3.28.0-GA")
61+
implementation("org.javassist:javassist:3.29.0-GA")
6262
implementation("com.mixpanel:mixpanel-java:1.5.0")
6363
}
6464

@@ -97,13 +97,6 @@ detekt {
9797
autoCorrect = true
9898
}
9999

100-
// Configure Gradle Qodana Plugin - read more: https://github.com/JetBrains/gradle-qodana-plugin
101-
qodana {
102-
cachePath.set(projectDir.resolve(".qodana").canonicalPath)
103-
reportPath.set(projectDir.resolve("build/reports/inspections").canonicalPath)
104-
saveReport.set(true)
105-
showReport.set(System.getenv("QODANA_SHOW_REPORT")?.toBoolean() ?: false)
106-
}
107100

108101
tasks {
109102
properties("javaVersion").let {
@@ -177,7 +170,7 @@ tasks {
177170

178171
publishPlugin {
179172
// dependsOn("patchChangelog")
180-
token.set(System.getenv("INTELLIJ_PUBLISH_TOKEN") ?: file("./publishToken").readText())
173+
token.set(System.getenv("INTELLIJ_PUBLISH_TOKEN") ?: file("./publishToken").readText().trim())
181174
channels.set(listOf(properties("pluginVersion").split('-').getOrElse(1) { "default" }.split('.').first()))
182175
}
183176
}

gradle.properties

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ idePath=
2929
idePathMac=/Users/helio/Library/Application Support/JetBrains/Toolbox/apps/RubyMine/ch-0/181.3741.30/RubyMine 2018.1 EAP.app
3030
idePathWin=C:\\Users\\eliorb.ELIORB\\AppData\\Local\\JetBrains\\Toolbox\\apps\\RubyMine\\ch-0\\173.3727.132
3131

32-
javaVersion=11
32+
javaVersion=17
3333

3434
#jvmArgs="-Didea.plugins.host=https://master.demo.marketplace.intellij.net/"
3535
#salesUrl="https://mp.jpf-demo.aws.intellij.net/testservices/JetBrainsAccount.xml"
@@ -49,11 +49,11 @@ pluginGroup=com.mallowigi.idea
4949
pluginName=Material Theme UI Lite
5050
pluginSinceBuild=221.0000
5151
pluginUntilBuild=231.*
52-
pluginVersion=17.0
52+
pluginVersion=18.0.0
5353

5454
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
5555
# See https://jb.gg/intellij-platform-builds-list for available build versions.
56-
pluginVerifierIdeVersions=2020.2.4, 2020.3.3, 2021.1, 2021.2, 2022.1
56+
pluginVerifierIdeVersions=2021.3, 2022.1, 2022.2
5757

5858
platformPlugins=
5959

license.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* The MIT License (MIT)
33
*
4-
* Copyright (c) 2015-2021 Elior "Mallowigi" Boukhobza
4+
* Copyright (c) 2015-2022 Elior "Mallowigi" Boukhobza
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal

logo.svg

+11
Loading

0 commit comments

Comments
 (0)