update.json

The file required for Bit: Cores plugin update system to work

The bot will check the update json for the latest version of the plugin, where to download it from and what version of Bit: Core it's for.

OptionDescriptionAccepted ValuesRequired

latest

The latest plugin version

string

developer

The plugins developer name

string

downloadLink

A link to the plugins latest version, is sent to the bots console when outdated

string/url

bit-version's

Each bit version can have it's own "latest" version. If a specified version is not found the bot will tell the user to update their Bit version.

string

Update JSON Example

{
    "latest": "1.0.0",
    "developer": "Lockyz Dev",
    "downloadLink": "https://cdn.lockyzdev.net/bit/plugins/xp/latest.zip",
    "5.0": "1.0.0-pre",
    "5.1": "1.0.0-pre",
}

Changes as of Bit 2024.1

There have been MANY changes within Bit 2024.1. Please check Updating to Bit 2024.1 for detailed information

All options are now in snake case, however plugins that are made for older versions of Bit should use the legacy values. The "latest" field has been removed and all the various bit versions are under an array, if your plugin is available for legacy versions of Bit, please use the legacy values as well (We're aware this may be annoying for some, as Bit matures and we start to create a consistent code style, various things will change)

Update JSON Example

{
    "download_link": "https://cdn.lockyzmedia.com/bit/plugins/xp/latest.zip",
    "bit_versions": {
        "2024.1": "2.0.0"
    }
}

Update JSON Example with Legacy Options - As the "developer" option was never actually used, it should NOT be used when legacy versions are available.

{
    "download_link": "https://cdn.lockyzmedia.com/bit/plugins/xp/latest.zip",
    "bit_versions": {
        "2024.1": "2.0.0",
    },
    "downloadLink": "https://cdn.lockyzmedia.com/bit/plugins/xp/latest.zip",
    "latest": "2.0.0",
    "5.1": "1.0.0",
    "5.0": "1.0.0"
}

Last updated

Copyright 2018-2024 Lockyz Media