Releases: Lyrenhex/Loki
Releases · Lyrenhex/Loki
v0.11.0
What's Changed
Full Changelog: v0.10.1...v0.11.0
Config Compatibility Break
These changes break compatibility with prior config files. Migration instructions:
The sections of the form:
[guilds.ID.nickname_lottery_data.user_specific_nicknames]
ID1 = [
"nickname1",
"nickname2",
# ...
]
ID2 = [
"n1",
"n2",
# ...
]
# ...
must be adjusted to be of the following form:
[[guilds.ID.nickname_lottery_data.user_specific_nicknames.ID1]]
nickname = "nickname1"
[[guilds.ID.nickname_lottery_data.user_specific_nicknames.ID1]]
nickname = "nickname2"
# ...
[[guilds.ID.nickname_lottery_data.user_specific_nicknames.ID2]]
nickname = "n1"
[[guilds.ID.nickname_lottery_data.user_specific_nicknames.ID2]]
nickname = "n2"
# ...
Optionally, author
, time
, and context
may be specified for each entry, where author
is a Discord UserID number (encapsulated in a string), time
is an ISO 8601 string, and context
is a string. Not including these fields will still work for a minimal functioning migration to the new feature, but information about those nicknames will be lacking compared to any newly created nicknames from this point on.
v0.10.1
v0.10.0
v0.9.1
v0.9.0
v0.8.2
v0.8.1
v0.8.0
v0.7.0
v0.6.2
Bugfix for last-minute bot votes not being counted in the tally.
Full Changelog: v0.6.1...v0.6.2