• 4.4.0 254f4c9440

    github-actions[bot] released this 2023-08-29 04:11:53 +00:00 | 73 commits to main since this release

    This change features integration for roguelikes servers to colorize and ignore log output from bots that post game status updates.

    Note for consumers: The log format has changed slightly from the original project upstream. Some properties were removed, the ircOptions format is different (but basic options are the same with sane defaults), and some property names changed in casing. Please see the example config in the install guide.

    image

    Example snippet, note the channel and user names are on the IRC side:

        "gameLogConfig": {
          "patterns": [
            {
              "user": "Luigi2",
              "matches": [{
                "regex": " was killed by | was annihilated by | was vaporized by | was destroyed by | was killed and destroyed by | was torn up by | was shredded by | was wasted by | was crushed by ",
                "color": "0;31"
              }, {
                "regex": "Morgoth, Lord of Darkness was slain by ",
                "color": "0;33"
              }, {
                "regex": "Michael, the Guardian Overlord was slain by |Bahamut, the Platinum King was slain by |The Living Lightning was slain by |Tik'srvzllat was slain by |The Hellraiser was slain by |Zu-Aon, The Cosmic Border Guard was slain by ",
                "color": "0;34"
              }]
            }
          ]
        },
        "ignoreConfig": {
          "ignorePatterns": [
            {
              "#cheems-test": [
                " has entered the game.",
                " has left the game."
              ]
            }
          ]
        },
    

    What's Changed

    Full Changelog: https://github.com/aronson/discord-irc/compare/4.3.0...4.4.0

    Downloads