├── .gitignore ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── src ├── main ├── kotlin │ └── xyz │ │ └── cssxsh │ │ └── mirai │ │ └── device │ │ ├── MiraiDeviceGenerator.kt │ │ ├── MiraiDevicePlugin.kt │ │ └── MiraiDeviceReset.kt └── resources │ ├── META-INF │ └── services │ │ └── net.mamoe.mirai.console.plugin.jvm.JvmPlugin │ └── xyz │ └── cssxsh │ └── mirai │ └── device │ ├── mac.json │ ├── models.json │ └── sdks.json └── test └── kotlin └── xyz └── cssxsh └── mirai └── device └── MiraiDeviceGeneratorTest.kt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cssxsh/mirai-device-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cssxsh/mirai-device-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cssxsh/mirai-device-generator/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cssxsh/mirai-device-generator/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cssxsh/mirai-device-generator/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cssxsh/mirai-device-generator/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cssxsh/mirai-device-generator/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "mirai-device-generator" -------------------------------------------------------------------------------- /src/main/kotlin/xyz/cssxsh/mirai/device/MiraiDeviceGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cssxsh/mirai-device-generator/HEAD/src/main/kotlin/xyz/cssxsh/mirai/device/MiraiDeviceGenerator.kt -------------------------------------------------------------------------------- /src/main/kotlin/xyz/cssxsh/mirai/device/MiraiDevicePlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cssxsh/mirai-device-generator/HEAD/src/main/kotlin/xyz/cssxsh/mirai/device/MiraiDevicePlugin.kt -------------------------------------------------------------------------------- /src/main/kotlin/xyz/cssxsh/mirai/device/MiraiDeviceReset.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cssxsh/mirai-device-generator/HEAD/src/main/kotlin/xyz/cssxsh/mirai/device/MiraiDeviceReset.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/services/net.mamoe.mirai.console.plugin.jvm.JvmPlugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cssxsh/mirai-device-generator/HEAD/src/main/resources/META-INF/services/net.mamoe.mirai.console.plugin.jvm.JvmPlugin -------------------------------------------------------------------------------- /src/main/resources/xyz/cssxsh/mirai/device/mac.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cssxsh/mirai-device-generator/HEAD/src/main/resources/xyz/cssxsh/mirai/device/mac.json -------------------------------------------------------------------------------- /src/main/resources/xyz/cssxsh/mirai/device/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cssxsh/mirai-device-generator/HEAD/src/main/resources/xyz/cssxsh/mirai/device/models.json -------------------------------------------------------------------------------- /src/main/resources/xyz/cssxsh/mirai/device/sdks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cssxsh/mirai-device-generator/HEAD/src/main/resources/xyz/cssxsh/mirai/device/sdks.json -------------------------------------------------------------------------------- /src/test/kotlin/xyz/cssxsh/mirai/device/MiraiDeviceGeneratorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cssxsh/mirai-device-generator/HEAD/src/test/kotlin/xyz/cssxsh/mirai/device/MiraiDeviceGeneratorTest.kt --------------------------------------------------------------------------------