├── .circleci └── config.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── resources ├── META-INF │ ├── ChangeNotes.html │ ├── Description.html │ ├── plugin-clion.xml │ └── plugin.xml └── org │ └── hoshino9 │ └── luogu │ └── intellij │ └── luogu-bundle.properties ├── screenshot ├── 0.0.3-0.gif └── 0.0.3-1.gif ├── settings.gradle.kts └── src └── org └── hoshino9 └── luogu └── intellij ├── actions ├── LoginAction.kt ├── LuoguBundle.kt ├── PasteAction.kt ├── SubmitAction.kt ├── UnlockAction.kt └── ui │ ├── LoginUI.form │ ├── LoginUI.java │ ├── PasteUI.form │ ├── PasteUI.java │ ├── RecordUI.form │ ├── RecordUI.java │ ├── SubmitUI.form │ ├── SubmitUI.java │ ├── UnlockUI.form │ └── UnlockUI.java ├── global.kt ├── ui.kt └── ui ├── VerifyUIImpl.kt └── ui ├── VerifyUI.form └── VerifyUI.java /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/README.md -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/gradlew.bat -------------------------------------------------------------------------------- /resources/META-INF/ChangeNotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/resources/META-INF/ChangeNotes.html -------------------------------------------------------------------------------- /resources/META-INF/Description.html: -------------------------------------------------------------------------------- 1 |

A IntelliJ Plugin for Luogu

-------------------------------------------------------------------------------- /resources/META-INF/plugin-clion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/resources/META-INF/plugin-clion.xml -------------------------------------------------------------------------------- /resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /resources/org/hoshino9/luogu/intellij/luogu-bundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/resources/org/hoshino9/luogu/intellij/luogu-bundle.properties -------------------------------------------------------------------------------- /screenshot/0.0.3-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/screenshot/0.0.3-0.gif -------------------------------------------------------------------------------- /screenshot/0.0.3-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/screenshot/0.0.3-1.gif -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/org/hoshino9/luogu/intellij/actions/LoginAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/src/org/hoshino9/luogu/intellij/actions/LoginAction.kt -------------------------------------------------------------------------------- /src/org/hoshino9/luogu/intellij/actions/LuoguBundle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/src/org/hoshino9/luogu/intellij/actions/LuoguBundle.kt -------------------------------------------------------------------------------- /src/org/hoshino9/luogu/intellij/actions/PasteAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/src/org/hoshino9/luogu/intellij/actions/PasteAction.kt -------------------------------------------------------------------------------- /src/org/hoshino9/luogu/intellij/actions/SubmitAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/src/org/hoshino9/luogu/intellij/actions/SubmitAction.kt -------------------------------------------------------------------------------- /src/org/hoshino9/luogu/intellij/actions/UnlockAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/src/org/hoshino9/luogu/intellij/actions/UnlockAction.kt -------------------------------------------------------------------------------- /src/org/hoshino9/luogu/intellij/actions/ui/LoginUI.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/src/org/hoshino9/luogu/intellij/actions/ui/LoginUI.form -------------------------------------------------------------------------------- /src/org/hoshino9/luogu/intellij/actions/ui/LoginUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/src/org/hoshino9/luogu/intellij/actions/ui/LoginUI.java -------------------------------------------------------------------------------- /src/org/hoshino9/luogu/intellij/actions/ui/PasteUI.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/src/org/hoshino9/luogu/intellij/actions/ui/PasteUI.form -------------------------------------------------------------------------------- /src/org/hoshino9/luogu/intellij/actions/ui/PasteUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/src/org/hoshino9/luogu/intellij/actions/ui/PasteUI.java -------------------------------------------------------------------------------- /src/org/hoshino9/luogu/intellij/actions/ui/RecordUI.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/src/org/hoshino9/luogu/intellij/actions/ui/RecordUI.form -------------------------------------------------------------------------------- /src/org/hoshino9/luogu/intellij/actions/ui/RecordUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/src/org/hoshino9/luogu/intellij/actions/ui/RecordUI.java -------------------------------------------------------------------------------- /src/org/hoshino9/luogu/intellij/actions/ui/SubmitUI.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/src/org/hoshino9/luogu/intellij/actions/ui/SubmitUI.form -------------------------------------------------------------------------------- /src/org/hoshino9/luogu/intellij/actions/ui/SubmitUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/src/org/hoshino9/luogu/intellij/actions/ui/SubmitUI.java -------------------------------------------------------------------------------- /src/org/hoshino9/luogu/intellij/actions/ui/UnlockUI.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/src/org/hoshino9/luogu/intellij/actions/ui/UnlockUI.form -------------------------------------------------------------------------------- /src/org/hoshino9/luogu/intellij/actions/ui/UnlockUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/src/org/hoshino9/luogu/intellij/actions/ui/UnlockUI.java -------------------------------------------------------------------------------- /src/org/hoshino9/luogu/intellij/global.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/src/org/hoshino9/luogu/intellij/global.kt -------------------------------------------------------------------------------- /src/org/hoshino9/luogu/intellij/ui.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/src/org/hoshino9/luogu/intellij/ui.kt -------------------------------------------------------------------------------- /src/org/hoshino9/luogu/intellij/ui/VerifyUIImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/src/org/hoshino9/luogu/intellij/ui/VerifyUIImpl.kt -------------------------------------------------------------------------------- /src/org/hoshino9/luogu/intellij/ui/ui/VerifyUI.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/src/org/hoshino9/luogu/intellij/ui/ui/VerifyUI.form -------------------------------------------------------------------------------- /src/org/hoshino9/luogu/intellij/ui/ui/VerifyUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoshinoTented/luogu-intellij/HEAD/src/org/hoshino9/luogu/intellij/ui/ui/VerifyUI.java --------------------------------------------------------------------------------