Skip to content

Releases: Andre601/OneVersionRemake

v1.3.0: Added {userVersion} placeholder.

06 Mar 13:54
Compare
Choose a tag to compare
+ {userVersion}
  Displays the version of the client, when supported.

v1.2.2: Added 1.15.2

27 Jan 20:18
70a5a31
Compare
Choose a tag to compare
+ Protocol 578 (1.15.2) for {version} placeholder

v1.2.0: 1.15.1 support, rewritten config, new Exact mode

19 Dec 21:36
Compare
Choose a tag to compare

The config was rewritten! Please let the plugin make a new config, or update your current one to the below shown example!

+ 1.15.1 support (Protocol 575)
+ New "Exact" mode. In this mode will the plugin deny all clients that do not use the same version as defined.

New default config.yml

##########################################################
#       ____ _    ______                                 #
#      / __ \ |  / / __ \            OneVersionRemake    #
#     / / / / | / / /_/ /                by Andre_601    #
#    / /_/ /| |/ / _, _/                                 #
#    \____/ |___/_/ |_|                                  #
#                                                        #
#    GitHub:                                             #
#        https://github.com/Andre601/OneVersionRemake    #
#                                                        #
#    Spigot:                                             #
#        https://spigotmc.org/resources/71727/           #
##########################################################
#
# Setting for what protocol version should be used and how OVR should handle joining players.
#
Protocol:
  #
  # Set if players need to have this exact protocol version to join the network.
  # Setting this to false (default) will allow players with newer versions to join your network.
  # For example may players with 1.15 join your network, if the set protocol corresponds to 1.14
  #
  Exact: false
  #
  # The protocol version that should be used.
  # Depending on the above options would players need to either have the same version when joining, or at least a
  # newer one.
  #
  # A list of all supported protocols for the plugin can be found here:
  #   https://github.com/andre601/OneVersionRemake/wiki/Supported-Protocols
  #
  Version: -1

#
# The various messages you can change.
#
Messages:
  #
  # This message would be shown where usually the current player count is displayed.
  # Color and formatting codes are supported.
  #
  # Set this to an empty String ('') to disable.
  #
  # Placeholder:
  #   {version} ->  Displays the version a player needs to join
  #                 The displayed version is set through the above Protocol number (e.g. 573 becomes 1.15)
  #
  # PlayerCount: '' # Uncomment this and comment out the below option, to disable this.
  PlayerCount: '&cUnsupported client! Use {version} instead!'
  #
  # Message shown when the player gets kicked while using an unsupported version.
  # Color and formatting codes are supported.
  #
  # Placeholder:
  #   {version} ->  Displays the version a player needs to join
  #                 The displayed version is set through the above Protocol number (e.g. 573 becomes 1.15)
  #
  Kick:
  - '&cYou are using an unsupported version of Minecraft!'
  - '&cPlease change your version to {version} and try again.'
  #
  # This text is shown when the cursor of the player hovers over the player count, which normally displays the current
  # online players.
  # Color and formatting codes are supported.
  #
  # Change this to "Hover: []" to disable
  #
  # Placeholder:
  #   {version} ->  Displays the version a player needs to join
  #                 The displayed version is set through the above Protocol number (e.g. 573 becomes 1.15)
  #
  # Hover: [] # uncomment this and comment out the below lines to disable this option.
  Hover:
  - '&cYou are using an unsupported version of Minecraft!'
  - '&cPlease change your version to {version}.'

v1.1.0: Updated to BungeeCord 1.15 API

12 Dec 14:56
Compare
Choose a tag to compare

This update introduces support for the lates BungeeCord API which is 1.15-SNAPSHOT.
It also adds support for the 1.15 protocol version (573) in the {version} placeholder, displaying "1.15"

v1.0.2: Implemented Hover message

03 Oct 11:34
Compare
Choose a tag to compare

This release includes a new hover message that can be used for the outdated version.
Like with the player count name and the kick message can you use {version} in this one.

This release also acts as the first test for GitHub actions to see if it works.