fix: update references and add additional launch parameters in documentation
This commit is contained in:
@@ -29,6 +29,12 @@
|
|||||||
- 🔬 **生电功能增强** - 在 Folia 上实现更多生电内容(完整生电请使用 Fabric)
|
- 🔬 **生电功能增强** - 在 Folia 上实现更多生电内容(完整生电请使用 Fabric)
|
||||||
- 🛠️ **更多实用功能** - 持续添加有用的服务器功能
|
- 🛠️ **更多实用功能** - 持续添加有用的服务器功能
|
||||||
|
|
||||||
|
### 额外启动参数
|
||||||
|
|
||||||
|
- morninggloryclip.useMojangSource 强制服务端使用mojang源下载文件
|
||||||
|
- morninggloryclip.enable.mixin 启用服务器插件的mixin支持
|
||||||
|
|
||||||
|
|
||||||
## 📥 下载
|
## 📥 下载
|
||||||
|
|
||||||
### 稳定版本
|
### 稳定版本
|
||||||
@@ -79,7 +85,7 @@ dependencies {
|
|||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>fun.bm.lophine</groupId>
|
<groupId>fun.bm.lophine</groupId>
|
||||||
<artifactId>luminol-api</artifactId>
|
<artifactId>lophine-api</artifactId>
|
||||||
<version>$VERSION</version>
|
<version>$VERSION</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|||||||
+6
-1
@@ -29,6 +29,11 @@
|
|||||||
- 🔬 **Redstone Enhancement** - More redstone functionality on Folia (use Fabric for complete redstone features)
|
- 🔬 **Redstone Enhancement** - More redstone functionality on Folia (use Fabric for complete redstone features)
|
||||||
- 🛠️ **More Useful Functions** - Continuously adding useful server features
|
- 🛠️ **More Useful Functions** - Continuously adding useful server features
|
||||||
|
|
||||||
|
### Additional Launch Parameters
|
||||||
|
|
||||||
|
- morninggloryclip.useMojangSource - Use Mojang's source for Minecraft Server
|
||||||
|
- morninggloryclip.enable.mixin - Enable mixin support for Leaves Plugin
|
||||||
|
|
||||||
## 📥 Download
|
## 📥 Download
|
||||||
|
|
||||||
### Stable Releases
|
### Stable Releases
|
||||||
@@ -79,7 +84,7 @@ dependencies {
|
|||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>fun.bm.lophine</groupId>
|
<groupId>fun.bm.lophine</groupId>
|
||||||
<artifactId>luminol-api</artifactId>
|
<artifactId>lophine-api</artifactId>
|
||||||
<version>$VERSION</version>
|
<version>$VERSION</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|||||||
+1
-1
@@ -2,7 +2,7 @@ group=fun.bm.lophine
|
|||||||
mcVersion=26.2
|
mcVersion=26.2
|
||||||
apiVersion=26.2
|
apiVersion=26.2
|
||||||
channel=STABLE
|
channel=STABLE
|
||||||
clipVersion=3.0.18
|
clipVersion=1.0.0
|
||||||
weightVersion=2.0.15
|
weightVersion=2.0.15
|
||||||
# true for release, false for skip release, pre for pre-release
|
# true for release, false for skip release, pre for pre-release
|
||||||
release=pre
|
release=pre
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
dependencies {
|
dependencies {
|
||||||
mache("io.papermc:mache:26.2+build.1")
|
mache("io.papermc:mache:26.2+build.1")
|
||||||
- paperclip("io.papermc:paperclip:3.0.4")
|
- paperclip("io.papermc:paperclip:3.0.4")
|
||||||
+ hyacinthusclip("moe.luminolmc:hyacinthusclip:${providers.gradleProperty("clipVersion").get()}") // TODO Later - rebrand
|
+ hyacinthusclip("fun.bm:morninggloryclip:${providers.gradleProperty("clipVersion").get()}") // TODO Later - rebrand
|
||||||
}
|
}
|
||||||
|
|
||||||
paperweight {
|
paperweight {
|
||||||
|
|||||||
@@ -163,7 +163,7 @@ public final class AutoUpdateHelper {
|
|||||||
|
|
||||||
if (finalJarPath.equals(stagedJar)) {
|
if (finalJarPath.equals(stagedJar)) {
|
||||||
LOGGER.info(
|
LOGGER.info(
|
||||||
"Downloaded the latest Lophine jar to {} and refreshed auto_update/core.path for Hyacinthusclip. Please restart your server.",
|
"Downloaded the latest Lophine jar to {} and refreshed auto_update/core.path for Clip. Please restart your server.",
|
||||||
finalJarPath.toAbsolutePath()
|
finalJarPath.toAbsolutePath()
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ public class ServerFeatureManager implements FeatureManager {
|
|||||||
availableFeatures.add(FAKEPLAYER); // Lophine - fakeplayer support
|
availableFeatures.add(FAKEPLAYER); // Lophine - fakeplayer support
|
||||||
availableFeatures.add(PHOTOGRAPHER); // Lophine - Replay Mod API support
|
availableFeatures.add(PHOTOGRAPHER); // Lophine - Replay Mod API support
|
||||||
availableFeatures.add(UPDATE_SUPPRESSION_EVENT); // Lophine - update suppression event support
|
availableFeatures.add(UPDATE_SUPPRESSION_EVENT); // Lophine - update suppression event support
|
||||||
if (Boolean.getBoolean("leavesclip.enable.mixin") || Boolean.getBoolean("hyacinthusclip.enable.mixin")) {
|
if (Boolean.getBoolean("morninggloryclip.enable.mixin")) {
|
||||||
availableFeatures.add(MIXIN);
|
availableFeatures.add(MIXIN);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user