├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml └── copyright │ ├── GPLv3.xml │ └── profiles_settings.xml ├── README.md ├── etc └── nyan.xcf ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── illus.gif ├── settings.gradle.kts ├── src ├── main │ ├── kotlin │ │ └── org │ │ │ └── jraf │ │ │ └── intellijplugin │ │ │ └── nyantray │ │ │ ├── images │ │ │ └── Images.kt │ │ │ ├── plugin │ │ │ ├── NyanTrayApplicationComponent.kt │ │ │ ├── PersistedState.kt │ │ │ ├── TimeCount.kt │ │ │ └── Tray.kt │ │ │ └── util │ │ │ └── DateTimeUtil.kt │ └── resources │ │ ├── META-INF │ │ └── plugin.xml │ │ └── org │ │ └── jraf │ │ └── intellijplugin │ │ └── nyantray │ │ └── images │ │ ├── idle.png │ │ ├── nyan00.png │ │ ├── nyan01.png │ │ ├── nyan02.png │ │ ├── nyan03.png │ │ ├── nyan04.png │ │ ├── nyan05.png │ │ ├── nyan06.png │ │ ├── nyan07.png │ │ ├── nyan08.png │ │ ├── nyan09.png │ │ ├── nyan10.png │ │ └── nyan11.png └── test │ └── kotlin │ └── org │ └── jraf │ └── intellijplugin │ └── nyantray │ └── MillisecondTest.kt └── versions.properties /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/copyright/GPLv3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/.idea/copyright/GPLv3.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/README.md -------------------------------------------------------------------------------- /etc/nyan.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/etc/nyan.xcf -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /illus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/illus.gif -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/main/kotlin/org/jraf/intellijplugin/nyantray/images/Images.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/src/main/kotlin/org/jraf/intellijplugin/nyantray/images/Images.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/jraf/intellijplugin/nyantray/plugin/NyanTrayApplicationComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/src/main/kotlin/org/jraf/intellijplugin/nyantray/plugin/NyanTrayApplicationComponent.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/jraf/intellijplugin/nyantray/plugin/PersistedState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/src/main/kotlin/org/jraf/intellijplugin/nyantray/plugin/PersistedState.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/jraf/intellijplugin/nyantray/plugin/TimeCount.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/src/main/kotlin/org/jraf/intellijplugin/nyantray/plugin/TimeCount.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/jraf/intellijplugin/nyantray/plugin/Tray.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/src/main/kotlin/org/jraf/intellijplugin/nyantray/plugin/Tray.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/jraf/intellijplugin/nyantray/util/DateTimeUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/src/main/kotlin/org/jraf/intellijplugin/nyantray/util/DateTimeUtil.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/main/resources/org/jraf/intellijplugin/nyantray/images/idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/src/main/resources/org/jraf/intellijplugin/nyantray/images/idle.png -------------------------------------------------------------------------------- /src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan00.png -------------------------------------------------------------------------------- /src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan01.png -------------------------------------------------------------------------------- /src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan02.png -------------------------------------------------------------------------------- /src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan03.png -------------------------------------------------------------------------------- /src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan04.png -------------------------------------------------------------------------------- /src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan05.png -------------------------------------------------------------------------------- /src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan06.png -------------------------------------------------------------------------------- /src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan07.png -------------------------------------------------------------------------------- /src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan08.png -------------------------------------------------------------------------------- /src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan09.png -------------------------------------------------------------------------------- /src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan10.png -------------------------------------------------------------------------------- /src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/src/main/resources/org/jraf/intellijplugin/nyantray/images/nyan11.png -------------------------------------------------------------------------------- /src/test/kotlin/org/jraf/intellijplugin/nyantray/MillisecondTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/src/test/kotlin/org/jraf/intellijplugin/nyantray/MillisecondTest.kt -------------------------------------------------------------------------------- /versions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoD/NyanTrayIntelliJPlugin/HEAD/versions.properties --------------------------------------------------------------------------------