Move setting to correct place
@ -23,7 +23,7 @@ At the time of writing, VFP is the only protocol translation platform for the cl
|
||||
- Bedrock (1.20.0)
|
||||
|
||||
# For users
|
||||
### Detailed instructions for use are available [here](documentation/USAGE.md)
|
||||
### Detailed instructions for use are available [here](docs/USAGE.md)
|
||||
### If you encounter any issues, please report them on the [issue tracker](https://github.com/ViaVersion/ViaFabricPlus/issues) or on the ViaVersion [Discord](https://discord.gg/viaversion)
|
||||
|
||||
## Known incompatibilities
|
||||
@ -135,7 +135,7 @@ dependencies {
|
||||
</dependencies>
|
||||
```
|
||||
|
||||
### To learn more about the API and about addons, you can simply click [here](documentation/DEVELOPER_API.md)
|
||||
### To learn more about the API and about addons, you can simply click [here](docs/DEVELOPER_API.md)
|
||||
|
||||
## Disclaimer
|
||||
|
||||
|
@ -3,13 +3,13 @@ In the multiplayer screen you will find the ViaFabricPlus button in the upper le
|
||||
click on it, and you will see the Protocol selection, there you can choose the Minecraft version you want to connect to,
|
||||
in the upper left corner you can go to the Settings.
|
||||
|
||||
![](images/multiplayer.png)
|
||||
![](images/protocol.png)
|
||||
![](preview/multiplayer.png)
|
||||
![](preview/protocol.png)
|
||||
|
||||
In the Add/Edit Server screen there is a button where you can select a specific version for this server, when you ping or connect to this server,
|
||||
ViaFabricPlus will use the version set there, the versions are stored in the servers.dat too
|
||||
|
||||
![](images/force.png)
|
||||
![](preview/force.png)
|
||||
|
||||
If you don't want to specify a specific version anymore, you can simply press the button and select **"Cancel and reset"**.
|
||||
|
||||
@ -20,7 +20,7 @@ You can use the ViaVersion commands with **/viafabricplus** or **/viaversion**,
|
||||
|
||||
|
||||
### Settings are optional settings that can turn fixes on and off, originally they were used for debugging<br>
|
||||
![](images/settings.png)
|
||||
![](preview/settings.png)
|
||||
|
||||
## Bedrock edition
|
||||
Keep in mind that the Java -> Bedrock support is still in beta phase, and therefore many things are not implemented
|
||||
@ -32,10 +32,10 @@ then you can log in via device login, the account logged in there will be stored
|
||||
## ClassiCube and BetaCraft integration
|
||||
In the main GUI there is an extra button for ClassiCube and BetaCraft, both buttons send API requests to the respective platforms to get the respective server list.
|
||||
## BetaCraft
|
||||
![](images/betacraft.png)
|
||||
![](preview/betacraft.png)
|
||||
|
||||
## ClassiCube
|
||||
![](images/classicube.png)
|
||||
![](preview/classicube.png)
|
||||
|
||||
For ClassiCube you need an account, which you can make on the official website (https://www.classicube.net/), in case ClassiCube requires MultiFactor, an extra GUI will open in ViaFabricPlus.
|
||||
![](images/classicube-login.png)
|
||||
![](preview/classicube-login.png)
|
Before Width: | Height: | Size: 382 KiB After Width: | Height: | Size: 382 KiB |
Before Width: | Height: | Size: 346 KiB After Width: | Height: | Size: 346 KiB |
Before Width: | Height: | Size: 393 KiB After Width: | Height: | Size: 393 KiB |
Before Width: | Height: | Size: 138 KiB After Width: | Height: | Size: 138 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 371 KiB After Width: | Height: | Size: 371 KiB |
Before Width: | Height: | Size: 397 KiB After Width: | Height: | Size: 397 KiB |
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -4,4 +4,4 @@ distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
|
||||
networkTimeout=10000
|
||||
validateDistributionUrl=true
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
zipStorePath=wrapper/dist
|
||||
|
@ -45,9 +45,9 @@ public class VisualSettings extends SettingGroup {
|
||||
public final VersionedBooleanSetting emulateArmorHud = new VersionedBooleanSetting(this, Text.translatable("visual_settings.viafabricplus.emulate_armor_hud"), VersionRange.andOlder(VersionEnum.r1_8));
|
||||
public final VersionedBooleanSetting removeNewerFeaturesFromCommandBlockScreen = new VersionedBooleanSetting(this, Text.translatable("visual_settings.viafabricplus.remove_newer_features_from_command_block_screen"), VersionRange.andOlder(VersionEnum.r1_8));
|
||||
public final VersionedBooleanSetting showSuperSecretSettings = new VersionedBooleanSetting(this, Text.translatable("visual_settings.viafabricplus.show_super_secret_settings"), VersionRange.andOlder(VersionEnum.r1_8));
|
||||
public final VersionedBooleanSetting enableSwordBlocking = new VersionedBooleanSetting(this, Text.translatable("visual_settings.viafabricplus.enable_sword_blocking"), VersionRange.andOlder(VersionEnum.r1_8));
|
||||
|
||||
// 1.8.x -> 1.7.6 - 1.7.10
|
||||
public final VersionedBooleanSetting enableSwordBlocking = new VersionedBooleanSetting(this, Text.translatable("visual_settings.viafabricplus.enable_sword_blocking"), VersionRange.andOlder(VersionEnum.r1_7_6tor1_7_10));
|
||||
public final VersionedBooleanSetting enableBlockHitAnimation = new VersionedBooleanSetting(this, Text.translatable("visual_settings.viafabricplus.enable_block_hit_animation"), VersionRange.andOlder(VersionEnum.r1_7_6tor1_7_10));
|
||||
|
||||
// 1.0.0-1.0.1 -> b1.8-b1.8.1
|
||||
|