1
0
mirror of https://github.com/chylex/IntelliJ-Colored-Icons.git synced 2025-09-15 17:32:11 +02:00

Compare commits

...

27 Commits

Author SHA1 Message Date
1981397184 Release version 1.6.0 2024-07-14 18:24:17 +02:00
402d38da7b Add dependency on the Classic UI plugin starting from 2024.2 2024-07-13 16:27:57 +02:00
435dbd2d84 Release version 1.5.1 2023-12-13 10:07:01 +01:00
277ef4a835 Fix crash when New UI status is not yet initialized 2023-12-13 10:06:37 +01:00
7f2b2e419d Release version 1.5 2023-12-11 17:49:10 +01:00
5985b5a79b Fix missing tool window icons 2023-12-11 17:45:30 +01:00
af1302b0d2 Fix icon grabber skipping fixed size icons 2023-12-11 17:22:44 +01:00
cc5a82eead Add task to delete finished icons from the extracted folder 2023-12-11 13:32:58 +01:00
735e38f6b5 Update to IntelliJ 2023.3 and use language plugins instead of whole IDEs 2023-12-11 13:07:58 +01:00
dc0d979afc Split code for new and old UI 2023-12-11 12:31:06 +01:00
91046d21c5 Update Rider download to 2023.3-SNAPSHOT 2023-08-11 13:17:09 +02:00
f2cf886dae Add support for grabbing icons from new UI 2023-08-11 13:17:09 +02:00
d7e344e45e Skip trying to grab icons from plugins installed in project folder if it never ran 2023-08-11 13:17:08 +02:00
998cdf1149 Update icon grabber to search new Toolbox installation folders 2023-08-11 13:17:08 +02:00
43228be8aa Set minimum IDEA version to 2023.2 2023-08-11 13:17:08 +02:00
ddfdf1f477 Update Gradle wrapper to 7.6.2 2023-08-11 10:35:51 +02:00
f363fce8f3 Update Gradle and Java version 2023-03-16 17:10:25 +01:00
a4908c2da9 Update README 2023-01-10 08:46:44 +01:00
e05b0148e3 Fix exception when New UI is enabled
Closes #1
2023-01-10 08:41:49 +01:00
43b8f4c648 Release version 1.4 2022-07-20 22:32:31 +02:00
301f57a11d Fix wrong colors & relative coordinates 2022-07-20 22:24:12 +02:00
4e6dbfe1da Add color validation to FixSVGs helper 2022-07-20 22:16:09 +02:00
00397e9865 Add new tool window icons 2022-07-20 22:01:22 +02:00
5fd780f7d7 Fix not grabbing icons from IntelliJ IDEA Ultimate plugins 2022-07-20 21:12:09 +02:00
519192df11 Show more detailed statistics when grabbing icons 2022-07-20 19:20:58 +02:00
0c96d93d0e Add helper for grabbing icons from downloaded IDEs & installed plugins via Gradle, and support nested JAR/ZIP files 2022-07-20 17:37:33 +02:00
223bbaede5 Update build.gradle.kts and project files & reformat 2022-07-20 12:37:36 +02:00
70 changed files with 1247 additions and 605 deletions

16
.gitignore vendored
View File

