Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ You can find the plugin on [IntelliJ marketplace](https://plugins.jetbrains.com/

Manually verified with these products…

- IntelliJ IDEA Community Edition 2024.2+
- IntelliJ IDEA Ultimate 2024.2+
- PhpStorm 2024.2+
- WebStorm 2024.2+
- IntelliJ IDEA Community Edition 2024.3+
- IntelliJ IDEA Ultimate 2024.3+
- PhpStorm 2024.3+
- WebStorm 2024.3+

## ❤️🙏 Love & Thanks

Expand Down
4 changes: 3 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ tasks {
targetCompatibility = properties("javaVersion").get()
}
withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
compilerOptions.jvmTarget = JvmTarget.JVM_21
compilerOptions {
jvmTarget.set(JvmTarget.fromTarget(properties("javaVersion").get()))
}
}

patchPluginXml {
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ org.gradle.caching=true

pluginName=html-attribute-folder
pluginGroup=dev.zbinski
pluginVersion=1.1.2
platformVersion=2024.2
pluginVersion=1.1.3
platformVersion=2024.3
# @see https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-types.html#IntelliJPlatformType
platformType=IC
pluginSinceBuild=231
pluginUntilBuild=242.*
pluginUntilBuild=243.*
javaVersion=21
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Guidelines: https://plugins.jetbrains.com/docs/marketplace/plugin-overview-page.html#plugin-name -->
<name>HTML Attribute Folder</name>

<version>1.1.2</version>
<version>1.1.3</version>

<!-- A displayed Vendor name or Organization ID displayed on the Plugins Page. -->
<vendor email="dawid@zbinski.dev" url="https://zbinski.dev">Dawid Zbiński</vendor>
Expand Down