Configuration

PluginUpdater's configuration should not be edited directly. Use available commands to safely change any option.

The configuration uses YAML, and is easy to understand. Below is a basic example of config.yml.

plugin:
    PluginUpdater:
        automatic: false
        enabled: false
        slug: pluginupdater
    WorldEdit:
        automatic: true
        enabled: true
        slug: worldedit
        checksum: a18bb5a577b59c587a4d551b1f8a1ff5
automatic-updates:
    enabled: false
    interval:
        hours: 2

If you must make a change manually, do so while the server is off, or the plugin will simply overwrite your change.

plugin: This node is where the plugin automatically keeps track of your installed plugins and their own individual settings. Automatic updates can be toggled for each plugin. Each plugin can be disabled, so that PluginUpdater never interacts with it (e.g. custom plugins). BukkitDev slugs are recorded for each plugin, and can be manually changed if there is a discovery error. Checksums are stored for Zip files, if a plugin uses Zip releases (e.g. WorldEdit and WorldGuard), so that the plugin is able to know if an update has been made.

automatic-updates: Automatic updates can be globally toggled. Their interval can be set in hours.