Skip to content

Commit

Permalink
v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ddf8196 committed Aug 21, 2021
1 parent c9b948c commit 54cbd40
Show file tree
Hide file tree
Showing 279 changed files with 15,248 additions and 1,126 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,22 @@ Minecraft Bedrock Edition 假人客户端
* 假人死亡自动复活

## 正在开发中的功能
* 假人投掷三叉戟
* 假人睡觉
* 假人背包相关操作

## 支持的版本
* 理论上支持1.7.0到1.17.10之间的所有版本
* 理论上支持1.7.0到1.17.11之间的所有版本

## WebSocket API
* FakePlayer提供WebSocket API以供其他插件/程序与FakePlayer进行通信,目前支持的操作有添加/删除假人,获取假人列表等
* 具体消息格式见[FakePlayer Wiki](https://github.com/ddf8196/FakePlayer/wiki/WebSocket-API)
* WebSocket API仅为本地进程间通信设计,消息采用明文传输,不考虑安全性,因此请勿尝试远程连接WebSocket,也请不要对外开放WebSocket端口

## 使用的第三方库
* [Protocol](https://github.com/CloudburstMC/Protocol)
* [Gson](https://github.com/google/gson)
* [FlatLaf](https://github.com/JFormDesigner/FlatLaf)
* [Java-WebSocket](https://github.com/TooTallNate/Java-WebSocket)
* SnakeYaml
* slf4j-nop
* [Protocol](https://github.com/CloudburstMC/Protocol) ([Apache License 2.0](https://github.com/CloudburstMC/Protocol/blob/develop/LICENSE))
* [Gson](https://github.com/google/gson) ([Apache License 2.0](https://github.com/google/gson/blob/master/LICENSE))
* [FlatLaf](https://github.com/JFormDesigner/FlatLaf) ([Apache License 2.0](https://github.com/JFormDesigner/FlatLaf/blob/main/LICENSE))
* [Java-WebSocket](https://github.com/TooTallNate/Java-WebSocket) ([MIT License](https://github.com/TooTallNate/Java-WebSocket/blob/master/LICENSE))
* [MiGLayout Swing](https://github.com/mikaelgrev/miglayout) ([BSD 3-Clause "New" or "Revised" license](http://www.debian.org/misc/bsd.license))
* SnakeYaml ([Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt))
* SLF4J NOP Binding ([MIT License]( http://www.opensource.org/licenses/mit-license.php))
13 changes: 7 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group 'com.ddf'
version '0.2.7-SNAPSHOT'
version '0.4.0-Beta'

repositories {
maven {
Expand All @@ -27,11 +27,12 @@ repositories {

dependencies {
implementation 'com.nukkitx.protocol:bedrock-v448:2.8.1-SNAPSHOT'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'org.yaml:snakeyaml:1.27'
implementation 'com.formdev:flatlaf:1.0'
implementation 'org.java-websocket:Java-WebSocket:1.5.1'
implementation 'org.slf4j:slf4j-nop:1.7.25'
implementation 'com.google.code.gson:gson:2.8.7'
implementation 'org.yaml:snakeyaml:1.29'
implementation 'com.formdev:flatlaf:1.5'
implementation 'org.java-websocket:Java-WebSocket:1.5.2'
implementation 'org.slf4j:slf4j-nop:1.7.32'
implementation 'com.miglayout:miglayout-swing:5.3'
}

sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down
Loading

0 comments on commit 54cbd40

Please sign in to comment.