You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
1.9 KiB
81 lines
1.9 KiB
7 years ago
|
|
||
|
|
||
|
dbot.changelog = {}
|
||
|
|
||
|
dbot.changelog[0.1] =
|
||
|
{
|
||
|
{ change = drlDbotChangeLogTypeNew,
|
||
|
desc = "Initial code base"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dbot.changelog[0.2] =
|
||
|
{
|
||
|
{ change = drlDbotChangeLogTypeNew,
|
||
|
desc = "Converted scripts into a plugin"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dbot.changelog[0.3] =
|
||
|
{
|
||
|
{ change = drlDbotChangeLogTypeNew,
|
||
|
desc = "Functional plugin published to github"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dbot.changelog[1.0] =
|
||
|
{
|
||
|
{ change = drlDbotChangeLogTypeNew,
|
||
|
desc = "Major pieces are verified by alpha testers"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dbot.changelog[2.0000] =
|
||
|
{
|
||
|
{ change = drlDbotChangeLogTypeFix,
|
||
|
desc = "Version code now realizes v1.1 ~= v1.10 :P"
|
||
|
},
|
||
|
{ change = drlDbotChangeLogTypeNew,
|
||
|
desc = "Added update capabilities"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dbot.changelog[2.0001] =
|
||
|
{
|
||
|
{ change = drlDbotChangeLogTypeFix,
|
||
|
desc = "Fixed update framework for older r1825 mush builds"
|
||
|
},
|
||
|
{ change = drlDbotChangeLogTypeFix,
|
||
|
desc = "Properly handles if someone cancels a quit command"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dbot.changelog[2.0002] =
|
||
|
{
|
||
|
{ change = drlDbotChangeLogTypeFix,
|
||
|
desc = "Fixed incorrect formatting of plugin minor version number"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dbot.changelog[2.0003] =
|
||
|
{
|
||
|
{ change = drlDbotChangeLogTypeFix,
|
||
|
desc = "Fixed a bug that made it appear a plugin update was in progress before it actually started"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dbot.changelog[2.0004] =
|
||
|
{
|
||
|
{ change = drlDbotChangeLogTypeMisc,
|
||
|
desc = "Refresh code now forces your first refresh in a new session to use a full refresh scan.\n" ..
|
||
|
"This is necessary because items have have been moved or modified in a different client and\n" ..
|
||
|
"we need to know the current location of all items. This also allows us to detect if a no-\n" ..
|
||
|
"save item was removed after the last session."
|
||
|
},
|
||
|
{ change = drlDbotChangeLogTypeFix,
|
||
|
desc = "Fixed incorrect return value check in the plugin update code. The previous code could\n" ..
|
||
|
"send an incorrect (nil) return value in some error cases."
|
||
|
}
|
||
|
}
|
||
|
|