Skip to content

Commit

Permalink
Move setting to correct place
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianMichael committed Nov 27, 2023
1 parent 94471bf commit c62aa75
Show file tree
Hide file tree
Showing 12 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
File renamed without changes.
14 changes: 7 additions & 7 deletions documentation/USAGE.md → docs/USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"**.

Expand All @@ -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
Expand All @@ -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)
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c62aa75

Please sign in to comment.