Skip to content

Commit

Permalink
Merge pull request #5 from hdescottes/Remove_since_until_option
Browse files Browse the repository at this point in the history
Remove since-until plugin option
  • Loading branch information
hdescottes committed Aug 8, 2024
2 parents 5b189a2 + edd97d1 commit fc0dd17
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
8 changes: 2 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
}

group = "com.plugin"
version = "1.2"
version = "1.3"

repositories {
mavenCentral()
Expand All @@ -24,6 +24,7 @@ repositories {
intellij {
version.set("2023.3.4")
type.set("IC") // Target IDE Platform
updateSinceUntilBuild = false

plugins.set(listOf(/* Plugin Dependencies */))
}
Expand All @@ -37,11 +38,6 @@ tasks {
withType<JavaCompile> {
}

patchPluginXml {
sinceBuild.set("231")
untilBuild.set("241.*")
}

signPlugin {
certificateChain.set(System.getenv("CERTIFICATE_CHAIN"))
privateKey.set(System.getenv("PRIVATE_KEY"))
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
]]></description>

<change-notes><![CDATA[
<em>1.3 Remove since-until plugin option</em><br>
<em>1.2 Remove background of the plugin icon</em><br>
<em>1.1 Fix minor requests for release</em><br>
<em>1.0 Creation of the Samus Progress Bar Project</em><br>
Expand Down

0 comments on commit fc0dd17

Please sign in to comment.