Skip to content
Closed
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# intellij-runescript Changelog

## [Unreleased]
### Added
- Add documentation support based on the KDoc.

### Fixed
- Fix regular expressions not being allowed in hook transmits list.
- Fix invalid symbol file inspection reporting an error for "commands.sym".
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,5 @@ To install the plugin, follow the following steps:

## Acknowledgements

The [IntelliJ Rust](https://github.com/intellij-rust/intellij-rust) plugin was used for reference.
The [IntelliJ Rust](https://github.com/intellij-rust/intellij-rust) plugin was used for reference.
The [Kotlin Compiler](https://github.com/JetBrains/Kotlin) plugin was used for reference.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ kotlin {
sourceSets {
main {
java.srcDirs("src/main/gen")
java.srcDirs("src/main/kotlin")
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ annotations = "24.0.1"
# plugins
kotlin = "1.9.0"
changelog = "2.2.0"
gradleIntelliJPlugin = "1.15.0"
gradleIntelliJPlugin = "1.16.0"
qodana = "0.1.13"

[libraries]
Expand Down
Loading