mirror of
				https://github.com/chylex/IntelliJ-Rainbow-Brackets.git
				synced 2025-11-04 01:40:20 +01:00 
			
		
		
		
	Compare commits
	
		
			3 Commits
		
	
	
		
			2977a08009
			...
			02f46987b4
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						
						
							
						
						02f46987b4
	
				 | 
					
					
						|||
| 
						
						
							
						
						80f19cc47b
	
				 | 
					
					
						|||
| 
						
						
							
						
						f4b6bc7637
	
				 | 
					
					
						
							
								
								
									
										24
									
								
								.idea/vcs.xml
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										24
									
								
								.idea/vcs.xml
									
									
									
										generated
									
									
									
								
							@@ -1,24 +0,0 @@
 | 
			
		||||
<?xml version="1.0" encoding="UTF-8"?>
 | 
			
		||||
<project version="4">
 | 
			
		||||
    <component name="CommitMessageInspectionProfile">
 | 
			
		||||
        <profile version="1.0">
 | 
			
		||||
            <inspection_tool class="GrazieCommit" enabled="true" level="TYPO" enabled_by_default="true"/>
 | 
			
		||||
        </profile>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="VcsDirectoryMappings">
 | 
			
		||||
        <mapping directory="$PROJECT_DIR$" vcs="Git"/>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="IssueNavigationConfiguration">
 | 
			
		||||
        <option name="links">
 | 
			
		||||
            <list>
 | 
			
		||||
                <IssueNavigationLink>
 | 
			
		||||
                    <option name="issueRegexp" value="#(\d+)"/>
 | 
			
		||||
                    <option name="linkRegexp" value="https://github.com//izhangzhihao/intellij-rainbow-brackets/issues/$1"/>
 | 
			
		||||
                </IssueNavigationLink>
 | 
			
		||||
            </list>
 | 
			
		||||
        </option>
 | 
			
		||||
    </component>
 | 
			
		||||
    <component name="VcsDirectoryMappings">
 | 
			
		||||
        <mapping directory="" vcs="Git"/>
 | 
			
		||||
    </component>
 | 
			
		||||
</project>
 | 
			
		||||
@@ -5,4 +5,5 @@ This is a fork of the [🌈Rainbow Brackets](https://github.com/izhangzhihao/int
 | 
			
		||||
## Key Changes
 | 
			
		||||
 | 
			
		||||
- Support for CLion and Rider
 | 
			
		||||
- Support for Settings Sync
 | 
			
		||||
- Fixed service initialization warnings reported by 2024.2+
 | 
			
		||||
 
 | 
			
		||||
@@ -9,7 +9,7 @@ plugins {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
group = "com.chylex.intellij.coloredbrackets"
 | 
			
		||||
version = "0.0.1"
 | 
			
		||||
version = "1.0.0"
 | 
			
		||||
 | 
			
		||||
allprojects {
 | 
			
		||||
	apply(plugin = "org.jetbrains.kotlin.jvm")
 | 
			
		||||
 
 | 
			
		||||
@@ -2,12 +2,13 @@ package com.chylex.intellij.coloredbrackets.settings
 | 
			
		||||
 | 
			
		||||
import com.intellij.openapi.application.ApplicationManager
 | 
			
		||||
import com.intellij.openapi.components.PersistentStateComponent
 | 
			
		||||
import com.intellij.openapi.components.SettingsCategory
 | 
			
		||||
import com.intellij.openapi.components.State
 | 
			
		||||
import com.intellij.openapi.components.Storage
 | 
			
		||||
import com.intellij.util.xmlb.XmlSerializerUtil.copyBean
 | 
			
		||||
import org.jetbrains.annotations.Nullable
 | 
			
		||||
 | 
			
		||||
@State(name = "ColoredBracketsSettings", storages = [Storage("colored_brackets.xml")])
 | 
			
		||||
@State(name = "ColoredBracketsSettings", storages = [Storage("colored_brackets.xml")], category = SettingsCategory.UI)
 | 
			
		||||
class RainbowSettings : PersistentStateComponent<RainbowSettings> {
 | 
			
		||||
	/**
 | 
			
		||||
	 * default value
 | 
			
		||||
 
 | 
			
		||||
@@ -4,13 +4,22 @@
 | 
			
		||||
  <vendor url="https://chylex.com">chylex</vendor>
 | 
			
		||||
  
 | 
			
		||||
  <description><![CDATA[
 | 
			
		||||
      Fork of the <a href="https://github.com/izhangzhihao/intellij-rainbow-brackets">Rainbow Brackets</a> plugin by <a href="https://github.com/izhangzhihao">izhangzhihao</a>.
 | 
			
		||||
    Fork of the <a href="https://github.com/izhangzhihao/intellij-rainbow-brackets">Rainbow Brackets</a> plugin by <a href="https://github.com/izhangzhihao">izhangzhihao</a>, based on version 6.26.
 | 
			
		||||
    <br><br>
 | 
			
		||||
    <b>Key Changes</b>
 | 
			
		||||
    <ul>
 | 
			
		||||
      <li>Support for CLion and Rider</li>
 | 
			
		||||
      <li>Support for Settings Sync</li>
 | 
			
		||||
      <li>Fixed service initialization warnings reported by 2024.2+</li>
 | 
			
		||||
    </ul>
 | 
			
		||||
  ]]></description>
 | 
			
		||||
  
 | 
			
		||||
  <change-notes><![CDATA[
 | 
			
		||||
    <p>6.26</p>
 | 
			
		||||
    <b>1.0.0</b>
 | 
			
		||||
    <ul>
 | 
			
		||||
      <li>Original version the fork is based on.</li>
 | 
			
		||||
      <li>Added support for CLion and Rider</li>
 | 
			
		||||
      <li>Added support for Settings Sync</li>
 | 
			
		||||
      <li>Fixed service initialization warnings reported by IJ 2024.2+</li>
 | 
			
		||||
    </ul>
 | 
			
		||||
  ]]></change-notes>
 | 
			
		||||
  
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user