mirror of
				https://github.com/chylex/IntelliJ-Colored-Icons.git
				synced 2025-11-04 01:40:16 +01:00 
			
		
		
		
	Compare commits
	
		
			2 Commits
		
	
	
		
			7f2b2e419d
			...
			435dbd2d84
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						
						
							
						
						435dbd2d84
	
				 | 
					
					
						|||
| 
						
						
							
						
						277ef4a835
	
				 | 
					
					
						
@@ -6,7 +6,7 @@ plugins {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
group = "com.chylex.intellij.coloredicons"
 | 
					group = "com.chylex.intellij.coloredicons"
 | 
				
			||||||
version = "1.5"
 | 
					version = "1.5.1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
repositories {
 | 
					repositories {
 | 
				
			||||||
	mavenCentral()
 | 
						mavenCentral()
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -9,6 +9,10 @@
 | 
				
			|||||||
  </description>
 | 
					  </description>
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
  <change-notes><![CDATA[
 | 
					  <change-notes><![CDATA[
 | 
				
			||||||
 | 
					    <b>Version 1.5.1</b>
 | 
				
			||||||
 | 
					    <ul>
 | 
				
			||||||
 | 
					      <li>Fixed a random exception while loading the plugin</li>
 | 
				
			||||||
 | 
					    </ul>
 | 
				
			||||||
    <b>Version 1.5</b>
 | 
					    <b>Version 1.5</b>
 | 
				
			||||||
    <ul>
 | 
					    <ul>
 | 
				
			||||||
      <li>Fixed tool window icons for 2023.3</li>
 | 
					      <li>Fixed tool window icons for 2023.3</li>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,7 +2,7 @@ package com.chylex.intellij.coloredicons;
 | 
				
			|||||||
import com.chylex.intellij.coloredicons.sets.OldUI;
 | 
					import com.chylex.intellij.coloredicons.sets.OldUI;
 | 
				
			||||||
import com.intellij.openapi.util.IconLoader;
 | 
					import com.intellij.openapi.util.IconLoader;
 | 
				
			||||||
import com.intellij.openapi.util.IconPathPatcher;
 | 
					import com.intellij.openapi.util.IconPathPatcher;
 | 
				
			||||||
import com.intellij.ui.NewUiValue;
 | 
					import com.intellij.ui.NewUI;
 | 
				
			||||||
import org.jetbrains.annotations.NotNull;
 | 
					import org.jetbrains.annotations.NotNull;
 | 
				
			||||||
import org.jetbrains.annotations.Nullable;
 | 
					import org.jetbrains.annotations.Nullable;
 | 
				
			||||||
import java.util.Collections;
 | 
					import java.util.Collections;
 | 
				
			||||||
@@ -13,7 +13,7 @@ public class IconPatcher extends IconPathPatcher {
 | 
				
			|||||||
	private final Map<String, String> iconPaths;
 | 
						private final Map<String, String> iconPaths;
 | 
				
			||||||
	
 | 
						
 | 
				
			||||||
	public IconPatcher() {
 | 
						public IconPatcher() {
 | 
				
			||||||
		iconPaths = NewUiValue.isEnabled() ? Collections.emptyMap() : OldUI.getIconPaths();
 | 
							iconPaths = NewUI.isEnabled() ? Collections.emptyMap() : OldUI.getIconPaths();
 | 
				
			||||||
		IconLoader.installPathPatcher(this);
 | 
							IconLoader.installPathPatcher(this);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	
 | 
						
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user