πUpdates.json
The Updates.json file manages the changelog section displayed on the loading screen. Use it to log server updates, bug fixes, and new features.
π Configuration Options
1. Updates Array
Key:
Updates
Type: Array of Objects
Description: Contains entries for each update or change.
π Update Properties
Title:
Key:
title
Type: String
Description: The title of the update.
Example:
"title": "Bug Fix"
Text:
Key:
text
Type: String
Description: A description of the update or change.
Example:
"text": "Fixed an issue with loading times."
Date:
Key:
date
Type: String (YYYY-MM-DD format)
Description: The date of the update.
Example:
"date": "2025-01-01"
Icon:
Key:
icon
Type: String
Description: A Font Awesome icon representing the type of update.
Example:
"icon": "fa-solid fa-bug"
Color:
Key:
color
Type: String (CSS color value)
Description: The color associated with the update.
Example:
"color": "red"
π Example Configuration
Hereβs an example of a complete Updates.json
file:
{
"Updates": [
{
"title": "Bug Fix",
"text": "Fixed an issue with loading times.",
"date": "2025-01-01",
"icon": "fa-solid fa-bug",
"color": "red"
},
{
"title": "New Feature",
"text": "Added a new music player to the loading screen.",
"date": "2025-01-02",
"icon": "fa-solid fa-plus",
"color": "green"
},
{
"title": "UI Update",
"text": "Improved the layout of the loading screen.",
"date": "2025-01-03",
"icon": "fa-solid fa-wrench",
"color": "blue"
}
]
}
β οΈ Notes
Use consistent formatting for
date
fields to maintain order.Choose appropriate icons and colors to visually differentiate updates.
Add or remove entries by editing the
Updates
array.
Keep your players informed about all the latest changes with a clear and organized changelog!
Last updated