If your game is on Steam

You don't have to do anything. When you post an update to Steam, it will automatically be added to the website within 24 hours.

If your game is not on Steam

You can automate updates simply by providing a link to a JSON file containing your game's updates. We will check your website once every 24 hours for updates and automatically add them to the website.

The JSON file should be an array of objects with the following 3 properties (the newest update must be in index 0 with a unique version string):

  • version (unique string): The version number of the update. This is used to determine if the update is new or not so make sure it is unique for each update.

  • title (string): The title of the update.

  • content (string): The content of the update. You can use Markdown to format the content.

Here is an example of a valid JSON file:

{
  "updates": [
    {
      "version": "2.0.0",
      "title": "Second release",
      "content": "This is the second release of the game. It should be at index 0 in the updates array"
    },
    {
      "version": "1.0.0",
      "title": "Initial release",
      "content": "This is the first release of the game"
    }
  ]
}

Here is an example of a valid link to a JSON file:

https://example.com/updates.json

Please make sure that the file is publicly accessible! You should probably put in the public folder of your game and call it updates.json

If you have any questions, feel free to ask on Discord or Reddit.

Add the link to your updates.json file