Skip to content

Commit

Permalink
Updated Package and Readme to 1.1.0 / Added Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
peeweek committed Aug 24, 2019
1 parent 0b6aff2 commit 97c44ec
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 12 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Console Changelog

## [2019-08-XX] - 1.1.0

* No more preview label for the package
* Got rid of UGUI ScrollBar, only displays one TextField
* Scrolling uses PageUp/PageDown and custom scrolling system to reduce text rendering overhead
* In order to avoid using `Console.Console` even when `using Console;`due to ambiguous calls, `Console` namespace has been renamed to `ConsoleUtility`
* Ensure command repeat history do not store contiguous duplicates.

## [2019-04-10] - 1.0.1-preview

* Make Console Log Stacktraces on Error/Exception
* Disabled EventSystem GameObject (Can be enabled if used locally)
* Fixed Time Digits

## [2019-01-15] - 1.0.0-preview

* Initial Release
7 changes: 7 additions & 0 deletions CHANGELOG.md.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ Oh, and the console catches unity Logs.

## Install

Either Clone the repository and reference the package.json in the Package Manager UI, or add directly this line to the `Packages/manifest.json` under `dependencies` :
Either Clone the repository and reference the `package.json` in the Package Manager UI, or add directly this line to the `Packages/manifest.json` under `dependencies` :

`"net.peeweek.console": "https://github.com/peeweek/net.peeweek.console.git#1.0.0-preview",`
`"net.peeweek.console": "https://github.com/peeweek/net.peeweek.console.git#1.1.0",`

## Usage
## How to use

* ~~Drop the Console/Console.prefab into your scene~~
* Voilà! You can access the console by pressing F12 at runtime
* Press the Backslash `\` key at runtime to toggle the Console (Can be customized if you use the package as local package)
* Use the input field to input commands and execute button or return key to execute.

### Navigation (Defaults)

Expand Down
14 changes: 8 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"name": "net.peeweek.console",
"displayName": "Console",
"version": "1.0.1-preview",
"unity": "2018.3",
"description": "Console for your games"
}
"name": "net.peeweek.console",
"displayName": "Console",
"version": "1.1.0",
"unity": "2018.4",
"description": "Console GUI for your games. Enable display of logs at runtime and in players, executing console commands and adding your own console commands using a simple C# API.",
"type": "tool",
"hideInEditor": false
}
2 changes: 1 addition & 1 deletion package.json.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 97c44ec

Please sign in to comment.