diff --git a/CHANGELOG.md b/CHANGELOG.md index 2741dd3..104acf6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# v1.12.0 + +- Add `convertTimestamp` default command, outputs a human-readable timestamp from epoch seconds +- Add `positiveInteger`, `nonNegativeInteger`, `byte` (0-255), `digit` (0-9) built-in types (including respective plural types) +- Add `json` built-in type, takes in a Json string and provides a Luau table +- Add internal IsServer assertions for `RegisterDefaultCommands` and `commandServerScript` +- Add 'tips' to the help command output +- Make window scroll to bottom on input +- Make fuzzy finders search the entire string, rather than looking at the start +- Make autocomplete menu scrollable +- Fix window not resizing on clear +- Remove global initialization scripts feature + # v1.11.0 - Add support for new Roblox CoreGui Chat diff --git a/Cmdr/BuiltInCommands/Debug/version.lua b/Cmdr/BuiltInCommands/Debug/version.lua index 051602f..e04f5bd 100644 --- a/Cmdr/BuiltInCommands/Debug/version.lua +++ b/Cmdr/BuiltInCommands/Debug/version.lua @@ -1,4 +1,4 @@ -local version = "v1.11.0" +local version = "v1.12.0" return { Name = "version", diff --git a/rotriever.toml b/rotriever.toml index c7245c1..019ee3e 100644 --- a/rotriever.toml +++ b/rotriever.toml @@ -2,5 +2,5 @@ name = "evaera/Cmdr" author = "evaera" content_root = "Cmdr" -version = "1.11.0" +version = "1.12.0" license = "MIT" diff --git a/wally.toml b/wally.toml index 9d63535..d714170 100644 --- a/wally.toml +++ b/wally.toml @@ -1,7 +1,7 @@ [package] name = "evaera/cmdr" description = "Extensible command console for Roblox developers" -version = "1.11.0" +version = "1.12.0" license = "MIT" registry = "https://github.com/UpliftGames/wally-index" realm = "shared"