πŸ“œ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

  1. Title:

    • Key: title

    • Type: String

    • Description: The title of the update.

    • Example:

      "title": "Bug Fix"
  2. Text:

    • Key: text

    • Type: String

    • Description: A description of the update or change.

    • Example:

      "text": "Fixed an issue with loading times."
  3. Date:

    • Key: date

    • Type: String (YYYY-MM-DD format)

    • Description: The date of the update.

    • Example:

      "date": "2025-01-01"
  4. Icon:

    • Key: icon

    • Type: String

    • Description: A Font Awesome icon representing the type of update.

    • Example:

      "icon": "fa-solid fa-bug"
  5. 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