Skip to content
This repository was archived by the owner on May 24, 2020. It is now read-only.

v0.7.9

Latest

Choose a tag to compare

@simonknittel simonknittel released this 09 Jan 12:19
· 41 commits to master since this release

Changes

  • Every command can now have synonyms. The plugins can define synonyms itself, but you can also add your custom ones or disable by the plugin defined ones with your config.json.

    • Example:
    "plugins": {
        "general": {
            "commands": {
                "about": {
                    "synonyms": {
                        "help": {
                            "enabled": true
                        },
                        "about": {
                            "enabled": false
                        }
                    }
                }
            }
        }
    }
  • You can now add or remove multiple permissions at the same time with !op and !deop

    • Example: !op <user id> general:kill general:reload
  • You can now give the bot an avatar with !avatar <url or relative path> or by setting it in your config.json. Setting it to null will remove the avatar.

    • Example:
    "credentials": {
        "avatar": "url or relative path"
    }
  • You can now let your bot ignore channels defined by your config.json.

    • Example:
    {
        "ignoreChannels": [
            "#bot-free-channel"
        ]
    }