Skip to content

Commit

Permalink
fix: make kotlin & java modules optional (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
SupianIDz authored Aug 13, 2024
1 parent 47a1d64 commit db9cc50
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@

### Fixed

- Make `org.jetbrains.kotlin` and `com.intellij.java` modules optional. This reintroduces support for IDEs outside IntelliJ, Android Studio & Aqua. ([#86](https://github.com/catppuccin/jetbrains-icons/pull/86))

### Security

## 1.6.1 - 2024-08-09
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ For further help, see also:
<p>LICENSE: <a href="https://github.com/catppuccin/jetbrains-icons/blob/main/LICENSE">MIT</a></p>
]]></description>
<depends>com.intellij.modules.platform</depends>
<depends>org.jetbrains.kotlin</depends>
<depends>com.intellij.java</depends>
<depends optional="true">org.jetbrains.kotlin</depends>
<depends optional="true">com.intellij.java</depends>
<extensions defaultExtensionNs="com.intellij">
<iconProvider
implementation="com.github.catppuccin.jetbrains_icons.IconProvider"
Expand Down

0 comments on commit db9cc50

Please sign in to comment.