Skip to content

Commit

Permalink
Increased version.
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidF-Dev committed Aug 5, 2021
1 parent 6766daa commit 504327f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.9-alpha] - 2021-08-05
- Added events for when the console is enabled/disabled, opened/closed and focused/unfocused.
- Added option for commands created using the attribute to only be available in development builds.
- Added helper methods to start coroutines or invoke methods after a time has passed.
- Added command: "log_size" - changes the font size used in the developer console log.
- Added command: "customcommands" - lists available custom commands.
- Changed key binds to be disabled when any object is selected by the current event system.
- Fixed issues to do with interacting with the input field.

## [0.1.7-alpha] - 2021-07-29
- Initial pre-release for internal testing.
2 changes: 1 addition & 1 deletion Runtime/DevConsoleMono.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ internal sealed class DevConsoleMono : MonoBehaviour

#endregion

private static readonly Version _version = new Version(0, 1, 8);
private static readonly Version _version = new Version(0, 1, 9);
private static readonly string[] _permanentCommands =
{
"devconsole", "commands", "help", "print", "clear", "reset", "bind", "unbind", "bindings"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.davidfdev.devconsole",
"version": "0.1.8-alpha",
"version": "0.1.9-alpha",
"displayName": "In-game Developer Console by DavidFDev",
"description": "A user-friendly in-game developer console that allows developers or players to execute commands or view incoming Unity messages. (MIT License)",
"unity": "2020.1",
Expand Down

0 comments on commit 504327f

Please sign in to comment.