Migrate from v1.5.3 to v1.6.0 - Andre601/AdvancedServerList GitHub Wiki

wiki-moved Wiki moved!

The wiki has been moved to a new location and can be found here: https://docs.andre601.ch/AdvancedServerList

v1.6.0 brought some changes to the Structure of the Server List Profile that requires you to perform an update to your files.

Migration should be relatively easy as you only have to update a few options:

  • playerCount is now a Section containing hidePlayers and the other renamed options:
    • players -> hover
    • playerCount -> text
  • xMore has been removed. Instead is there now a new section called extraPlayers in the playerCount Section:
    • enabled is used to enable/disable the option.
    • amount is the previous xMore with the difference that it now allows negative numbers too.

Example

Assume we have the following file from v1.5.3...

priority: 0

motd:
  - 'Line 1'
  - 'Line 2'

favicon: '${player name}'

hidePlayers: false

players:
  - 'Line 1'
  - 'Line 2'
  - 'Line 3'

playerCount: '<grey>Hover Me!'

xMore: 1

...in v1.6.0 will it now look like this:

priority: 0

motd:
  - 'Line 1'
  - 'Line 2'

favicon: '${player name}'

playerCount:
  hidePlayers: false
  
  hover:
    - 'Line 1'
    - 'Line 2'
    - 'Line 3'
  
  text: '<grey>Hover Me!'
  
  extraPlayers:
    enabled: true
    
    amount: 1
⚠️ **GitHub.com Fallback** ⚠️