Add one-key installer for community SDKs

This commit is contained in:
Him188 2021-04-12 00:33:03 +08:00
parent fd5334946a
commit 7f2aa442ee
3 changed files with 28 additions and 2 deletions

View File

@ -10,7 +10,7 @@
**mirai 官方提供 [Kotlin/Java 等 JVM 平台语言开发支持](#jvm-平台-mirai-开发)。如果不熟悉这些语言,请使用以下社区 SDK** **mirai 官方提供 [Kotlin/Java 等 JVM 平台语言开发支持](#jvm-平台-mirai-开发)。如果不熟悉这些语言,请使用以下社区 SDK**
要使用这些插件需要先配置 Mirai Console推荐阅读 [用户手册](UserManual.md)。 要使用这些社区 SDK 需要先配置 Mirai Console可以使用 [一键安装](files/install-20210412.cmd)32位带 HTTP 插件),也可以阅读 [用户手册](UserManual.md) 进行个性化安装
你可以使用一个或多个语言来开发插件,而且在自己开发的同时也可以[使用下载的插件](UserManual.md#下载和安装插件)。 你可以使用一个或多个语言来开发插件,而且在自己开发的同时也可以[使用下载的插件](UserManual.md#下载和安装插件)。

View File

@ -1,6 +1,6 @@
# Mirai - UserManual # Mirai - UserManual
Mirai 用户手册。本文面向对开发不熟悉而希望使用 Mirai 的用户。 Mirai 用户手册。本文面向对开发不熟悉而希望使用 Mirai 的用户。如果你要开发,请先阅读 [开发文档](README.md)。
## 启动 Mirai ## 启动 Mirai

View File

@ -0,0 +1,26 @@
@echo off
powershell (new-object System.Net.WebClient).DownloadFile( 'https://github.com/iTXTech/mcl-installer/releases/download/2827601/mcl-installer-2827601-windows-amd64.exe','mcl-installer.exe')
del input.txt
REM 安装 Java
echo Y >> input.txt
REM 使用 Java 11
echo 11 >> input.txt
REM 使用 JRE
echo 1 >> input.txt
REM 使用 32 位 JRE 的兼容所有系统, 也方便如果要用 mirai-native
echo x32 >> input.txt
echo Y >> input.txt
echo Y >> input.txt
echo Y >> input.txt
echo Y >> input.txt
echo Y >> input.txt
echo Y >> input.txt
mcl-installer.exe < input.txt
del input.txt
del mcl-installer.exe
cmd /c mcl.cmd --update-package net.mamoe:mirai-api-http --channel stable --type plugin
echo
echo
echo 安装成功, 以后执行 mcl.cmd 即可启动 Mirai Console
echo Installation succeed. Run mcl.cmd to start Mirai Console.
pause