@@ -1,16 +1,6 @@
/.idea/$CACHE_FILE$
/.idea/compiler.xml
/.idea/dictionaries
/.idea/gradle.xml
/.idea/inspectionProfiles
/.idea/jarRepositories.xml
/.idea/libraries
/.idea/misc.xml
/.idea/modules
/.idea/modules.xml
/.idea/uiDesigner.xml
/.idea/*.iml
/.idea/.name
/.idea/*
!/.idea/runConfigurations
!/.idea/encodings.xml
/.gradle/
/build/

View File

@@ -1,6 +1,12 @@
<component name="ProjectCodeStyleConfiguration">
<code_scheme name="Project" version="173">
<option name="AUTODETECT_INDENTS" value="false" />
<option name="OTHER_INDENT_OPTIONS">
<value>
<option name="INDENT_SIZE" value="2" />
<option name="TAB_SIZE" value="2" />
</value>
</option>
<option name="LINE_SEPARATOR" value="&#10;" />
<option name="RIGHT_MARGIN" value="999" />
<option name="FORMATTER_TAGS_ENABLED" value="true" />
@@ -21,8 +27,7 @@
</option>
</JavaCodeStyleSettings>
<XML>
<option name="XML_ATTRIBUTE_WRAP" value="0" />
<option name="XML_TEXT_WRAP" value="0" />
<option name="XML_SPACE_INSIDE_EMPTY_TAG" value="true" />
</XML>
<codeStyleSettings language="JAVA">
<option name="RIGHT_MARGIN" value="999" />
@@ -31,28 +36,7 @@
<option name="ELSE_ON_NEW_LINE" value="true" />
<option name="SPACE_WITHIN_ARRAY_INITIALIZER_BRACES" value="true" />
<option name="SPACE_AFTER_TYPE_CAST" value="false" />
<option name="SPACE_BEFORE_WHILE_PARENTHESES" value="false" />
<option name="SPACE_BEFORE_FOR_PARENTHESES" value="false" />
<option name="SPACE_BEFORE_TRY_PARENTHESES" value="false" />
<option name="SPACE_BEFORE_CATCH_PARENTHESES" value="false" />
<option name="SPACE_BEFORE_SWITCH_PARENTHESES" value="false" />
<option name="SPACE_BEFORE_SYNCHRONIZED_PARENTHESES" value="false" />
<option name="SPACE_BEFORE_CLASS_LBRACE" value="false" />
<option name="SPACE_BEFORE_METHOD_LBRACE" value="false" />
<option name="SPACE_BEFORE_IF_LBRACE" value="false" />
<option name="SPACE_BEFORE_ELSE_LBRACE" value="false" />
<option name="SPACE_BEFORE_WHILE_LBRACE" value="false" />
<option name="SPACE_BEFORE_FOR_LBRACE" value="false" />
<option name="SPACE_BEFORE_DO_LBRACE" value="false" />
<option name="SPACE_BEFORE_SWITCH_LBRACE" value="false" />
<option name="SPACE_BEFORE_TRY_LBRACE" value="false" />
<option name="SPACE_BEFORE_CATCH_LBRACE" value="false" />
<option name="SPACE_BEFORE_FINALLY_LBRACE" value="false" />
<option name="SPACE_BEFORE_SYNCHRONIZED_LBRACE" value="false" />
<option name="SPACE_BEFORE_ELSE_KEYWORD" value="false" />
<option name="SPACE_BEFORE_WHILE_KEYWORD" value="false" />
<option name="SPACE_BEFORE_CATCH_KEYWORD" value="false" />
<option name="SPACE_BEFORE_FINALLY_KEYWORD" value="false" />
<option name="KEEP_SIMPLE_METHODS_IN_ONE_LINE" value="true" />
<option name="KEEP_SIMPLE_LAMBDAS_IN_ONE_LINE" value="true" />
<option name="KEEP_SIMPLE_CLASSES_IN_ONE_LINE" value="true" />
@@ -75,5 +59,21 @@
<option name="KEEP_INDENTS_ON_EMPTY_LINES" value="true" />
</indentOptions>
</codeStyleSettings>
<codeStyleSettings language="kotlin">
<option name="CODE_STYLE_DEFAULTS" value="KOTLIN_OFFICIAL" />
<option name="LINE_COMMENT_AT_FIRST_COLUMN" value="false" />
<option name="BLOCK_COMMENT_AT_FIRST_COLUMN" value="false" />
<option name="LINE_COMMENT_ADD_SPACE" value="true" />
<option name="ELSE_ON_NEW_LINE" value="true" />
<option name="METHOD_ANNOTATION_WRAP" value="0" />
<option name="CLASS_ANNOTATION_WRAP" value="0" />
<option name="FIELD_ANNOTATION_WRAP" value="0" />
<indentOptions>
<option name="CONTINUATION_INDENT_SIZE" value="4" />
<option name="USE_TAB_CHARACTER" value="true" />
<option name="SMART_TABS" value="true" />
<option name="KEEP_INDENTS_ON_EMPTY_LINES" value="true" />
</indentOptions>
</codeStyleSettings>
</code_scheme>
</component>

View File

@@ -0,0 +1,24 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Delete Finished Icons" type="GradleRunConfiguration" factoryName="Gradle">
<ExternalSystemSettings>
<option name="executionName" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="externalSystemIdString" value="GRADLE" />
<option name="scriptParameters" value="" />
<option name="taskDescriptions">
<list />
</option>
<option name="taskNames">
<list>
<option value="deleteFinishedIcons" />
</list>
</option>
<option name="vmOptions" />
</ExternalSystemSettings>
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
<DebugAllEnabled>false</DebugAllEnabled>
<RunAsTest>false</RunAsTest>
<method v="2" />
</configuration>
</component>

View File

@@ -1,10 +0,0 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="FixSVGs" type="Application" factoryName="Application" nameIsGenerated="true">
<option name="MAIN_CLASS_NAME" value="com.chylex.intellij.coloredicons.FixSVGs" />
<module name="ColoredIcons.helpers" />
<shortenClasspath name="MANIFEST" />
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
</component>

23
.idea/runConfigurations/Fix_SVGs.xml generated Normal file
View File

@@ -0,0 +1,23 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Fix SVGs" type="GradleRunConfiguration" factoryName="Gradle">
<ExternalSystemSettings>
<option name="executionName" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="externalSystemIdString" value="GRADLE" />
<option name="scriptParameters" value="" />
<option name="taskDescriptions">
<list />
</option>
<option name="taskNames">
<list>
<option value="fixSVGs" />
</list>
</option>
<option name="vmOptions" />
</ExternalSystemSettings>
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
<DebugAllEnabled>false</DebugAllEnabled>
<method v="2" />
</configuration>
</component>

View File

@@ -1,10 +0,0 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="GrabIconsFromInstalledIDEs" type="Application" factoryName="Application" nameIsGenerated="true">
<option name="MAIN_CLASS_NAME" value="com.chylex.intellij.coloredicons.GrabIconsFromInstalledIDEs" />
<module name="ColoredIcons.helpers" />
<shortenClasspath name="MANIFEST" />
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
</component>

View File

@@ -0,0 +1,23 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Grab Icons from Gradle" type="GradleRunConfiguration" factoryName="Gradle">
<ExternalSystemSettings>
<option name="executionName" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="externalSystemIdString" value="GRADLE" />
<option name="scriptParameters" value="" />
<option name="taskDescriptions">
<list />
</option>
<option name="taskNames">
<list>
<option value="grabIconsFromGradle" />
</list>
</option>
<option name="vmOptions" value="-DdownloadExtraIDEs=true" />
</ExternalSystemSettings>
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
<DebugAllEnabled>false</DebugAllEnabled>
<method v="2" />
</configuration>
</component>

View File

@@ -0,0 +1,23 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Grab Icons from Installed IDEs" type="GradleRunConfiguration" factoryName="Gradle">
<ExternalSystemSettings>
<option name="executionName" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="externalSystemIdString" value="GRADLE" />
<option name="scriptParameters" value="" />
<option name="taskDescriptions">
<list />
</option>
<option name="taskNames">
<list>
<option value="grabIconsFromInstalledIDEs" />
</list>
</option>
<option name="vmOptions" />
</ExternalSystemSettings>
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
<DebugAllEnabled>false</DebugAllEnabled>
<method v="2" />
</configuration>
</component>

6
.idea/vcs.xml generated
View File

@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

View File

@@ -1,6 +1,6 @@
Adds color to many of the gray IntelliJ platform icons. Uses resources from https://github.com/JetBrains/intellij-community and some of the official IntelliJ platform plugins.
Adds color to over 300 gray IntelliJ icons. Uses resources from https://github.com/JetBrains/intellij-community and some of the official IntelliJ platform plugins.
First release includes 176 updated icons. It should be compatible with *most* IDEs based on the IntelliJ platform. Please report any issues in particular IDEs, and any icons you would like to see changed.
The plugin is intended to be compatible with all IDEs based on the IntelliJ platform. Please report any issues in particular IDEs, and any icons you would like to see changed. Note that "New UI" is not supported.
![Example IDE elements](https://github.com/chylex/IntelliJ-Colored-Icons/blob/master/.github/readme/elements.png)
@@ -31,4 +31,3 @@ Note that the Project tool window is supposed to be purple, but it doesn't work
* ![Yellow](https://placehold.it/15/F0A732/000000?text=+) **Editing / Hints** (Edit Source, Intention Bulb, Find In Selection)
* ![Blue](https://placehold.it/15/3592C4/000000?text=+) **Movement / Layout** (Filter, Sort, Split, Expand, Collapse, Refresh)
* ![Purple](https://placehold.it/15/B066B0/000000?text=+) **Special** (Save, Print, Download, Upload, Import, Export, Pin)

View File

@@ -1,23 +1,50 @@
import java.io.FileFilter
plugins {
java
idea
id("org.jetbrains.intellij") version "1.2.0"
id("org.jetbrains.intellij") version "1.15.0"
}
group = "com.chylex.intellij.coloredicons"
version = "1.3"
version = "1.6.0"
repositories {
mavenCentral()
maven("https://www.jetbrains.com/intellij-repository/releases/")
maven("https://www.jetbrains.com/intellij-repository/snapshots/")
}
intellij {
version.set("2021.2.2")
type.set("IU")
version.set("242.20224-EAP-CANDIDATE-SNAPSHOT")
updateSinceUntilBuild.set(false)
plugins.set(listOf(
"com.intellij.classic.ui:242.20224.22", // https://plugins.jetbrains.com/plugin/24468-classic-ui/versions
"com.jetbrains.php:242.20224.44", // https://plugins.jetbrains.com/plugin/6610-php/versions
"com.jetbrains.rust:242.1", // https://plugins.jetbrains.com/plugin/22407-rust/versions
"org.intellij.scala:2024.2.11", // https://plugins.jetbrains.com/plugin/1347-scala/versions
"org.jetbrains.plugins.go:242.20224.38", // https://plugins.jetbrains.com/plugin/9568-go/versions
"org.jetbrains.plugins.ruby:242.20224.38", // https://plugins.jetbrains.com/plugin/1293-ruby/versions
"PythonCore:242.20224.38", // https://plugins.jetbrains.com/plugin/7322-python-community-edition/versions
"Pythonid:242.20224.38", // https://plugins.jetbrains.com/plugin/631-python/versions
))
}
tasks.patchPluginXml {
sinceBuild.set("242")
}
tasks.buildSearchableOptions {
enabled = false
}
configurations {
create("ides")
}
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(11))
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
}
sourceSets {
@@ -34,5 +61,38 @@ sourceSets {
dependencies {
"helpersImplementation"("commons-io:commons-io:2.11.0")
"helpersImplementation"("org.apache.commons:commons-compress:1.21")
if (System.getProperty("downloadExtraIDEs", "") == "true") {
"ides"("com.jetbrains.intellij.idea:ideaIU:2023.3")
"ides"("com.jetbrains.intellij.clion:clion:2023.3")
"ides"("com.jetbrains.intellij.rider:riderRD:2023.3")
}
}
fun createHelperTask(name: String, main: String, configure: ((JavaExec) -> Unit)? = null) {
tasks.create(name, JavaExec::class.java) {
group = "helpers"
mainClass.set("com.chylex.intellij.coloredicons.$main")
classpath = sourceSets.getByName("helpers").runtimeClasspath
configure?.invoke(this)
}
}
fun getClassPathFolders(configuration: Configuration): List<String> {
return configuration.files.map(File::getParentFile).distinct().map(File::getAbsolutePath)
}
createHelperTask("fixSVGs", main = "FixSVGs")
createHelperTask("deleteFinishedIcons", main = "DeleteFinishedIcons")
createHelperTask("grabIconsFromInstalledIDEs", main = "GrabIcons\$FromInstalledIDEs")
createHelperTask("grabIconsFromGradle", main = "GrabIcons\$FromArgumentPaths") { task ->
val ideLibraries = getClassPathFolders(project.configurations.getByName("ides"))
val downloadedPlugins = File(buildDir, "idea-sandbox/plugins").listFiles(FileFilter { it.isDirectory && it.name != rootProject.name })
if (downloadedPlugins != null) {
task.args = ideLibraries + downloadedPlugins.map(File::getAbsolutePath)
}
else {
task.args = ideLibraries
}
}

Binary file not shown.

View File

@@ -1,5 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.2-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

285
gradlew vendored
View File

@@ -1,7 +1,7 @@
#!/usr/bin/env sh
#!/bin/sh
#
# Copyright 2015 the original author or authors.
# Copyright © 2015-2021 the original authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -17,67 +17,101 @@
#
##############################################################################
##
## Gradle start up script for UN*X
##
#
# Gradle start up script for POSIX generated by Gradle.
#
# Important for running:
#
# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
# noncompliant, but you have some other compliant shell such as ksh or
# bash, then to run this script, type that shell name before the whole
# command line, like:
#
# ksh Gradle
#
# Busybox and similar reduced shells will NOT work, because this script
# requires all of these POSIX shell features:
# * functions;
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
# * compound commands having a testable exit status, especially «case»;
# * various built-in commands including «command», «set», and «ulimit».
#
# Important for patching:
#
# (2) This script targets any POSIX shell, so it avoids extensions provided
# by Bash, Ksh, etc; in particular arrays are avoided.
#
# The "traditional" practice of packing multiple parameters into a
# space-separated string is a well documented source of bugs and security
# problems, so this is (mostly) avoided, by progressively accumulating
# options in "$@", and eventually passing that to Java.
#
# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
# see the in-line comments for details.
#
# There are tweaks for specific operating systems such as AIX, CygWin,
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
#
##############################################################################
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG=`dirname "$PRG"`"/$link"
fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >/dev/null
APP_HOME="`pwd -P`"
cd "$SAVED" >/dev/null
APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`
# Resolve links: $0 may be a link
app_path=$0
# Need this for daisy-chained symlinks.
while
APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
[ -h "$app_path" ]
do
ls=$( ls -ld "$app_path" )
link=${ls#*' -> '}
case $link in #(
/*) app_path=$link ;; #(
*) app_path=$APP_HOME$link ;;
esac
done
# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"
MAX_FD=maximum
warn () {
echo "$*"
}
} >&2
die () {
echo
echo "$*"
echo
exit 1
}
} >&2
# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
case "`uname`" in
CYGWIN* )
cygwin=true
;;
Darwin* )
darwin=true
;;
MSYS* | MINGW* )
msys=true
;;
NONSTOP* )
nonstop=true
;;
case "$( uname )" in #(
CYGWIN* ) cygwin=true ;; #(
Darwin* ) darwin=true ;; #(
MSYS* | MINGW* ) msys=true ;; #(
NONSTOP* ) nonstop=true ;;
esac
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
@@ -87,9 +121,9 @@ CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
JAVACMD="$JAVA_HOME/jre/sh/java"
JAVACMD=$JAVA_HOME/jre/sh/java
else
JAVACMD="$JAVA_HOME/bin/java"
JAVACMD=$JAVA_HOME/bin/java
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
@@ -98,7 +132,7 @@ Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
JAVACMD="java"
JAVACMD=java
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
@@ -106,80 +140,105 @@ location of your Java installation."
fi
# Increase the maximum file descriptors if we can.
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
MAX_FD_LIMIT=`ulimit -H -n`
if [ $? -eq 0 ] ; then
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
MAX_FD="$MAX_FD_LIMIT"
fi
ulimit -n $MAX_FD
if [ $? -ne 0 ] ; then
warn "Could not set maximum file descriptor limit: $MAX_FD"
fi
else
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
fi
fi
# For Darwin, add options to specify how the application appears in the dock
if $darwin; then
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
fi
# For Cygwin or MSYS, switch paths to Windows format before running java
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
JAVACMD=`cygpath --unix "$JAVACMD"`
# We build the pattern for arguments to be converted via cygpath
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
SEP=""
for dir in $ROOTDIRSRAW ; do
ROOTDIRS="$ROOTDIRS$SEP$dir"
SEP="|"
done
OURCYGPATTERN="(^($ROOTDIRS))"
# Add a user-defined pattern to the cygpath arguments
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
fi
# Now convert the arguments - kludge to limit ourselves to /bin/sh
i=0
for arg in "$@" ; do
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
else
eval `echo args$i`="\"$arg\""
fi
i=`expr $i + 1`
done
case $i in
0) set -- ;;
1) set -- "$args0" ;;
2) set -- "$args0" "$args1" ;;
3) set -- "$args0" "$args1" "$args2" ;;
4) set -- "$args0" "$args1" "$args2" "$args3" ;;
5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #(
max*)
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
case $MAX_FD in #(
'' | soft) :;; #(
*)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
fi
# Escape application args
save () {
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " "
}
APP_ARGS=`save "$@"`
# Collect all arguments for the java command, stacking in reverse order:
# * args from the command line
# * the main class name
# * -classpath
# * -D...appname settings
# * --module-path (only if needed)
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
# Collect all arguments for the java command, following the shell quoting and substitution rules
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
# For Cygwin or MSYS, switch paths to Windows format before running java
if "$cygwin" || "$msys" ; then
APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
JAVACMD=$( cygpath --unix "$JAVACMD" )
# Now convert the arguments - kludge to limit ourselves to /bin/sh
for arg do
if
case $arg in #(
-*) false ;; # don't mess with options #(
/?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
[ -e "$t" ] ;; #(
*) false ;;
esac
then
arg=$( cygpath --path --ignore --mixed "$arg" )
fi
# Roll the args list around exactly as many times as the number of
# args, so each arg winds up back in the position where it started, but
# possibly modified.
#
# NB: a `for` loop captures its iteration list before it begins, so
# changing the positional parameters here affects neither the number of
# iterations, nor the values presented in `arg`.
shift # remove old arg
set -- "$@" "$arg" # push replacement arg
done
fi
# Collect all arguments for the java command;
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
# shell script including quotes and variable substitutions, so put them in
# double quotes to make sure that they get re-expanded; and
# * put everything else in single quotes, so that it's not re-expanded.
set -- \
"-Dorg.gradle.appname=$APP_BASE_NAME" \
-classpath "$CLASSPATH" \
org.gradle.wrapper.GradleWrapperMain \
"$@"
# Stop when "xargs" is not available.
if ! command -v xargs >/dev/null 2>&1
then
die "xargs is not available"
fi
# Use "xargs" to parse quoted args.
#
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
#
# In Bash we could simply go:
#
# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
# set -- "${ARGS[@]}" "$@"
#
# but POSIX shell has neither arrays nor command substitution, so instead we
# post-process each arg (as a line of input to sed) to backslash-escape any
# character that might be a shell metacharacter, then use eval to reverse
# that process (while maintaining the separation between arguments), and wrap
# the whole thing up as a single "set" statement.
#
# This will of course break if any of these variables contains a newline or
# an unmatched quote.
#
eval "set -- $(
printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
xargs -n1 |
sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
tr '\n' ' '
)" '"$@"'
exec "$JAVACMD" "$@"

15
gradlew.bat vendored
View File

@@ -14,7 +14,7 @@
@rem limitations under the License.
@rem
@if "%DEBUG%" == "" @echo off
@if "%DEBUG%"=="" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@@ -25,7 +25,8 @@
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
if "%DIRNAME%"=="" set DIRNAME=.
@rem This is normally unused
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@@ -40,7 +41,7 @@ if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto execute
if %ERRORLEVEL% equ 0 goto execute
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
@@ -75,13 +76,15 @@ set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
if %ERRORLEVEL% equ 0 goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
set EXIT_CODE=%ERRORLEVEL%
if %EXIT_CODE% equ 0 set EXIT_CODE=1
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
exit /b %EXIT_CODE%
:mainEnd
if "%OS%"=="Windows_NT" endlocal

View File

@@ -0,0 +1,50 @@
package com.chylex.intellij.coloredicons;
import org.apache.commons.io.FileUtils;
import java.io.File;
import java.nio.file.Path;
import java.util.Collection;
import java.util.Set;
import static java.util.stream.Collectors.toSet;
public final class DeleteFinishedIcons {
@SuppressWarnings("ResultOfMethodCallIgnored")
public static void main(final String[] args) {
final Path extractedRootPath = Path.of("./extracted");
final Path finishedRootPath = Path.of("./resources/icons");
final Collection<File> extractedFiles = FileUtils.listFiles(extractedRootPath.toFile(), null, true);
final Collection<File> finishedFiles = FileUtils.listFiles(finishedRootPath.toFile(), null, true);
System.out.println("Extracted files: " + extractedFiles.size());
System.out.println("Finished files: " + finishedFiles.size());
final Set<String> finishedRelativePaths = finishedFiles.stream()
.map(file -> relativize(finishedRootPath, file))
.collect(toSet());
int deleted = 0;
for (final File extractedFile : extractedFiles) {
if (finishedRelativePaths.remove(relativize(extractedRootPath, extractedFile))) {
++deleted;
extractedFile.delete();
}
}
System.out.println("Deleted files: " + deleted);
if (!finishedRelativePaths.isEmpty()) {
System.out.println("Undeleted files: " + finishedRelativePaths.size());
System.out.println();
finishedRelativePaths.stream()
.sorted()
.forEachOrdered(undeletedPath -> System.out.println("Undeleted file: " + undeletedPath));
}
}
private static String relativize(final Path basePath, final File file) {
return basePath.relativize(file.toPath()).toString();
}
}

View File

@@ -8,10 +8,14 @@ import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.regex.Pattern;
import static java.util.Map.entry;
final class FixSVGs{
public static void main(final String[] args) throws IOException{
final class FixSVGs {
private static final File ICONS_FOLDER = new File("./resources/icons");
public static void main(final String[] args) throws IOException {
final Charset charset = StandardCharsets.UTF_8;
final String encoding = charset.name();
@@ -25,45 +29,103 @@ final class FixSVGs{
int changedFiles = 0;
for(final File file : FileUtils.listFiles(new File("./resources/icons"), new String[]{ "svg" }, true)){
for (final File file : FileUtils.listFiles(ICONS_FOLDER, new String[]{ "svg" }, true)) {
boolean hasChanged = false;
final List<String> lines = FileUtils.readLines(file, charset);
if (lines.get(0).startsWith("<?xml")){
if (lines.get(0).startsWith("<?xml")) {
lines.remove(0);
hasChanged = true;
}
if (lines.get(0).startsWith("<!DOCTYPE")){
if (lines.get(0).startsWith("<!DOCTYPE")) {
lines.remove(0);
hasChanged = true;
}
final String svg = lines.get(0);
if (!svgValidTags.contains(svg)){
if (!svgValidTags.contains(svg)) {
final String correctedTag = svgRemapping.keySet().stream().filter(svg::contains).findAny().map(svgRemapping::get).orElse(null);
if (correctedTag == null){
if (correctedTag == null) {
System.out.println("Error processing <svg> tag in file: " + file);
System.out.println(" " + svg);
continue;
}
else{
else {
lines.set(0, correctedTag);
hasChanged = true;
}
}
if (hasChanged){
if (hasChanged) {
++changedFiles;
System.out.println("Updated file: " + file);
}
printWarnings(lines, file);
FileUtils.writeLines(file, encoding, lines, "\n");
}
System.out.println("Total updated files: " + changedFiles);
}
private static final Pattern invalidColorDefinition = Pattern.compile("\\bfill:[^#]");
private static final Pattern hexColorDefinition = Pattern.compile("\\bfill:#([0-9a-f]{6});");
private static final Set<String> allowedLightColors = Set.of(
"b76db7",
"6e6e6e",
"59a869",
"eda200",
"389fd6",
"db5860"
);
private static final Set<String> allowedDarkColors = Set.of(
"afb1b3",
"b066b0",
"499c54",
"f0a732",
"3592c4",
"c75450"
);
private static final Set<String> skipColorCheck = Set.of(
"general/addJdk",
"modules/addExcludedRoot",
"toolbarDecorator/addClass",
"toolbarDecorator/addJira"
);
private static void printWarnings(final List<String> lines, final File file) {
final boolean isDark = file.getName().endsWith("_dark.svg");
final String relativeFilePath = ICONS_FOLDER.toPath().relativize(file.toPath()).toString().replace('\\', '/');
final String suffixlessFilePath = isDark ? relativeFilePath.replace("_dark.svg", "") : relativeFilePath.replace(".svg", "");
if (skipColorCheck.contains(suffixlessFilePath)) {
return;
}
final Set<String> validThemeColors = isDark ? allowedDarkColors : allowedLightColors;
for (final String line : lines) {
if (invalidColorDefinition.matcher(line).find()) {
System.out.println("Warning: Invalid color definition in file: " + relativeFilePath);
System.out.println("Line: " + line.trim());
}
hexColorDefinition.matcher(line).results().forEachOrdered(result -> {
final String color = result.group(1);
if (!validThemeColors.contains(color)) {
System.out.println("Warning: Invalid theme color in file: " + relativeFilePath);
System.out.println("Line: " + line.trim());
}
});
}
}
}

View File

@@ -0,0 +1,359 @@
package com.chylex.intellij.coloredicons;
import org.apache.commons.io.FileUtils;
import org.apache.commons.io.FilenameUtils;
import org.apache.commons.io.IOUtils;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;
import java.nio.file.attribute.BasicFileAttributes;
import java.util.Arrays;
import java.util.List;
import java.util.Locale;
import java.util.Objects;
import java.util.Optional;
import java.util.function.Predicate;
import java.util.stream.Stream;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
abstract class GrabIcons {
private static final List<String> EXPECTED_OLD_UI_VIEW_BOXES_LOWERCASE = List.of(
"viewbox=\"0 0 12 12\"",
"viewbox=\"0 0 13 13\"",
"viewbox=\"0 0 16 16\"",
"width=\"12\" height=\"12\"",
"width=\"13\" height=\"13\"",
"width=\"16\" height=\"16\""
);
private static final List<String> EXPECTED_OLD_UI_COLORS_LOWERCASE = List.of(
"#afb1b3",
"#6e6e6e"
);
private static final List<String> EXPECTED_NEW_UI_VIEW_BOXES_LOWERCASE = List.of(
"viewbox=\"0 0 14 14\"",
"viewbox=\"0 0 16 16\"",
"viewbox=\"0 0 20 20\"",
"width=\"14\" height=\"14\"",
"width=\"16\" height=\"16\"",
"width=\"20\" height=\"20\""
);
private static final List<String> EXPECTED_NEW_UI_COLORS_LOWERCASE = List.of(
"#6c707e",
"#ced0d6"
);
private static final boolean FLATTEN_ARCHIVE_PATHS = true;
private static final boolean FLATTEN_SVG_PATHS = false;
private static final class ArchiveExtractionStats {
int foundSVGs = 0;
int uniqueSVGs = 0;
void sumWith(final ArchiveExtractionStats other) {
foundSVGs += other.foundSVGs;
uniqueSVGs += other.uniqueSVGs;
}
}
protected final void run() throws IOException {
final Stream<Path> libAndPluginFolders = findLibAndPluginFolders();
if (libAndPluginFolders == null) {
return;
}
final Path[] foundArchives = libAndPluginFolders
.flatMap(GrabIcons::getJarAndZipFiles)
.sorted()
.toArray(Path[]::new);
System.out.println("Total JAR and ZIP files found: " + foundArchives.length);
if (foundArchives.length == 0) {
return;
}
final Path extractionRootPath = new File("./extracted").toPath();
if (Files.exists(extractionRootPath)) {
FileUtils.cleanDirectory(extractionRootPath.toFile());
}
else {
Files.createDirectory(extractionRootPath);
}
extractSVGsFromArchives(foundArchives, extractionRootPath);
System.out.println("Done!");
}
protected abstract Stream<Path> findLibAndPluginFolders();
private static Stream<Path> getJarAndZipFiles(final Path parentFolder) {
System.out.println("Collecting JAR and ZIP files from: " + parentFolder);
try {
return Files.find(parentFolder, Integer.MAX_VALUE, GrabIcons::isJarOrZipFile);
} catch (final IOException e) {
e.printStackTrace();
return Stream.empty();
}
}
private static boolean isJarOrZipFile(final Path path, final BasicFileAttributes attr) {
if (!Files.isRegularFile(path)) {
return false;
}
final String name = getFileNameLowerCase(path);
return name.endsWith(".jar") || name.endsWith(".zip");
}
private static String getFileNameLowerCase(final Path path) {
return path.getFileName().toString().toLowerCase(Locale.ROOT);
}
private static void extractSVGsFromArchives(final Path[] foundArchives, final Path extractionRootPath) throws IOException {
final Path commonParent = findCommonParent(foundArchives);
for (final Path archiveFile : foundArchives) {
final Path extractionArchiveBasePath = FLATTEN_ARCHIVE_PATHS ? extractionRootPath : extractionRootPath.resolve(archiveFile.getFileName());
try (final ZipInputStream inputStream = new ZipInputStream(new FileInputStream(archiveFile.toFile()))) {
final Path relativeArchivePath = commonParent == null ? archiveFile : commonParent.relativize(archiveFile);
try {
extractSVGsFromArchiveStream(extractionArchiveBasePath, relativeArchivePath.toString().replace('\\', '/'), inputStream);
} catch (final Exception e) {
System.out.println("Failed to extract SVGs from archive: " + archiveFile);
}
}
}
}
private static Path findCommonParent(final Path[] paths) {
return Arrays.stream(paths)
.map(Optional::of)
.reduce(GrabIcons::findCommonParent)
.orElseGet(Optional::empty)
.orElse(null);
}
@SuppressWarnings("OptionalUsedAsFieldOrParameterType")
private static Optional<Path> findCommonParent(final Optional<Path> a, final Optional<Path> b) {
if (a.isEmpty() || b.isEmpty()) {
return Optional.empty();
}
final Path other = b.get().normalize();
return Stream.iterate(a.get().normalize(), Objects::nonNull, Path::getParent)
.filter(parent -> Stream.iterate(other, Objects::nonNull, Path::getParent).anyMatch(Predicate.isEqual(parent)))
.findFirst();
}
@SuppressWarnings({ "NestedAssignment", "AutoBoxing" })
private static void extractSVGsFromArchiveStream(final Path extractionBasePath, final String archiveName, final ZipInputStream inputStream) throws IOException {
final ArchiveExtractionStats stats = new ArchiveExtractionStats();
ZipEntry entry;
while ((entry = inputStream.getNextEntry()) != null) {
stats.sumWith(extractSVGsFromArchiveEntry(extractionBasePath, archiveName, inputStream, entry));
}
if (stats.foundSVGs > 0) {
final String foundStr = String.format("%4d", stats.foundSVGs);
final String uniqueStr = String.format("%4d", stats.uniqueSVGs);
System.out.println("Found " + uniqueStr + " new, " + foundStr + " total SVG(s) in: " + archiveName);
}
}
private static ArchiveExtractionStats extractSVGsFromArchiveEntry(final Path basePath, final String archiveName, final ZipInputStream parentInputStream, final ZipEntry entry) throws IOException {
final ArchiveExtractionStats stats = new ArchiveExtractionStats();
if (entry.isDirectory()) {
return stats;
}
final String entryName = entry.getName();
final String entryNameLowerCase = entryName.toLowerCase(Locale.ROOT);
if (entryNameLowerCase.endsWith(".jar") || entryNameLowerCase.endsWith(".zip")) {
final String nestedArchiveName = archiveName + '/' + entryName;
try {
extractSVGsFromArchiveStream(FLATTEN_ARCHIVE_PATHS ? basePath : getRelativePathForExtraction(basePath, entry), nestedArchiveName, new ZipInputStream(parentInputStream));
} catch (final Exception e) {
System.out.println("Failed to extract SVGs from nested archive: " + nestedArchiveName);
}
}
else if (entryNameLowerCase.endsWith(".svg")) {
extractSVG(parentInputStream, entry, getRelativePathForExtraction(basePath, entry), stats);
}
return stats;
}
private static Path getRelativePathForExtraction(final Path basePath, final ZipEntry entry) {
return basePath.resolve(FLATTEN_SVG_PATHS ? entry.getName().replace("/", "__") : entry.getName());
}
private static void extractSVG(final ZipInputStream inputStream, final ZipEntry entry, final Path basePath, final ArchiveExtractionStats stats) throws IOException {
final byte[] svgBytes = inputStream.readAllBytes();
final String svgText = new String(svgBytes, StandardCharsets.UTF_8);
if (!isValidSVG(svgText, EXPECTED_OLD_UI_VIEW_BOXES_LOWERCASE, EXPECTED_OLD_UI_COLORS_LOWERCASE) &&
!isValidSVG(svgText, EXPECTED_NEW_UI_VIEW_BOXES_LOWERCASE, EXPECTED_NEW_UI_COLORS_LOWERCASE)) {
return;
}
++stats.foundSVGs;
Path svgPath = basePath;
final Path svgParentFolder = svgPath.getParent();
final String originalFileName = svgPath.getFileName().toString();
int duplicateCounter = 0;
while (Files.exists(svgPath)) {
if (Files.size(svgPath) == entry.getSize() && IOUtils.contentEquals(new ByteArrayInputStream(svgBytes), Files.newInputStream(svgPath, StandardOpenOption.READ))) {
return;
}
svgPath = svgParentFolder.resolve(FilenameUtils.removeExtension(originalFileName) + '_' + (++duplicateCounter) + '.' + FilenameUtils.getExtension(originalFileName));
}
Files.createDirectories(svgParentFolder);
Files.write(svgPath, svgBytes);
Files.setLastModifiedTime(svgPath, entry.getLastModifiedTime());
++stats.uniqueSVGs;
}
private static boolean isValidSVG(final String svg, final List<String> expectedViewBoxes, final List<String> expectedColors) {
boolean hasExpectedViewBox = false;
boolean hasExpectedColor = false;
for (final String line : svg.lines().map(line -> line.toLowerCase(Locale.ROOT)).toArray(String[]::new)) {
if (expectedViewBoxes.stream().anyMatch(line::contains)) {
hasExpectedViewBox = true;
}
if (expectedColors.stream().anyMatch(line::contains)) {
hasExpectedColor = true;
}
if (hasExpectedViewBox && hasExpectedColor) {
return true;
}
}
return false;
}
public static final class FromArgumentPaths extends GrabIcons {
public static void main(final String[] args) throws IOException {
new FromArgumentPaths(args).run();
}
private final Path[] paths;
public FromArgumentPaths(final String[] paths) {
this.paths = Arrays.stream(paths).map(Path::of).toArray(Path[]::new);
}
@Override
protected Stream<Path> findLibAndPluginFolders() {
return Arrays.stream(paths);
}
}
@SuppressWarnings("CallToSystemGetenv")
public static final class FromInstalledIDEs extends GrabIcons {
public static void main(final String[] args) throws IOException {
new FromInstalledIDEs().run();
}
@Override
protected Stream<Path> findLibAndPluginFolders() {
return Stream.concat(findLibAndPluginFoldersFromOldToolbox(), findLibAndPluginFoldersFromNewToolbox()).filter(Files::isDirectory); // catches non-existent paths too
}
private static Stream<Path> findLibAndPluginFoldersFromOldToolbox() {
System.out.println("Searching in %LOCALAPPDATA%\\JetBrains\\Toolbox\\apps...");
final String localAppData = System.getenv("LOCALAPPDATA");
if (localAppData == null) {
System.out.println("Found nothing, %LOCALAPPDATA% does not exist.");
return Stream.of();
}
final Path toolboxAppsFolder = Paths.get(localAppData, "JetBrains", "Toolbox", "apps");
if (!Files.exists(toolboxAppsFolder)) {
System.out.println("Found nothing, old Toolbox installation folder does not exist.");
return Stream.of();
}
return listDirectories(toolboxAppsFolder)
.flatMap(FromInstalledIDEs::listDirectories)
.filter(child -> getFileNameLowerCase(child).startsWith("ch-"))
.flatMap(FromInstalledIDEs::listDirectories)
.flatMap(child -> {
final String name = getFileNameLowerCase(child);
if (name.contains(".remove-")) {
return Stream.empty();
}
else if (name.endsWith(".plugins")) {
return Stream.of(child);
}
else {
return Stream.of(child.resolve("lib"), child.resolve("plugins"));
}
});
}
private static Stream<Path> findLibAndPluginFoldersFromNewToolbox() {
System.out.println("Searching in %LOCALAPPDATA%\\Programs...");
final String localAppData = System.getenv("LOCALAPPDATA");
if (localAppData == null) {
System.out.println("Found nothing, %LOCALAPPDATA% does not exist.");
return Stream.of();
}
final Path programsFolder = Paths.get(localAppData, "Programs");
if (!Files.exists(programsFolder)) {
System.out.println("Found nothing, Programs folder does not exist.");
return Stream.of();
}
return listDirectories(programsFolder)
.filter(FromInstalledIDEs::matchesNewToolboxInstallation)
.flatMap(child -> Stream.of(child.resolve("lib"), child.resolve("plugins")));
}
private static boolean matchesNewToolboxInstallation(final Path path) {
return Files.exists(path.resolve("product-info.json")) && Files.isDirectory(path.resolve("jbr"));
}
private static Stream<Path> listDirectories(final Path parent) {
try {
return Files.list(parent).filter(Files::isDirectory);
} catch (final IOException e) {
e.printStackTrace();
return Stream.empty();
}
}
}
}

View File

@@ -1,194 +0,0 @@
package com.chylex.intellij.coloredicons;
import org.apache.commons.compress.archivers.zip.ZipArchiveEntry;
import org.apache.commons.compress.archivers.zip.ZipFile;
import org.apache.commons.io.FileUtils;
import org.apache.commons.io.FilenameUtils;
import org.apache.commons.io.IOUtils;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;
import java.util.Enumeration;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import static java.util.Comparator.comparing;
final class GrabIconsFromInstalledIDEs{
private static final List<String> EXPECTED_VIEW_BOXES_LOWERCASE = List.of(
"viewbox=\"0 0 12 12\"",
"viewbox=\"0 0 16 16\"",
"viewbox=\"0 0 13 13\""
);
private static final List<String> EXPECTED_COLORS_LOWERCASE = List.of(
"#afb1b3",
"#6e6e6e"
);
private static boolean FLATTEN = true;
public static void main(final String[] args) throws IOException{
@SuppressWarnings("CallToSystemGetenv")
final String localAppData = System.getenv("LOCALAPPDATA");
if (localAppData == null){
System.out.println("Missing %LOCALAPPDATA%, only Windows Vista or newer are supported.");
return;
}
final Path toolboxAppsFolder = Paths.get(localAppData, "JetBrains", "Toolbox", "apps");
if (!Files.exists(toolboxAppsFolder)){
System.out.println("Missing JetBrains Toolbox installation folder at: " + toolboxAppsFolder);
return;
}
final List<Path> foundJarFiles = list(toolboxAppsFolder)
.filter(Files::isDirectory)
.flatMap(GrabIconsFromInstalledIDEs::getAppChannelFolders)
.flatMap(GrabIconsFromInstalledIDEs::getLibAndPluginsFolders)
.flatMap(GrabIconsFromInstalledIDEs::getJarFiles)
.sorted(comparing(GrabIconsFromInstalledIDEs::getName))
.collect(Collectors.toList());
System.out.println("Total JAR files found: " + foundJarFiles.size());
final Path extractionRootPath = new File("./extracted").toPath();
if (Files.exists(extractionRootPath)){
FileUtils.cleanDirectory(extractionRootPath.toFile());
}
else{
Files.createDirectory(extractionRootPath);
}
int totalExtractedFiles = 0;
for(final Path jarFile : foundJarFiles){
final Path jarFileName = jarFile.getFileName();
final Path extractionJarPath = extractionRootPath.resolve(jarFileName);
int extractedFiles = 0;
try(final ZipFile zip = new ZipFile(jarFile.toFile())){
for(final Enumeration<ZipArchiveEntry> entries = zip.getEntries(); entries.hasMoreElements();){
final ZipArchiveEntry entry = entries.nextElement();
if (!entry.isDirectory()){
final String entryName = entry.getName();
if (entryName.toLowerCase(Locale.ROOT).endsWith(".svg") && extractFile(zip, entry, extractionJarPath.resolve(FLATTEN ? entryName.replace("/", "__") : entryName))){
++extractedFiles;
}
}
}
}
if (extractedFiles > 0){
totalExtractedFiles += extractedFiles;
System.out.println("Extracted SVGs from " + jarFileName + ": " + extractedFiles);
}
}
System.out.println("Total extracted SVGs: " + totalExtractedFiles);
}
private static Stream<Path> list(final Path parent){
try{
return Files.list(parent);
}catch(final IOException e){
e.printStackTrace();
return Stream.empty();
}
}
private static String getName(final Path path){
return path.getFileName().toString().toLowerCase(Locale.ROOT);
}
private static Stream<Path> getAppChannelFolders(final Path appFolder){
return list(appFolder).filter(Files::isDirectory).filter(child -> getName(child).startsWith("ch-"));
}
private static Stream<Path> getLibAndPluginsFolders(final Path channelFolder){
return list(channelFolder).filter(Files::isDirectory).flatMap(child -> {
final String name = getName(child);
if (name.contains(".remove-")){
return Stream.empty();
}
else if (name.endsWith(".plugins")){
return Stream.of(child);
}
else{
return Stream.of(child.resolve("lib"), child.resolve("plugins"));
}
}).filter(Files::isDirectory); // catches non-existent paths too
}
private static Stream<Path> getJarFiles(final Path parentFolder){
System.out.println("Collecting JAR files from: " + parentFolder);
try{
return Files.find(parentFolder, Integer.MAX_VALUE, (path, attr) -> Files.isRegularFile(path) && getName(path).endsWith(".jar"));
}catch(final IOException e){
e.printStackTrace();
return Stream.empty();
}
}
private static boolean extractFile(final ZipFile zip, final ZipArchiveEntry entry, final Path target) throws IOException{
if (!isValidSVG(zip.getInputStream(entry))){
return false;
}
Path svgPath = target;
final Path svgParentFolder = svgPath.getParent();
final String originalFileName = svgPath.getFileName().toString();
int duplicateCounter = 0;
while(Files.exists(svgPath)){
if (Files.size(svgPath) == entry.getSize() && IOUtils.contentEquals(zip.getInputStream(entry), Files.newInputStream(svgPath, StandardOpenOption.READ))){
return false;
}
svgPath = svgParentFolder.resolve(FilenameUtils.removeExtension(originalFileName) + '_' + (++duplicateCounter) + '.' + FilenameUtils.getExtension(originalFileName));
}
Files.createDirectories(svgParentFolder);
Files.copy(zip.getInputStream(entry), svgPath);
Files.setLastModifiedTime(svgPath, entry.getLastModifiedTime());
return true;
}
private static boolean isValidSVG(final InputStream fileStream) throws IOException{
boolean hasExpectedViewBox = false;
boolean hasExpectedColor = false;
for(final Iterator<String> lineIterator = IOUtils.lineIterator(fileStream, StandardCharsets.UTF_8); lineIterator.hasNext();){
final String line = lineIterator.next().toLowerCase(Locale.ROOT);
if (EXPECTED_VIEW_BOXES_LOWERCASE.stream().anyMatch(line::contains)){
hasExpectedViewBox = true;
}
if (EXPECTED_COLORS_LOWERCASE.stream().anyMatch(line::contains)){
hasExpectedColor = true;
}
if (hasExpectedViewBox && hasExpectedColor){
return true;
}
}
return false;
}
}

View File

@@ -1,7 +1,6 @@
<idea-plugin>
<id>com.chylex.intellij.coloredicons</id>
<name>Colored Icons</name>
<version>1.3</version>
<vendor email="contact@chylex.com" url="https://chylex.com">chylex</vendor>
<description>
@@ -10,6 +9,23 @@
</description>
<change-notes><![CDATA[
<b>Version 1.6.0</b>
<ul>
<li>Added dependency on the Classic UI plugin for 2024.2</li>
</ul>
<b>Version 1.5.1</b>
<ul>
<li>Fixed a random exception while loading the plugin</li>
</ul>
<b>Version 1.5</b>
<ul>
<li>Fixed tool window icons for 2023.3</li>
<li>Fixed exception when using the new UI</li>
</ul>
<b>Version 1.4</b>
<ul>
<li>Added tool window icons for Bookmarks, Notifications, Dependencies, Scala, and more</li>
</ul>
<b>Version 1.3</b>
<ul>
<li>Added new icons related to VCS, unit tests, source code presentation and navigation, and more</li>
@@ -33,8 +49,8 @@
</ul>
]]></change-notes>
<idea-version since-build="183.0"/>
<depends>com.intellij.modules.platform</depends>
<depends>com.intellij.classic.ui</depends>
<application-components>
<component>

View File

@@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<rect x="3" y="3" width="10" height="2" style="fill:#6e6e6e;"/>
<rect x="3" y="7" width="7" height="2" style="fill:#6e6e6e;"/>
<rect x="3" y="11" width="4" height="2" style="fill:#6e6e6e;"/>
<path d="M13,8l-2,0l0,3l-3,0l0,2l3,0l0,3l2,0l0,-3l3,0l0,-2l-3,0l0,-3Z" style="fill:#59a869;fill-rule:nonzero;"/>
</svg>

After

Width:  |  Height:  |  Size: 411 B

View File

@@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<rect x="3" y="3" width="10" height="2" style="fill:#afb1b3;"/>
<rect x="3" y="7" width="7" height="2" style="fill:#afb1b3;"/>
<rect x="3" y="11" width="4" height="2" style="fill:#afb1b3;"/>
<path d="M13,8l-2,0l0,3l-3,0l0,2l3,0l0,3l2,0l0,-3l3,0l0,-2l-3,0l0,-3Z" style="fill:#499c54;fill-rule:nonzero;"/>
</svg>

After

Width:  |  Height:  |  Size: 411 B

View File

@@ -1,6 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<g>
<rect x="0" y="0" width="16" height="16" style="fill:none;"/>
<g>
<rect x="2" y="3" width="11" height="2" style="fill:#6e6e6e;"/>
<rect x="2" y="7" width="6" height="2" style="fill:#6e6e6e;"/>

Before

Width:  |  Height:  |  Size: 659 B

After

Width:  |  Height:  |  Size: 589 B

View File

@@ -1,13 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<g>
<rect x="0" y="0" width="16" height="16" style="fill:none;"/>
<g>
<path d="M2,3l11,0l0,2l-11,0l0,-2Z" style="fill:#afb1b3;"/>
<path d="M2,7l6,0l0,2l-6,0l0,-2Z" style="fill:#afb1b3;"/>
<path d="M2,11l6,0l0,2l-6,0l0,-2Z" style="fill:#afb1b3;"/>
<path d="M12,8l1,0l0,6l-1,0l0,-6Z" style="fill:#f0a732;"/>
<path d="M10,7l5,0l0,1l-5,0l0,-1Z" style="fill:#f0a732;"/>
<path d="M10,14l5,0l0,1l-5,0l0,-1Z" style="fill:#f0a732;"/>
<rect x="2" y="3" width="11" height="2" style="fill:#afb1b3;fill-rule:nonzero;"/>
<rect x="2" y="7" width="6" height="2" style="fill:#afb1b3;fill-rule:nonzero;"/>
<rect x="2" y="11" width="6" height="2" style="fill:#afb1b3;fill-rule:nonzero;"/>
<rect x="12" y="8" width="1" height="6" style="fill:#f0a732;fill-rule:nonzero;"/>
<rect x="10" y="7" width="5" height="1" style="fill:#f0a732;fill-rule:nonzero;"/>
<rect x="10" y="14" width="5" height="1" style="fill:#f0a732;fill-rule:nonzero;"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 630 B

After

Width:  |  Height:  |  Size: 697 B

View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<g>
<path d="M6.5,0.375l6.125,3.403l-6.125,3.403l-6.125,-3.403l6.125,-3.403Zm4.9,5.444l1.225,0.681l-6.125,3.403l-6.125,-3.403l1.225,-0.681l4.9,2.723l4.9,-2.723Zm0,2.723l1.225,0.68l-6.125,3.403l-6.125,-3.403l1.225,-0.68l4.9,2.722l4.9,-2.722Z" style="fill:#b76db7;fill-rule:nonzero;"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 396 B

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<path d="M6.5,0.375l6.125,3.403l-6.125,3.403l-6.125,-3.403l6.125,-3.403Zm4.9,5.444l1.225,0.681l-6.125,3.403l-6.125,-3.403l1.225,-0.681l4.9,2.723l4.9,-2.723Zm0,2.723l1.225,0.68l-6.125,3.403l-6.125,-3.403l1.225,-0.68l4.9,2.722l4.9,-2.722Z" style="fill:#b066b0;fill-rule:nonzero;"/>
</svg>

After

Width:  |  Height:  |  Size: 375 B

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<path d="M6.5,0.375L12.625,3.778L6.5,7.181L0.375,3.778L6.5,0.375ZM11.4,5.819L12.625,6.5L6.5,9.903L0.375,6.5L1.6,5.819L6.5,8.542L11.4,5.819ZM11.4,8.542L12.625,9.222L6.5,12.625L0.375,9.222L1.6,8.542L6.5,11.264L11.4,8.542Z" style="fill:#389fd6;"/>
</svg>

After

Width:  |  Height:  |  Size: 340 B

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<path d="M6.5,0.375L12.625,3.778L6.5,7.181L0.375,3.778L6.5,0.375ZM11.4,5.819L12.625,6.5L6.5,9.903L0.375,6.5L1.6,5.819L6.5,8.542L11.4,5.819ZM11.4,8.542L12.625,9.222L6.5,12.625L0.375,9.222L1.6,8.542L6.5,11.264L11.4,8.542Z" style="fill:#3592c4;"/>
</svg>

After

Width:  |  Height:  |  Size: 340 B

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<path fill-rule="evenodd" clip-rule="evenodd" d="M12,1l-11,0l0,11l11,0l0,-11Zm-5,9l-5,0l0,1l5,0l0,-1Zm-3.279,-2l1.1,0l0,-1.993l1.922,-3.007l-1.25,0l-1.214,2.007l-1.193,-2.007l-1.286,0l1.921,3.029l0,1.971Zm5.9,0l-1.1,0l0,-3.986l-1.521,0l-0,-1.014l4.143,0l0,1.014l-1.522,0l0,3.986Z" style="fill:#389fd6;"/>
</svg>

After

Width:  |  Height:  |  Size: 400 B

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<path fill-rule="evenodd" clip-rule="evenodd" d="M12,1l-11,0l0,11l11,0l0,-11Zm-5,9l-5,0l0,1l5,0l0,-1Zm-3.279,-2l1.1,0l0,-1.993l1.922,-3.007l-1.25,0l-1.214,2.007l-1.193,-2.007l-1.286,0l1.921,3.029l0,1.971Zm5.9,0l-1.1,0l0,-3.986l-1.521,0l-0,-1.014l4.143,0l0,1.014l-1.522,0l0,3.986Z" style="fill:#3592c4;"/>
</svg>

After

Width:  |  Height:  |  Size: 400 B

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<path d="M2.443,6.769l3.857,2.16l-0,2.142l-3.856,-2.159l-0.001,-2.143Zm7.714,0l-0.001,2.143l-3.856,2.159l-0,-2.142l3.857,-2.16Zm-3.857,-5.469l6,3.171l-0,4.372l-1.029,0l-0,-3.799l-4.971,2.77l-6,-3.343l6,-3.171Z" style="fill:#389fd6;fill-rule:nonzero;"/>
</svg>

After

Width:  |  Height:  |  Size: 348 B

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<path d="M2.443,6.769l3.857,2.16l-0,2.142l-3.856,-2.159l-0.001,-2.143Zm7.714,0l-0.001,2.143l-3.856,2.159l-0,-2.142l3.857,-2.16Zm-3.857,-5.469l6,3.171l-0,4.372l-1.029,0l-0,-3.799l-4.971,2.77l-6,-3.343l6,-3.171Z" style="fill:#3592c4;fill-rule:nonzero;"/>
</svg>

After

Width:  |  Height:  |  Size: 348 B

View File

@@ -0,0 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<g>
<path d="M6,10l-4,0l0,-5l9,0l0,1l1,0l0,-4l-11,0l0,9l5,0l0,-1Z" style="fill:#6e6e6e;fill-rule:nonzero;"/>
<g transform="matrix(0.965926,0.258819,-0.258819,0.965926,2.7558,-2.1844)">
<path d="M9.674,6.374l2.598,1.5l0,3l-2.598,1.5l-2.598,-1.5l0,-3l2.598,-1.5Z" style="fill:#59a869;fill-rule:nonzero;"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 449 B

View File

@@ -0,0 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<g>
<path d="M6,10l-4,0l0,-5l9,0l0,1l1,0l0,-4l-11,0l0,9l5,0l0,-1Z" style="fill:#afb1b3;fill-rule:nonzero;"/>
<g transform="matrix(0.965926,0.258819,-0.258819,0.965926,2.7558,-2.1844)">
<path d="M9.674,6.374l2.598,1.5l0,3l-2.598,1.5l-2.598,-1.5l0,-3l2.598,-1.5Z" style="fill:#499c54;fill-rule:nonzero;"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 449 B

View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<g transform="matrix(0.965926,0.258819,-0.258819,0.965926,1.91002,-1.46002)">
<path d="M6.5,1.524l4.33,2.5l0,5l-4.33,2.5l-4.33,-2.5l0,-5l4.33,-2.5Z" style="fill:#db5860;fill-rule:nonzero;"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 303 B

View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<g transform="matrix(0.965926,0.258819,-0.258819,0.965926,1.91002,-1.46002)">
<path d="M6.5,1.524l4.33,2.5l0,5l-4.33,2.5l-4.33,-2.5l0,-5l4.33,-2.5Z" style="fill:#c75450;fill-rule:nonzero;"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 303 B

View File

@@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<path d="M5.687,3.25C3.459,3.25 1.625,5.084 1.625,7.312C1.625,9.54 3.459,11.374 5.687,11.374C7.915,11.374 9.749,9.54 9.749,7.312L8.937,7.312C8.937,9.095 7.47,10.562 5.687,10.562C3.904,10.562 2.437,9.095 2.437,7.312C2.437,5.529 3.904,4.062 5.687,4.062L5.687,3.25Z" style="fill:#59a869;"/>
<path d="M11.375,6.5C11.375,3.826 9.174,1.625 6.5,1.625L6.5,6.5L11.375,6.5Z" style="fill:#59a869;"/>
</svg>

After

Width:  |  Height:  |  Size: 488 B

View File

@@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<path d="M5.688,3.25C5.687,3.25 5.687,3.25 5.686,3.25C3.457,3.25 1.623,5.084 1.623,7.313C1.623,9.542 3.457,11.376 5.686,11.376C7.915,11.376 9.749,9.542 9.749,7.313C9.749,7.313 9.749,7.312 9.749,7.312L8.937,7.312C8.937,9.095 7.47,10.562 5.687,10.562C3.904,10.562 2.437,9.095 2.437,7.312C2.437,5.529 3.904,4.062 5.687,4.062L5.687,3.25L5.688,3.25Z" style="fill:#499c54;"/>
<path d="M11.375,6.5C11.375,3.826 9.174,1.625 6.5,1.625L6.5,6.5L11.375,6.5Z" style="fill:#499c54;"/>
</svg>

After

Width:  |  Height:  |  Size: 570 B

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 680 B

After

Width:  |  Height:  |  Size: 680 B

View File

Before

Width:  |  Height:  |  Size: 685 B

After

Width:  |  Height:  |  Size: 685 B

View File

Before

Width:  |  Height:  |  Size: 833 B

After

Width:  |  Height:  |  Size: 833 B

View File

Before

Width:  |  Height:  |  Size: 833 B

After

Width:  |  Height:  |  Size: 833 B

View File

Before

Width:  |  Height:  |  Size: 521 B

After

Width:  |  Height:  |  Size: 521 B

View File

Before

Width:  |  Height:  |  Size: 521 B

After

Width:  |  Height:  |  Size: 521 B

View File

Before

Width:  |  Height:  |  Size: 399 B

After

Width:  |  Height:  |  Size: 399 B

View File

Before

Width:  |  Height:  |  Size: 399 B

After

Width:  |  Height:  |  Size: 399 B

View File

@@ -1,7 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<g>
<rect x="0" y="0" width="13" height="13" style="fill:#ffe6ff;fill-opacity:0;"/>
<path d="M13,9.51c-0.005,1.916 -1.584,3.49 -3.5,3.49c-1.92,-0 -3.5,-1.58 -3.5,-3.5c0,-1.92 1.58,-3.5 3.5,-3.5c0.003,-0 0.007,-0 0.01,0c1.916,0.005 3.49,1.584 3.49,3.5c0,0.003 0,0.007 0,0.01Zm-1,0c0,-0.003 0,-0.007 0,-0.01c0,-1.369 -1.124,-2.496 -2.493,-2.5l-0.007,0l0,5c1.369,0 2.496,-1.124 2.5,-2.493l0,0.003Z" style="fill:#6e6e6e;fill-rule:nonzero;"/>
<path d="M13,9.51c-0.005,1.916 -1.584,3.49 -3.5,3.49c-1.92,0 -3.5,-1.58 -3.5,-3.5c0,-1.92 1.58,-3.5 3.5,-3.5l0.01,0c1.916,0.005 3.49,1.584 3.49,3.5l0,0.01Zm-1,0l0,-0.01c0,-1.369 -1.124,-2.496 -2.493,-2.5l-0.007,0l0,5c1.369,0 2.496,-1.124 2.5,-2.493l0,0.003Z" style="fill:#6e6e6e;fill-rule:nonzero;"/>
<path d="M5.226,10.84l-0.226,0.16c-2.41,-1.7 -5,-3.46 -5,-10c1.59,-0.64 3.286,-0.979 5,-1c1.714,0.021 3.41,0.36 5,1c0.019,1.346 -0.124,2.689 -0.426,4l-0.054,0c-0.337,0.001 -0.672,0.04 -1,0.116c0.301,-1.114 0.462,-2.262 0.48,-3.416c-1.291,-0.43 -2.639,-0.666 -4,-0.7l0,8.77l0.026,-0.019c0.021,0.37 0.088,0.736 0.2,1.089Z" style="fill:#59a869;fill-rule:nonzero;"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 929 B

After

Width:  |  Height:  |  Size: 788 B

View File

@@ -1,7 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<g>
<rect x="0" y="0" width="13" height="13" style="fill:#ffe6ff;fill-opacity:0;"/>
<path d="M13,9.51c-0.005,1.916 -1.584,3.49 -3.5,3.49c-1.92,-0 -3.5,-1.58 -3.5,-3.5c0,-1.92 1.58,-3.5 3.5,-3.5c0.003,-0 0.007,-0 0.01,0c1.916,0.005 3.49,1.584 3.49,3.5c0,0.003 0,0.007 0,0.01Zm-1,0c0,-0.003 0,-0.007 0,-0.01c0,-1.369 -1.124,-2.496 -2.493,-2.5l-0.007,0l0,5c1.369,0 2.496,-1.124 2.5,-2.493l0,0.003Z" style="fill:#afb1b3;fill-rule:nonzero;"/>
<path d="M13,9.51c-0.005,1.916 -1.584,3.49 -3.5,3.49c-1.92,0 -3.5,-1.58 -3.5,-3.5c0,-1.92 1.58,-3.5 3.5,-3.5l0.01,0c1.916,0.005 3.49,1.584 3.49,3.5l0,0.01Zm-1,0l0,-0.01c0,-1.369 -1.124,-2.496 -2.493,-2.5l-0.007,0l0,5c1.369,0 2.496,-1.124 2.5,-2.493l0,0.003Z" style="fill:#afb1b3;fill-rule:nonzero;"/>
<path d="M5.226,10.84l-0.226,0.16c-2.41,-1.7 -5,-3.46 -5,-10c1.59,-0.64 3.286,-0.979 5,-1c1.714,0.021 3.41,0.36 5,1c0.019,1.346 -0.124,2.689 -0.426,4l-0.054,0c-0.337,0.001 -0.672,0.04 -1,0.116c0.301,-1.114 0.462,-2.262 0.48,-3.416c-1.291,-0.43 -2.639,-0.666 -4,-0.7l0,8.77l0.026,-0.019c0.021,0.37 0.088,0.736 0.2,1.089Z" style="fill:#499c54;fill-rule:nonzero;"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 929 B

After

Width:  |  Height:  |  Size: 788 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13"><path fill="#6e6e6e" fill-rule="evenodd" d="M5.687 3.25a4.062 4.062 0 1 0 4.062 4.062h-.812a3.25 3.25 0 1 1-3.25-3.25V3.25Z"/><path fill="#6e6e6e" fill-rule="evenodd" d="M11.375 6.5A4.875 4.875 0 0 0 6.5 1.625V6.5h4.875Z"/></svg>

After

Width:  |  Height:  |  Size: 292 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13"><path fill="#afb1b3" fill-rule="evenodd" d="M5.688 3.25a4.063 4.063 0 1 0 4.061 4.062h-.812a3.25 3.25 0 1 1-3.25-3.25V3.25Z"/><path fill="#afb1b3" fill-rule="evenodd" d="M11.375 6.5A4.875 4.875 0 0 0 6.5 1.625V6.5h4.875Z"/></svg>

After

Width:  |  Height:  |  Size: 292 B

View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<path d="M2.502,4.485c0.286,-2 1.998,-3.485 4.019,-3.485c2.002,-0 3.705,1.46 4.011,3.438l0.551,3.562l-9.083,0l0.502,-3.515Z" style="fill:#eda200;fill-rule:nonzero;"/>
<path d="M1,10c0,-1.657 1.343,-3 3,-3l5,0c1.657,0 3,1.343 3,3l-11,0Z" style="fill:#eda200;fill-rule:nonzero;"/>
<path d="M8.333,11c0,1.105 -0.82,2 -1.833,2c-1.012,0 -1.833,-0.895 -1.833,-2l3.666,0Z" style="fill:#eda200;fill-rule:nonzero;"/>
</svg>

After

Width:  |  Height:  |  Size: 511 B

View File

@@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<path d="M1,10c0,-1.657 1.343,-3 3,-3l5,0c1.657,0 3,1.343 3,3l-11,0Z" style="fill:#eda200;fill-rule:nonzero;"/>
<path d="M8.333,11c0,1.105 -0.82,2 -1.833,2c-1.012,0 -1.833,-0.895 -1.833,-2l3.666,0Z" style="fill:#eda200;fill-rule:nonzero;"/>
<path d="M10.772,5.99c-0.09,0.006 -0.18,0.01 -0.272,0.01c-1.933,0 -3.5,-1.567 -3.5,-3.5c0,-0.507 0.108,-0.989 0.302,-1.425c-0.253,-0.049 -0.515,-0.075 -0.781,-0.075c-2.021,0 -3.733,1.485 -4.019,3.485l-0.502,3.515l9.083,0l-0.311,-2.01Z" style="fill:#eda200;fill-rule:nonzero;"/>
<circle cx="10.5" cy="2.5" r="2.5" style="fill:#389fd6;"/>
</svg>

After

Width:  |  Height:  |  Size: 685 B

View File

@@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<path d="M1,10c0,-1.657 1.343,-3 3,-3l5,0c1.657,0 3,1.343 3,3l-11,0Z" style="fill:#eda200;fill-rule:nonzero;"/>
<path d="M8.333,11c0,1.105 -0.82,2 -1.833,2c-1.012,0 -1.833,-0.895 -1.833,-2l3.666,0Z" style="fill:#eda200;fill-rule:nonzero;"/>
<path d="M10.772,5.99c-0.09,0.006 -0.18,0.01 -0.272,0.01c-1.933,0 -3.5,-1.567 -3.5,-3.5c0,-0.507 0.108,-0.989 0.302,-1.425c-0.253,-0.049 -0.515,-0.075 -0.781,-0.075c-2.021,0 -3.733,1.485 -4.019,3.485l-0.502,3.515l9.083,0l-0.311,-2.01Z" style="fill:#eda200;fill-rule:nonzero;"/>
<circle cx="10.5" cy="2.5" r="2.5" style="fill:#db5860;"/>
</svg>

After

Width:  |  Height:  |  Size: 685 B

View File

@@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<path d="M1,10c0,-1.657 1.343,-3 3,-3l5,0c1.657,0 3,1.343 3,3l-11,0Z" style="fill:#f0a732;fill-rule:nonzero;"/>
<path d="M8.333,11c0,1.105 -0.82,2 -1.833,2c-1.012,0 -1.833,-0.895 -1.833,-2l3.666,0Z" style="fill:#f0a732;fill-rule:nonzero;"/>
<path d="M10.772,5.99c-0.09,0.006 -0.18,0.01 -0.272,0.01c-1.933,0 -3.5,-1.567 -3.5,-3.5c0,-0.507 0.108,-0.989 0.302,-1.425c-0.253,-0.049 -0.515,-0.075 -0.781,-0.075c-2.021,0 -3.733,1.485 -4.019,3.485l-0.502,3.515l9.083,0l-0.311,-2.01Z" style="fill:#f0a732;fill-rule:nonzero;"/>
<circle cx="10.5" cy="2.5" r="2.5" style="fill:#c75450;"/>
</svg>

After

Width:  |  Height:  |  Size: 685 B

View File

@@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<path d="M1,10c0,-1.657 1.343,-3 3,-3l5,0c1.657,0 3,1.343 3,3l-11,0Z" style="fill:#f0a732;fill-rule:nonzero;"/>
<path d="M8.333,11c0,1.105 -0.82,2 -1.833,2c-1.012,0 -1.833,-0.895 -1.833,-2l3.666,0Z" style="fill:#f0a732;fill-rule:nonzero;"/>
<path d="M10.772,5.99c-0.09,0.006 -0.18,0.01 -0.272,0.01c-1.933,0 -3.5,-1.567 -3.5,-3.5c0,-0.507 0.108,-0.989 0.302,-1.425c-0.253,-0.049 -0.515,-0.075 -0.781,-0.075c-2.021,0 -3.733,1.485 -4.019,3.485l-0.502,3.515l9.083,0l-0.311,-2.01Z" style="fill:#f0a732;fill-rule:nonzero;"/>
<circle cx="10.5" cy="2.5" r="2.5" style="fill:#3592c4;"/>
</svg>

After

Width:  |  Height:  |  Size: 685 B

View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<path d="M2.502,4.485c0.286,-2 1.998,-3.485 4.019,-3.485c2.002,0 3.705,1.46 4.011,3.438l0.551,3.562l-9.083,0l0.502,-3.515Z" style="fill:#f0a732;fill-rule:nonzero;"/>
<path d="M1,10c0,-1.657 1.343,-3 3,-3l5,0c1.657,0 3,1.343 3,3l-11,0Z" style="fill:#f0a732;fill-rule:nonzero;"/>
<path d="M8.333,11c0,1.105 -0.82,2 -1.833,2c-1.012,0 -1.833,-0.895 -1.833,-2l3.666,0Z" style="fill:#f0a732;fill-rule:nonzero;"/>
</svg>

After

Width:  |  Height:  |  Size: 510 B

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<path d="M2,12l4.5,-4l4.5,4l0,-11l-9,0l0,11Z" style="fill:#eda200;fill-rule:nonzero;"/>
</svg>

After

Width:  |  Height:  |  Size: 183 B

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<path d="M2,12l4.5,-4l4.5,4l0,-11l-9,0l0,11Z" style="fill:#f0a732;fill-rule:nonzero;"/>
</svg>

After

Width:  |  Height:  |  Size: 183 B

View File

@@ -0,0 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<g>
<path d="M10.362,4.567l-1.239,0c-0.303,-1.894 -1.944,-3.341 -3.924,-3.341c-2.194,0 -3.973,1.779 -3.973,3.973c0,2.195 1.779,3.974 3.973,3.974c0.275,0 0.542,-0.028 0.801,-0.081l0,1.247c-0.261,0.04 -0.528,0.061 -0.8,0.061c-2.872,0 -5.2,-2.328 -5.2,-5.2c0,-2.872 2.328,-5.2 5.2,-5.2c2.657,0 4.849,1.994 5.162,4.567Z" style="fill:#6e6e6e;"/>
<rect x="4.992" y="2.77" width="1" height="2.724" style="fill:#6e6e6e;"/>
<path d="M5.284,4.787l0.706,0.707l-1.924,1.926l-0.706,-0.708l1.924,-1.925Z" style="fill:#6e6e6e;"/>
<path d="M7,4.767l6,4l-6,4l0,-8Z" style="fill:#59a869;"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 709 B

View File

@@ -0,0 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<g>
<path d="M10.362,4.567l-1.239,0c-0.303,-1.894 -1.944,-3.341 -3.924,-3.341c-2.194,0 -3.973,1.779 -3.973,3.973c0,2.195 1.779,3.974 3.973,3.974c0.275,0 0.542,-0.028 0.801,-0.081l0,1.247c-0.261,0.04 -0.528,0.061 -0.8,0.061c-2.872,0 -5.2,-2.328 -5.2,-5.2c0,-2.872 2.328,-5.2 5.2,-5.2c2.657,0 4.849,1.994 5.162,4.567Z" style="fill:#afb1b3;"/>
<rect x="4.992" y="2.77" width="1" height="2.724" style="fill:#afb1b3;"/>
<path d="M5.284,4.787l0.706,0.707l-1.924,1.926l-0.706,-0.708l1.924,-1.925Z" style="fill:#afb1b3;"/>
<path d="M7,4.767l6,4l-6,4l0,-8Z" style="fill:#499c54;"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 709 B

View File

@@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<path d="M7.5,6L13,9.5L7.5,13L7.5,6Z" style="fill:#59a869;"/>
<path d="M6.5,0.2L1.5,1.2L1.5,6.9C1.764,9.874 6.498,12.2 6.498,12.2L6.5,12.199L6.5,1.978L9.722,2.606L9.722,6.229L11.434,7.318C11.465,7.18 11.488,7.041 11.5,6.9L11.5,1.2L6.5,0.2Z" style="fill:#6e6e6e;fill-rule:nonzero;"/>
</svg>

After

Width:  |  Height:  |  Size: 382 B

View File

@@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13">
<path d="M7.5,6L13,9.5L7.5,13L7.5,6Z" style="fill:#499c54;"/>
<path d="M6.5,0.2L1.5,1.2L1.5,6.9C1.764,9.874 6.498,12.2 6.498,12.2L6.5,12.199L6.5,1.978L9.722,2.606L9.722,6.229L11.434,7.318C11.465,7.18 11.488,7.041 11.5,6.9L11.5,1.2L6.5,0.2Z" style="fill:#afb1b3;fill-rule:nonzero;"/>
</svg>

After

Width:  |  Height:  |  Size: 382 B

View File

@@ -1,197 +1,31 @@
package com.chylex.intellij.coloredicons;
import com.chylex.intellij.coloredicons.sets.OldUI;
import com.intellij.openapi.util.IconLoader;
import com.intellij.openapi.util.IconPathPatcher;
import com.intellij.ui.NewUI;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.util.HashMap;
import java.util.Collections;
import java.util.Map;
public class IconPatcher extends IconPathPatcher{
public class IconPatcher extends IconPathPatcher {
private final ClassLoader classLoader = getClass().getClassLoader();
private final Map<String, String> iconPaths = new HashMap<>();
public IconPatcher(){
addPathWithDark("actions/AddMulticaret");
addPathWithDark("actions/back");
addPathWithDark("actions/buildAutoReloadChanges");
addPathWithDark("actions/cancel");
addPathWithDark("actions/CheckMulticaret");
addPathWithDark("actions/collapseall");
addPathWithDark("actions/download");
addPathWithDark("actions/dump");
addPathWithDark("actions/edit");
addPathWithDark("actions/editScheme");
addPathWithDark("actions/editSource");
addPathWithDark("actions/expandall");
addPathWithDark("actions/forward");
addPathWithDark("actions/inSelection");
addPathWithDark("actions/intentionBulbGrey");
addPathWithDark("actions/menu-saveall");
addPathWithDark("actions/newFolder");
addPathWithDark("actions/nextOccurence");
addPathWithDark("actions/openNewTab");
addPathWithDark("actions/prettyPrint");
addPathWithDark("actions/previousOccurence");
addPathWithDark("actions/realIntentionBulb");
addPathWithDark("actions/refactoringBulb"); // TODO not working
addPathWithDark("actions/refresh");
addPathWithDark("actions/RemoveMulticaret");
addPathWithDark("actions/rollback");
addPathWithDark("actions/show");
addPathWithDark("actions/showCode");
addPathWithDark("actions/showHiddens");
addPathWithDark("actions/splitHorizontally");
addPathWithDark("actions/splitVertically");
addPathWithDark("actions/swapPanels");
addPathWithDark("actions/synchronizeScrolling");
addPathWithDark("actions/syncPanels");
addPathWithDark("actions/toggleSoftWrap");
addPathWithDark("actions/unselectall");
addPathWithDark("actions/upload");
addPathWithDark("codeStyle/AddNewSectionRule");
addPathWithDark("diff/magicResolve");
addPathWithDark("diff/magicResolveToolbar");
addPathWithDark("general/add");
addPathWithDark("general/addJdk");
addPathWithDark("general/autoscrollFromSource");
addPathWithDark("general/autoscrollToSource");
addPathWithDark("general/filter");
addPathWithDark("general/layout");
addPathWithDark("general/layoutEditorOnly");
addPathWithDark("general/layoutEditorPreview");
addPathWithDark("general/layoutPreviewOnly");
addPathWithDark("general/pin_tab");
addPathWithDark("general/print");
addPathWithDark("general/remove");
addPathWithDark("general/reset");
addPathWithDark("general/zoomIn");
addPathWithDark("general/zoomOut");
addPathWithDark("graph/layout");
addPathWithDark("graph/zoomIn");
addPathWithDark("graph/zoomOut");
addPathWithDark("hierarchy/class");
addPathWithDark("hierarchy/subtypes");
addPathWithDark("hierarchy/supertypes");
addPathWithDark("icons/cherryPick");
addPathWithDark("icons/CMakeToolWindow");
addPathWithDark("icons/ConcurrencyDiagramToolwindow");
addPathWithDark("icons/debug_listen_on");
addPathWithDark("icons/ejbToolWindow");
addPathWithDark("icons/gradleNavigate");
addPathWithDark("icons/IntelliSort");
addPathWithDark("icons/interTypes");
addPathWithDark("icons/javaeeToolWindow");
addPathWithDark("icons/jpaConsoleToolWindow");
addPathWithDark("icons/jpaToolWindow");
addPathWithDark("icons/makefileToolWindow");
addPathWithDark("icons/OpenTerminal_13x13");
addPathWithDark("icons/springToolWindow");
addPathWithDark("icons/toolWindowConsole");
addPathWithDark("icons/toolWindowDatabase");
addPathWithDark("icons/toolwindowDatabaseChanges");
addPathWithDark("icons/toolWindowDsm");
addPathWithDark("icons/toolwindowEndpoints");
addPathWithDark("icons/toolWindowGradle");
addPathWithDark("icons/toolWindowSQLGenerator");
addPathWithDark("icons/buildTools/gulp_toolwindow");
addPathWithDark("icons/buildTools/grunt/grunt_toolwindow");
addPathWithDark("icons/buildTools/npm/npm_13");
addPathWithDark("icons/com/jetbrains/python/DataView");
addPathWithDark("icons/com/jetbrains/python/pythonConsoleToolWindow");
addPathWithDark("images/toolWindowMaven");
addPathWithDark("images/transferToolWindow");
addPathWithDark("images/updateFolders");
addPathWithDark("images/webServerToolWindow");
addPathWithDark("modules/addExcludedRoot");
addPathWithDark("objectBrowser/sortByType");
addPathWithDark("objectBrowser/sorted");
addPathWithDark("objectBrowser/sortedByUsage");
addPathWithDark("objectBrowser/visibilitySort");
addPathWithDark("org/jetbrains/plugins/github/pullRequestsToolWindow");
addPathWithDark("resources/icons/bvToolWindow");
addPathWithDark("resources/icons/hibConsoleToolWindow");
addPathWithDark("rider/toolWindows/toolWindowNuGet");
addPathWithDark("rider/toolWindows/toolWindowSolutionWideAnalysis");
addPathWithDark("rider/toolWindows/toolwindowStacktrace");
addPathWithDark("rider/toolWindows/toolWindowUnitTesting");
addPathWithDark("rider/toolWindows/toolWindowWPFPreview");
addPathWithDark("runConfigurations/scroll_down");
addPathWithDark("runConfigurations/showIgnored");
addPathWithDark("runConfigurations/showPassed");
addPathWithDark("runConfigurations/sortbyDuration");
addPathWithDark("toolbarDecorator/addBlankLine");
addPathWithDark("toolbarDecorator/addClass");
addPathWithDark("toolbarDecorator/addFolder");
addPathWithDark("toolbarDecorator/addIcon");
addPathWithDark("toolbarDecorator/addJira");
addPathWithDark("toolbarDecorator/addLink");
addPathWithDark("toolbarDecorator/addPattern");
addPathWithDark("toolbarDecorator/addRemoteDatasource");
addPathWithDark("toolbarDecorator/addYouTrack");
addPathWithDark("toolbarDecorator/export");
addPathWithDark("toolbarDecorator/import");
addPathWithDark("toolwindows/documentation");
addPathWithDark("toolwindows/toolWindowAnalyzeDataflow");
addPathWithDark("toolwindows/toolWindowAnt");
addPathWithDark("toolwindows/toolWindowBuild");
addPathWithDark("toolwindows/toolWindowChanges");
addPathWithDark("toolwindows/toolWindowCommit");
addPathWithDark("toolwindows/toolWindowCoverage");
addPathWithDark("toolwindows/toolWindowDebugger");
addPathWithDark("toolwindows/toolWindowFavorites");
addPathWithDark("toolwindows/toolWindowFind");
addPathWithDark("toolwindows/toolWindowHierarchy");
addPathWithDark("toolwindows/toolWindowInspection");
addPathWithDark("toolwindows/toolWindowMessages");
addPathWithDark("toolwindows/toolWindowModuleDependencies");
addPathWithDark("toolwindows/toolWindowProfiler");
addPathWithDark("toolwindows/toolWindowProject"); // TODO not working
addPathWithDark("toolwindows/toolWindowRun");
addPathWithDark("toolwindows/toolWindowServices");
addPathWithDark("toolwindows/toolWindowStructure");
addPathWithDark("toolwindows/toolWindowTodo");
addPathWithDark("toolwindows/webToolWindow");
addPathWithDark("vcs/changelist");
addPathWithDark("vcs/history");
addPathWithDark("vcs/merge");
addPathWithDark("toolWindowDotTrace");
addPathWithDark("toolWindowDPA");
addPathWithDark("toolwindowUnitTestCoverage");
private final Map<String, String> iconPaths;
public IconPatcher() {
iconPaths = NewUI.isEnabled() ? Collections.emptyMap() : OldUI.getIconPaths();
IconLoader.installPathPatcher(this);
}
private void addPathWithDark(final String path){
iconPaths.put('/' + path + ".svg", "/icons/" + path + ".svg");
iconPaths.put('/' + path + "_dark.svg", "/icons/" + path + "_dark.svg");
}
@Nullable
@Override
public String patchPath(@NotNull final String path, final ClassLoader classLoaderIgnore){
public String patchPath(@NotNull final String path, final ClassLoader classLoaderIgnore) {
return iconPaths.get(path);
}
@Nullable
@Override
public ClassLoader getContextClassLoader(@NotNull final String path, final ClassLoader originalClassLoader){
public ClassLoader getContextClassLoader(@NotNull final String path, final ClassLoader originalClassLoader) {
return classLoader;
}
}

View File

@@ -0,0 +1,202 @@
package com.chylex.intellij.coloredicons.sets;
import java.util.HashMap;
import java.util.Map;
public final class OldUI {
public static Map<String, String> getIconPaths() {
return new OldUI().getMap();
}
private final Map<String, String> iconPaths = new HashMap<>();
private OldUI() {
addPathWithDark("actions/addList");
addPathWithDark("actions/AddMulticaret");
addPathWithDark("actions/back");
addPathWithDark("actions/buildAutoReloadChanges");
addPathWithDark("actions/cancel");
addPathWithDark("actions/CheckMulticaret");
addPathWithDark("actions/collapseall");
addPathWithDark("actions/download");
addPathWithDark("actions/dump");
addPathWithDark("actions/edit");
addPathWithDark("actions/editScheme");
addPathWithDark("actions/editSource");
addPathWithDark("actions/expandall");
addPathWithDark("actions/forward");
addPathWithDark("actions/inSelection");
addPathWithDark("actions/intentionBulbGrey");
addPathWithDark("actions/menu-saveall");
addPathWithDark("actions/newFolder");
addPathWithDark("actions/nextOccurence");
addPathWithDark("actions/openNewTab");
addPathWithDark("actions/prettyPrint");
addPathWithDark("actions/previousOccurence");
addPathWithDark("actions/realIntentionBulb");
addPathWithDark("actions/refactoringBulb"); // TODO not working
addPathWithDark("actions/refresh");
addPathWithDark("actions/RemoveMulticaret");
addPathWithDark("actions/rollback");
addPathWithDark("actions/show");
addPathWithDark("actions/showCode");
addPathWithDark("actions/showHiddens");
addPathWithDark("actions/splitHorizontally");
addPathWithDark("actions/splitVertically");
addPathWithDark("actions/swapPanels");
addPathWithDark("actions/synchronizeScrolling");
addPathWithDark("actions/syncPanels");
addPathWithDark("actions/toggleSoftWrap");
addPathWithDark("actions/unselectall");
addPathWithDark("actions/upload");
addPathWithDark("codeStyle/AddNewSectionRule");
addPathWithDark("diff/magicResolve");
addPathWithDark("diff/magicResolveToolbar");
addPathWithDark("general/add");
addPathWithDark("general/addJdk");
addPathWithDark("general/autoscrollFromSource");
addPathWithDark("general/autoscrollToSource");
addPathWithDark("general/filter");
addPathWithDark("general/layout");
addPathWithDark("general/layoutEditorOnly");
addPathWithDark("general/layoutEditorPreview");
addPathWithDark("general/layoutPreviewOnly");
addPathWithDark("general/pin_tab");
addPathWithDark("general/print");
addPathWithDark("general/remove");
addPathWithDark("general/reset");
addPathWithDark("general/zoomIn");
addPathWithDark("general/zoomOut");
addPathWithDark("graph/layout");
addPathWithDark("graph/zoomIn");
addPathWithDark("graph/zoomOut");
addPathWithDark("hierarchy/class");
addPathWithDark("hierarchy/subtypes");
addPathWithDark("hierarchy/supertypes");
addPathWithDark("icons/artifactSmall");
addPathWithDark("icons/cherryPick");
addPathWithDark("icons/CMakeToolWindow");
addPathWithDark("icons/ConcurrencyDiagramToolwindow");
addPathWithDark("icons/debug_listen_on");
addPathWithDark("icons/ejbToolWindow");
addPathWithDark("icons/gradleNavigate");
addPathWithDark("icons/IntelliSort");
addPathWithDark("icons/interTypes");
addPathWithDark("icons/javaeeToolWindow");
addPathWithDark("icons/jpaConsoleToolWindow");
addPathWithDark("icons/jpaToolWindow");
addPathWithDark("icons/makefileToolWindow");
addPathWithDark("icons/OpenTerminal_13x13");
addPathWithDark("icons/springToolWindow");
addPathWithDark("icons/toolWindowConsole");
addPathWithDark("icons/toolWindowDatabase");
addPathWithDark("icons/toolwindowDatabaseChanges");
addPathWithDark("icons/toolWindowDsm");
addPathWithDark("icons/toolWindowEndpoints");
addPathWithDark("icons/toolWindowGradle");
addPathWithDark("icons/toolWindowSQLGenerator");
addPathWithDark("icons/youTrack");
addPathWithDark("icons/buildTools/gulp_toolwindow");
addPathWithDark("icons/buildTools/grunt/grunt_toolwindow");
addPathWithDark("icons/buildTools/npm/npm_13");
addPathWithDark("icons/com/jetbrains/python/DataView");
addPathWithDark("icons/com/jetbrains/python/pythonConsoleToolWindow");
addPathWithDark("icons/com/jetbrains/python/pythonPackages");
addPathWithDark("images/toolWindowMaven");
addPathWithDark("images/transferToolWindow");
addPathWithDark("images/updateFolders");
addPathWithDark("images/webServerToolWindow");
addPathWithDark("img/featureTrainerToolWindow");
addPathWithDark("modules/addExcludedRoot");
addPathWithDark("objectBrowser/sortByType");
addPathWithDark("objectBrowser/sorted");
addPathWithDark("objectBrowser/sortedByUsage");
addPathWithDark("objectBrowser/visibilitySort");
addPathWithDark("org/jetbrains/plugins/github/pullRequestsToolWindow");
addPathWithDark("org/jetbrains/sbt/images/sbtShellToolwin");
addPathWithDark("org/jetbrains/sbt/images/sbtToolwin");
addPathWithDark("resources/icons/bvToolWindow");
addPathWithDark("resources/icons/hibConsoleToolWindow");
addPathWithDark("rider/toolwindows/DotMemoryProfilingMonoTone");
addPathWithDark("rider/toolwindows/toolWindowDPA");
addPathWithDark("rider/toolwindows/toolWindowDotTrace");
addPathWithDark("rider/toolwindows/toolWindowNuGet");
addPathWithDark("rider/toolwindows/toolWindowSolutionWideAnalysis");
addPathWithDark("rider/toolwindows/toolWindowUnitTesting");
addPathWithDark("rider/toolwindows/toolWindowWPFPreview");
addPathWithDark("rider/toolwindows/toolwindowStacktrace");
addPathWithDark("rider/toolwindows/toolwindowUnitTestCoverage");
addPathWithDark("runConfigurations/scroll_down");
addPathWithDark("runConfigurations/showIgnored");
addPathWithDark("runConfigurations/showPassed");
addPathWithDark("runConfigurations/sortbyDuration");
addPathWithDark("toolbarDecorator/addBlankLine");
addPathWithDark("toolbarDecorator/addClass");
addPathWithDark("toolbarDecorator/addFolder");
addPathWithDark("toolbarDecorator/addIcon");
addPathWithDark("toolbarDecorator/addJira");
addPathWithDark("toolbarDecorator/addLink");
addPathWithDark("toolbarDecorator/addPattern");
addPathWithDark("toolbarDecorator/addRemoteDatasource");
addPathWithDark("toolbarDecorator/addYouTrack");
addPathWithDark("toolbarDecorator/export");
addPathWithDark("toolbarDecorator/import");
addPathWithDark("toolwindows/documentation");
addPathWithDark("toolwindows/notifications");
addPathWithDark("toolwindows/notificationsNew");
addPathWithDark("toolwindows/notificationsNewImportant");
addPathWithDark("toolwindows/toolWindowAnalyzeDataflow");
addPathWithDark("toolwindows/toolWindowAnt");
addPathWithDark("toolwindows/toolWindowBookmarks");
addPathWithDark("toolwindows/toolWindowBuild");
addPathWithDark("toolwindows/toolWindowChanges");
addPathWithDark("toolwindows/toolWindowCommit");
addPathWithDark("toolwindows/toolWindowCoverage");
addPathWithDark("toolwindows/toolWindowDebugger");
addPathWithDark("toolwindows/toolWindowFavorites");
addPathWithDark("toolwindows/toolWindowFind");
addPathWithDark("toolwindows/toolWindowHierarchy");
addPathWithDark("toolwindows/toolWindowInspection");
addPathWithDark("toolwindows/toolWindowMessages");
addPathWithDark("toolwindows/toolWindowModuleDependencies");
addPathWithDark("toolwindows/toolWindowProfiler");
addPathWithDark("toolwindows/toolWindowProfilerAndroid");
addPathWithDark("toolwindows/toolWindowProject");
addPathWithDark("toolwindows/toolWindowRun");
addPathWithDark("toolwindows/toolWindowRunWithCoverage");
addPathWithDark("toolwindows/toolWindowServices");
addPathWithDark("toolwindows/toolWindowStructure");
addPathWithDark("toolwindows/toolWindowTodo");
addPathWithDark("toolwindows/webToolWindow");
addPathWithDark("vcs/changelist");
addPathWithDark("vcs/history");
addPathWithDark("vcs/merge");
}
private Map<String, String> getMap() {
return iconPaths;
}
private void addPathWithDark(final String path) {
iconPaths.put('/' + path + ".svg", "icons/" + path + ".svg");
iconPaths.put('/' + path + "_dark.svg", "icons/" + path + "_dark.svg");
}
}