From 26a1da7c79b71877d4923d08ea36503477bd8169 Mon Sep 17 00:00:00 2001 From: Blaine Schmeisser Date: Mon, 20 Mar 2017 07:37:26 -0700 Subject: [PATCH] Update to version v0.5.0. This includes the changelog and the blog post. --- app/package.json | 2 +- changelog.md | 21 +++++++++++++++++++++ docs/_posts/2017-03-18-zazu-v0.5.0.md | 26 ++++++++++++++++++++++++++ package.json | 2 +- 4 files changed, 49 insertions(+), 2 deletions(-) create mode 100644 docs/_posts/2017-03-18-zazu-v0.5.0.md diff --git a/app/package.json b/app/package.json index 064f677d..0dcfb23a 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "zazu", - "version": "0.4.0", + "version": "0.5.0", "description": "A cross platform productivity application.", "email": "zazu-app@googlegroups.com", "author": "Tiny Taco Team ", diff --git a/changelog.md b/changelog.md index fcaf080b..d71a776d 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,22 @@ +## 0.5.0 + +### Bugs + +* Fix debugger that would not filter plugin results correctly. (Thanks + [nalexander50][nalexander50]!) #272 +* Re-require NPM so updating works correctly. #252 +* Fix screen caching issue that prevented Zazu from opening. #253 +* Truncate logs to avoid overloading io/debugger. #228 +* Remove the beeping sound when toggling Zazu. #217 +* Remove unnecessary intervals that caused idle CPU cycles. (Thanks + [jlaffaye][jlaffaye]!) #277 #278 + +### Features + +* Add a Preview block type. #240 +* Pass the environment object to `respondsTo` on root scripts. #244 +* Remove "loaded" notification when Zazu starts up. #234 + ## 0.4.0 ### Bugs @@ -111,3 +130,5 @@ [schmic]: https://github.com/schmic [eldinoyev]: https://github.com/eldinoyev +[nalexander50]: https://github.com/nalexander50 +[jlaffaye]: https://github.com/jlaffaye diff --git a/docs/_posts/2017-03-18-zazu-v0.5.0.md b/docs/_posts/2017-03-18-zazu-v0.5.0.md new file mode 100644 index 00000000..1b7e469b --- /dev/null +++ b/docs/_posts/2017-03-18-zazu-v0.5.0.md @@ -0,0 +1,26 @@ +--- +layout: page +title: "Zazu's v0.5.0 is released!" +description: "Introducing Preview block types and more!" +permalink: /blog/2017/video-introduction-to-zazu +--- + +### Bugs + +There were quite a few bugs that were fixed. For example if you ever tried +narrowing down your plugin logs in the debugger, it wasn't working as correctly, +but it's fixed now. + +We also made `npm` more resilient, yet again! + +### Features + +We are introducing a new block type [Preview][preview] which allows you to +display large text on the screen, compared to a small notification. This would +be useful for presentations, or for more accessible communications. + +We fixed quite a few more bugs and added a few more features, be sure to check +out the [changelog][changelog] for information on the rest of the bugs. + +[changelog]: https://github.com/tinytacoteam/zazu/blob/master/changelog.md#050 +[preview]: http://zazuapp.org/documentation/blocks/#preview diff --git a/package.json b/package.json index b366401d..c2d8098a 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "0.4.0", + "version": "0.5.0", "build": { "productName": "Zazu", "appId": "com.tinytacoteam.zazu",