Skip to content

Commit

Permalink
2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kasper committed Jun 27, 2016
1 parent f105d48 commit 950137d
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 7 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Changelog
=========

2.1.2 (master)
--------------
2.1.2
-----

Release: dd.mm.yyyy
Release: 27.6.2016

### New

Expand Down
2 changes: 1 addition & 1 deletion Phoenix/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>22</string>
<string>23</string>
<key>LSMinimumSystemVersion</key>
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
<key>LSUIElement</key>
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Phoenix

A lightweight OS X window and app manager scriptable with JavaScript. You can also easily use languages which compile to JavaScript such as CoffeeScript. Phoenix aims for efficiency and a very small footprint. If you like the idea of scripting your own window or app management toolkit with JavaScript, Phoenix is probably going to give you the things you want. With Phoenix you can bind keyboard shortcuts and system events, and use these to interact with OS X.

- Current version: 2.1.1 ([Changelog](CHANGELOG.md))
- Current version: 2.1.2 ([Changelog](CHANGELOG.md))
- Requires: OS X 10.10 or higher

**Note:** the default `master`-branch will always be stable.
Expand All @@ -22,7 +22,7 @@ A lightweight OS X window and app manager scriptable with JavaScript. You can al

## Install

- [**Download Phoenix**](https://github.com/kasper/phoenix/releases/download/2.1.1/phoenix-2.1.1.tar.gz)
- [**Download Phoenix**](https://github.com/kasper/phoenix/releases/download/2.1.2/phoenix-2.1.2.tar.gz)
- See previous [releases](https://github.com/kasper/phoenix/releases/)

To install, extract the downloaded archive and just drag-and-drop Phoenix to your `Applications`-folder. When you run Phoenix for the first time, you will be asked to allow it to control your UI. OS X will ask you to open `Security & Privacy` in System Preferences. Once open, go to the `Accessibility`-section and click the checkbox next to Phoenix to enable control. An admin account is required to accomplish this.
Expand All @@ -42,7 +42,7 @@ Phoenix lives on your status bar (or as a background daemon) and can be scripted
See the [JavaScript API](API.md) to get started with your script. Your script should reside in `~/.phoenix.js` — the file will be created when you launch Phoenix for the first time. Alternatively — if you prefer — you may also have your script in `~/Library/Application Support/Phoenix/phoenix.js` or `~/.config/phoenix/phoenix.js`. For ideas, see what other people have built in their configurations in the [Wiki](https://github.com/kasper/phoenix/wiki/). Feel free to add your own configuration to the Wiki to show other people the nice things you can do. Previous configurations (<= 1.5) are not compatible with 2.0, see Changelog for what changes are needed.

- [JavaScript API](API.md) (master)
- [JavaScript API](https://github.com/kasper/phoenix/blob/2.1.1/API.md) (current)
- [JavaScript API](https://github.com/kasper/phoenix/blob/2.1.2/API.md) (current)
- [Examples](https://github.com/kasper/phoenix/wiki#examples)
- [Changelog](CHANGELOG.md)

Expand Down
40 changes: 40 additions & 0 deletions sparkle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,46 @@
<description>Feed for Phoenix updates.</description>
<language>en</language>

<!-- 2.1.2 -->

<item>
<title>Version 2.1.2</title>
<pubDate>Mon, 27 Jun 2016 18:51:00 +0300</pubDate>
<description><![CDATA[
<p>This release includes a new API to automatically manage handlers for you — in addition to some minor improvements and bug fixes.</p>
<h3>New</h3>
<ul>
<li>Phoenix can now manage handlers for you. Instead of <code>Phoenix.bind</code>, <code>Phoenix.on</code>, <code>Phoenix.after</code> or <code>Phoenix.every</code> — use <code>Key.on</code>, <code>Event.on</code>, <code>Timer.after</code> and <code>Timer.every</code>. For more, see the <a href='https://github.com/kasper/phoenix/blob/master/API.md#managing-handlers'>API</a> (<a href='https://github.com/kasper/phoenix/issues/107'>#107</a>).</li>
</ul>
<h3>Improvements</h3>
<ul>
<li>Implement <code>setTimeout</code>, <code>setInterval</code>, <code>clearTimeout</code> and <code>clearInterval</code>. This also adds support for timing related functions from Underscore (<a href='https://github.com/kasper/phoenix/issues/92'>#92</a>).</li>
<li>Make require throw an error if a file cannot be resolved (<a href='https://github.com/kasper/phoenix/issues/93'>#93</a>).</li>
<li>Add support for ISO section <code>§</code>-key (<a href='https://github.com/kasper/phoenix/issues/102'>#102</a>).</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li>Disable key handlers immediately to ensure that keys are unregistered before setting up a new context (<a href='https://github.com/kasper/phoenix/issues/94'>#94</a>).</li>
<li>Fix crash caused by moving or deleting configuration directory while app is running (<a href='https://github.com/kasper/phoenix/issues/105'>#105</a>).</li>
</ul>
]]>
</description>
<enclosure sparkle:version='23'
sparkle:shortVersionString='2.1.2'
sparkle:dsaSignature='MCwCFDXkxwa2265FTBq56c47Wd7YnsHwAhRLxjxorFrQKy6PlXBlb3sV+Jum8w=='
type='application/octet-stream'
length='2207690'
url='https://github.com/kasper/phoenix/releases/download/2.1.2/phoenix-2.1.2.tar.gz' />
</item>

<!-- 2.1.1 -->

<item>
Expand Down

0 comments on commit 950137d

Please sign in to comment.