Skip to content

Commit

Permalink
feat(docs): updated CHANGELOG for version 9.7.0 and updated build scr…
Browse files Browse the repository at this point in the history
…ipts with signing and plugin verification
  • Loading branch information
mallowigi committed May 18, 2024
1 parent c3dbd65 commit cbe0c05
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
7 changes: 5 additions & 2 deletions common/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* The MIT License (MIT)
*
* Copyright (c) 2015-2023 Elior "Mallowigi" Boukhobza
* Copyright (c) 2015-2024 Elior "Mallowigi" Boukhobza
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -20,7 +20,6 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*/

fun properties(key: String): Provider<String> = providers.gradleProperty(key)
Expand Down Expand Up @@ -60,6 +59,10 @@ tasks {
enabled = false
}

signPlugin {
enabled = true
}

runIde {
enabled = false
}
Expand Down
6 changes: 6 additions & 0 deletions docs/CHANGELOG.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ <h2>Changelog</h2>

<hr />

<h2>97.0.0 (9.7.0)</h2>

<h3>Fixes</h3>

<ul><li>Performance Improvement by using a cache for associations</li><li>Fix &quot;Fix Actions Buttons Color&quot; color</li><li>Update Action Buttons Color on theme change when the setting is enabled</li><li>Added missing New UI icons</li></ul>

<h2>96.0.0 (9.6.0)</h2>

<h3>Features</h3>
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryEr
platformDownloadSources=true
platformType=IU
platformVersion=LATEST-EAP-SNAPSHOT
pluginChannels=EAP
pluginChannels=default,EAP
pluginID=com.mallowigi
pluginName=Atom Material Icons
pluginSinceBuild=233.0
Expand Down
11 changes: 8 additions & 3 deletions rider/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* The MIT License (MIT)
*
* Copyright (c) 2015-2022 Elior "Mallowigi" Boukhobza
* Copyright (c) 2015-2024 Elior "Mallowigi" Boukhobza
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -20,8 +20,6 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*
*/

fun properties(key: String): Provider<String> = providers.gradleProperty(key)
Expand All @@ -32,6 +30,9 @@ dependencies {
intellijPlatform {
rider(properties("riderVersion").get())
instrumentationTools()

pluginVerifier()
zipSigner()
}

implementation(project(":common"))
Expand All @@ -46,6 +47,10 @@ tasks {
enabled = false
}

signPlugin {
enabled = false
}

runIde {
enabled = false
}
Expand Down

0 comments on commit cbe0c05

Please sign in to comment.