Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 886 Bytes

changes.md

File metadata and controls

46 lines (31 loc) · 886 Bytes

Changes

0.1.005 to 0.2.001

Summary

  • saxo.communicate is now saxo.client
  • irc.queue is now irc.client
  • saxo.db is now saxo.database
  • irc.client is now split into items in irc.config
  • irc.server is now irc.config["server"]

Specifics

saxo.communicate("instruction", ("a", 2, []))

Becomes:

saxo.client("instruction", "a", 2, [])

And:

irc.queue(("instruction", "a", 2, []))

Becomes:

irc.client("instruction", "a", 2, [])

For obvious consistency.

  • irc.client["channels"] is now irc.config["channels"]
  • irc.client["nick"] is now irc.config["nick"]
  • irc.client["owner"] is now irc.config["owner"]
  • irc.client["prefix"] is now irc.config["prefix"]

No other attributes in [client] in the config file are currently copied.

There is also a new [plugins] section.