Skip to content

Commit

Permalink
fix: Add missing Java Plugin Dependency (#40)
Browse files Browse the repository at this point in the history
* Add missing Java Plugin Dependency

* Add new Dependency to CHANGELOG.md

* Add Gradle Dependency for Java Plugin

* Add PR numbers to changelog
  • Loading branch information
thelooter authored May 19, 2024
1 parent a8ac3a1 commit 0bbfc73
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
- Different colors for Java filetypes (e.g. `Class`: Red, `Interface`: Green, `Record`: Mauve, `Enum`:
Yellow and `Annotation`: Green) ([#35](https://github.com/catppuccin/jetbrains-icons/pull/35))
- Ability to disable different colors for Java filetypes in settings panel. ([#35](https://github.com/catppuccin/jetbrains-icons/pull/35))
- Add Docker icon to all files with string `Dockerfile` (e.g. `dev.Dockerfile`)
- Add Docker icon to all files with string `Dockerfile` (e.g. `dev.Dockerfile`) ([#32](https://github.com/catppuccin/jetbrains-icons/pull/32))
- Add Dependency on the IntelliJ Java Module ([#40](https://github.com/catppuccin/jetbrains-icons/pull/40))

### Changed

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pluginSinceBuild=231
pluginUntilBuild=241.*
platformType=IC
platformVersion=2023.1
platformPlugins=org.jetbrains.kotlin
platformPlugins=org.jetbrains.kotlin,com.intellij.java
javaVersion=17
gradleVersion=7.3.3
kotlin.stdlib.default.dependency=false
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 @@ -32,6 +32,7 @@ For further help, see also:
]]></description>
<depends>com.intellij.modules.platform</depends>
<depends>org.jetbrains.kotlin</depends>
<depends>com.intellij.java</depends>
<extensions defaultExtensionNs="com.intellij">
<iconProvider
implementation="com.github.catppuccin.jetbrains_icons.IconProvider"
Expand Down

0 comments on commit 0bbfc73

Please sign in to comment.