Skip to content

Commit

Permalink
Updated the version to the latest PhpStorm version
Browse files Browse the repository at this point in the history
  • Loading branch information
daugaard47 committed Apr 18, 2024
1 parent 4556a4e commit ed9fa94
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
plugins {
id("java")
id("org.jetbrains.kotlin.jvm") version "1.7.20"
id("org.jetbrains.kotlin.jvm") version "1.9.0"
id("org.jetbrains.intellij") version "1.16.1"
}

group = "com.daugaard47"
version = "1.0.2"
version = "1.0.3"

repositories {
mavenCentral()
Expand All @@ -14,7 +14,7 @@ repositories {
// Configure Gradle IntelliJ Plugin
// Read more: https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
intellij {
version.set("2022.3")
version.set("2024.1")
type.set("IC") // Target IDE Platform

plugins.set(listOf(/* Plugin Dependencies */))
Expand All @@ -31,10 +31,10 @@ tasks {
}

patchPluginXml {
sinceBuild.set("222.0")
untilBuild.set("234.*")
sinceBuild.set("241.0")
untilBuild.set("244.*")
pluginId.set("com.daugaard47.classytoggle")
version.set("1.0.2")
version.set("1.0.3")
}

signPlugin {
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<idea-plugin>
<id>com.daugaard47.classytoggle</id>
<name>Classy Toggle</name>
<version>1.0.2</version>
<version>1.0.3</version>
<vendor email="daugaard47@gmail.com" url="daugaard47.com">Daugaard47</vendor>

<idea-version since-build="232.*" until-build="233.*"/>
<idea-version since-build="241.0" until-build="244.*"/>

<description><![CDATA[
A simple plugin to toggle CSS classes in common front-end files.
]]></description>

<change-notes><![CDATA[
Initial release.
Updated compatibility to support PhpStorm versions from build 241 to 244.
]]></change-notes>

<!-- Define the required dependency on the IntelliJ Platform -->
Expand Down

0 comments on commit ed9fa94

Please sign in to comment.