diff --git a/README.MD b/README.MD index f5f8817..3c30562 100644 --- a/README.MD +++ b/README.MD @@ -6,6 +6,10 @@ _Also known as ICU_ This project is a third-party version of [ISeeYou](https://github.com/MC-XiaoHei/ISeeYou), aiming to bring a high-performance branch with more practical features. +I am also one of the contributors to the original project, and the original author of this plugin is [MC-XiaoHei](https://github.com/MC-XiaoHei). + +This project is open source under the MIT license on [Github](https://github.com/Xavier-MC/ISeeYou). + [中文](README_CN.md) | [English](README.MD) --- @@ -60,6 +64,10 @@ recordPath = "replay/player/${name}@${uuid}" # Description: Whether to enable Bstats . Default is false. enableBstats = true +# Default: true +# Description: Whether to enable UpdateChecker . Default is true. +enableUpdateChecker = true + [pauseRecordingOnHighSpeed] # Description: Whether to enable the high-speed recording pause function. This function pauses recording when the player moves at high speed. Default is false. enabled = false diff --git a/README_CN.md b/README_CN.md index 4acfef0..7e8b473 100644 --- a/README_CN.md +++ b/README_CN.md @@ -6,6 +6,10 @@ _也可以叫ICU_ 本项目为[ISeeYou](https://github.com/MC-XiaoHei/ISeeYou)的第三方版本,旨在带来更多实用功能的高性能分支。 +本人也是原项目的贡献者之一,本插件原作者[MC-XiaoHei](https://github.com/MC-XiaoHei)。 + +本项目基于MIT协议开源于[Github](https://github.com/Xavier-MC/ISeeYou) + [中文](README_CN.md) | [English](README.MD) --- @@ -57,9 +61,13 @@ pauseInsteadOfStopRecordingOnPlayerQuit = false recordPath = "replay/player/${name}@${uuid}" # 默认值: true -# 描述: 是否启用Bstats(BungeeCord统计)。默认值为false。 +# 描述: 是否启用Bstats(BungeeCord统计)。默认值为true。 enableBstats = true +# 默认值: true +# 描述: 是否启用新版本检测。默认值为true。 +enableUpdateChecker = true + [pauseRecordingOnHighSpeed] # 描述: 是否启用高速录制暂停功能。此功能在玩家以高速移动时暂停录制。默认值为false。 enabled = false diff --git a/build.gradle.kts b/build.gradle.kts index 963da5a..d5d8301 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ plugins { } group = "xaviermc.top" -version = "1.1.5" +version = "1.1.6" repositories { mavenLocal() @@ -25,7 +25,7 @@ repositories { dependencies { compileOnly(files("libs/ThemisAPI_0.15.3.jar")) compileOnly(files("libs/Matrix_7.7.15A.jar")) - compileOnly("top.leavesmc.leaves:leaves-api:1.20.1-R0.1-SNAPSHOT") + compileOnly("top.leavesmc.leaves:leaves-api:1.20.4-R0.1-SNAPSHOT") implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") compileOnly("org.bstats:bstats-bukkit:3.0.2") implementation("com.moandjiezana.toml:toml4j:0.7.2")