Skip to content

Commit

Permalink
support Extra IDE Tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanlermitage committed Mar 29, 2024
1 parent 552e0ae commit a62b4bb
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 13 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,8 @@
# Extra ToolWindow Colorful Icons Change Log

## 1.34.0 (2024/03/29)
* add colors to [Extra IDE Tweaks](https://plugins.jetbrains.com/plugin/23927-extra-ide-tweaks) Open Editors tool window icon.

## 1.33.0 (2024/02/17)
* add colors to toolbar's specific Collapse and Expand icons in new UI.

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Expand Up @@ -18,7 +18,7 @@ import javax.xml.xpath.XPathFactory

plugins {
id("java")
id("org.jetbrains.intellij") version "1.17.1" // https://github.com/JetBrains/gradle-intellij-plugin
id("org.jetbrains.intellij") version "1.17.3" // https://github.com/JetBrains/intellij-platform-gradle-plugin
id("org.jetbrains.changelog") version "2.2.0" // https://github.com/JetBrains/gradle-changelog-plugin
id("com.github.ben-manes.versions") version "0.51.0" // https://github.com/ben-manes/gradle-versions-plugin
id("com.palantir.git-version") version "3.0.0" // https://github.com/palantir/gradle-git-version
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
20 changes: 10 additions & 10 deletions gradlew.bat
Expand Up @@ -43,11 +43,11 @@ set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if %ERRORLEVEL% equ 0 goto execute

echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
echo. 1>&2
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2

goto fail

Expand All @@ -57,11 +57,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe

if exist "%JAVA_EXE%" goto execute

echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
echo. 1>&2
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2

goto fail

Expand Down
Expand Up @@ -140,6 +140,7 @@ public static Map<String, IconItem> allIcons() {
icons.put("kpxToolwindow.svg", of("extratci/icons/custom/kpxToolwindow.svg", "Key Promotex X tool window (3rd party plugin)"));
icons.put("uml.png", of("extratci/icons/custom/uml.svg", "PlantUML integration tool window (3rd party plugin)"));
icons.put("/dev/turingcomplete/intellijdevelopertoolsplugin/icons/toolwindow.svg", of("extratci/icons/custom/developer-tools.svg", "Developer Tools tool window (3rd party plugin)"));
icons.put("/extraidetweaks/icons/toolWindowOpenEditors.svg", of("extratci/icons/custom/toolWindowProject.svg", "Extra IDE Tweaks Open Editors tool window (3rd party plugin)"));

boolean useNewUI = switch (SettingsService.getInstance().getUiTypeIconsPreference()) {
case BASED_ON_ACTIVE_UI_TYPE -> UIUtils.isNewUIEnabled();
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/plugin.xml
Expand Up @@ -6,7 +6,7 @@

<description><![CDATA[
Makes tool window icons colorful. This plugin is based on the ToolWindow Colorful Icons plugin, and adds some icons. You can also choose icons to (de)activate: see <i>Settings &gt; Appearance &amp; Behavior &gt; Extra ToolWindow Colorful Icons</i>.<br/>
If you find this plugin helpful, you can <a href="https://buymeacoff.ee/jlermitage">buy me a coffee</a> or invest in a license for <a href="https://plugins.jetbrains.com/plugin/11058-extra-icons">Extra Icons</a> plugin, which allows you to change almost every icon in your IDE, and comes with 500+ icons for popular files, git submodules support, and more. <b>Thank you! 馃憤</b><br/>
If you find this plugin helpful, you can <a href="https://buymeacoff.ee/jlermitage">buy me a coffee</a> or invest in a license for <a href="https://plugins.jetbrains.com/plugin/11058-extra-icons">Extra Icons</a> plugin, which allows you to change almost every icon in your IDE, and comes with 500+ icons for popular files, git submodules support, and more, or my new plugin <a href="https://plugins.jetbrains.com/plugin/23927-extra-ide-tweaks">Extra IDE Tweaks</a>. <b>Thank you! 馃憤</b><br/>
Check also my other <a href="https://plugins.jetbrains.com/author/ed9cc7eb-74f5-46c1-b0df-67162fe1a1c5">plugins</a>.
<br>
<br>
Expand Down

0 comments on commit a62b4bb

Please sign in to comment.