Reversed order of changes; included v2.0005

master
Durel 7 years ago
parent 399dd2fb92
commit d6504a1f97

@ -1,32 +1,52 @@
dbot.changelog = {} dbot.changelog = {}
dbot.changelog[0.1] =
dbot.changelog[2.0005] =
{ {
{ change = drlDbotChangeLogTypeNew, { change = drlDbotChangeLogTypeNew,
desc = "Initial code base" desc = "Added changelog support"
},
{ change = drlDbotChangeLogTypeNew,
desc = "Added remote file access support (dbot.remote package)"
} }
} }
dbot.changelog[0.2] = dbot.changelog[2.0004] =
{ {
{ change = drlDbotChangeLogTypeNew, { change = drlDbotChangeLogTypeMisc,
desc = "Converted scripts into a plugin" desc = "Refresh code now forces your first refresh in a new session to use a full refresh scan. " ..
"This is necessary because items have have been moved or modified in a different client and " ..
"we need to know the current location of all items. This also allows us to detect if a no-" ..
"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 " ..
"send an incorrect (nil) return value in some error cases."
} }
} }
dbot.changelog[0.3] = dbot.changelog[2.0003] =
{ {
{ change = drlDbotChangeLogTypeNew, { change = drlDbotChangeLogTypeFix,
desc = "Functional plugin published to github" desc = "Fixed a bug that made it appear a plugin update was in progress before it actually started"
} }
} }
dbot.changelog[1.0] = dbot.changelog[2.0002] =
{ {
{ change = drlDbotChangeLogTypeNew, { change = drlDbotChangeLogTypeFix,
desc = "Major pieces are verified by alpha testers" desc = "Fixed incorrect formatting of plugin minor version number"
}
}
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"
} }
} }
@ -40,41 +60,32 @@ dbot.changelog[2.0000] =
} }
} }
dbot.changelog[2.0001] = dbot.changelog[1.0] =
{ {
{ change = drlDbotChangeLogTypeFix, { change = drlDbotChangeLogTypeNew,
desc = "Fixed update framework for older r1825 mush builds" desc = "Major pieces are verified by alpha testers"
},
{ change = drlDbotChangeLogTypeFix,
desc = "Properly handles if someone cancels a quit command"
} }
} }
dbot.changelog[2.0002] = dbot.changelog[0.3] =
{ {
{ change = drlDbotChangeLogTypeFix, { change = drlDbotChangeLogTypeNew,
desc = "Fixed incorrect formatting of plugin minor version number" desc = "Functional plugin published to github"
} }
} }
dbot.changelog[2.0003] = dbot.changelog[0.2] =
{ {
{ change = drlDbotChangeLogTypeFix, { change = drlDbotChangeLogTypeNew,
desc = "Fixed a bug that made it appear a plugin update was in progress before it actually started" desc = "Converted scripts into a plugin"
} }
} }
dbot.changelog[2.0004] = dbot.changelog[0.1] =
{ {
{ change = drlDbotChangeLogTypeMisc, { change = drlDbotChangeLogTypeNew,
desc = "Refresh code now forces your first refresh in a new session to use a full refresh scan. " .. desc = "Initial code base"
"This is necessary because items have have been moved or modified in a different client and " ..
"we need to know the current location of all items. This also allows us to detect if a no-" ..
"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 " ..
"send an incorrect (nil) return value in some error cases."
} }
} }

Loading…
Cancel
Save