Skip to content

Commit

Permalink
Release 0.2.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
brunchboy committed Apr 3, 2016
1 parent 669f914 commit 06a1912
Show file tree
Hide file tree
Showing 65 changed files with 230 additions and 223 deletions.
15 changes: 10 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ This change log follows the conventions of

## [Unreleased][unreleased]

Nothing yet.

## [0.2.1] - 2016-04-03

### Added

- The web and Push interfaces now offer a way to save adjusted cue
Expand All @@ -29,6 +33,9 @@ This change log follows the conventions of
- Launchpad Mini
- Launchpad S (untested, but the Mini, which works, is based on the S)
- Launchpad Mk2
- The identity of grid controllers is verified before binding to them,
by sending a MIDI Device Inquiry message and inspecting the
response.
- The auto-bind mechanism has been improved so much that the sample
show can now simply turn it on to fully automate the process of
detecting and binding to any compatible grid controllers that appear
Expand All @@ -42,9 +49,6 @@ This change log follows the conventions of
across fixtures.
- Incoming MIDI System Exclusive messages can now be received and
delivered to handlers.
- The identity of grid controllers is verified before binding to them,
by sending a MIDI Device Inquiry message and inspecting the
response.
- Cue variables can now be Booleans, to support cues which want to be
able to adjust the direction of a sawtooth oscillator while running.
- The dimmer oscillator cues created in the sample show now include
Expand Down Expand Up @@ -150,7 +154,7 @@ This change log follows the conventions of
- The sample show is becoming a much more practical example of how to
layer flexible color and dimmer cues, with good cue variables to add
even more dimensions.
- A lot of repetitive code in the examples namespace was consolitated
- A lot of repetitive code in the examples namespace was consolidated
using helper functions.
- The `controllers/IOverlay` protocol was expanded to include the
ability for an overlay to handle and absorb pitch-bend messages, in
Expand Down Expand Up @@ -558,7 +562,8 @@ This change log follows the conventions of
- Initial Public Release


[unreleased]: https://github.com/brunchboy/afterglow/compare/v0.2.0...HEAD
[unreleased]: https://github.com/brunchboy/afterglow/compare/v0.2.1...HEAD
[0.2.1]: https://github.com/brunchboy/afterglow/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/brunchboy/afterglow/compare/v0.1.6...v0.2.0
[0.1.6]: https://github.com/brunchboy/afterglow/compare/v0.1.5...v0.1.6
[0.1.5]: https://github.com/brunchboy/afterglow/compare/v0.1.4...v0.1.5
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ This page provides an introduction in how to install and use
Afterglow. The main
[documentation](doc/README.adoc#afterglow-documentation) goes much
deeper, and there is also
[API documentation](http://rawgit.com/brunchboy/afterglow/master/api-doc/index.html).
[API documentation](http://cdn.rawgit.com/brunchboy/afterglow/v0.2.1/api-doc/index.html).
For more interactive help, the
[Afterglow room on Gitter](https://gitter.im/brunchboy/afterglow) is
the place to start, and if you want to see (or contribute to) more
Expand Down Expand Up @@ -346,7 +346,7 @@ tweak something quickly, you can use that:
> when you are running from a jar rather than launching from a REPL,
> you will often want to access a real REPL. You can accomplish that
> with command-line arguments or by using the web console to invoke
> [core/start-nrepl](http://rawgit.com/brunchboy/afterglow/master/api-doc/afterglow.core.html#var-start-nrepl)
> [core/start-nrepl](http://cdn.rawgit.com/brunchboy/afterglow/v0.2.1/api-doc/afterglow.core.html#var-start-nrepl)
> and then connecting your favorite REPL environment to the network
> REPL port you created.
Expand Down Expand Up @@ -433,7 +433,7 @@ set up a Universe with ID 1.
> will likely want to do something similar in setting up your own
> shows, since a single show is the most common scenario. See the
> `afterglow.show-context`
> [API documentation](http://rawgit.com/brunchboy/afterglow/master/api-doc/afterglow.show-context.html)
> [API documentation](http://cdn.rawgit.com/brunchboy/afterglow/v0.2.1/api-doc/afterglow.show-context.html)
> for more details. The `show-context` namespace also defines the
> dynamic variable `*show*` which you can use to refer to the current
> default show when you need to mention it explicitly, as you will see
Expand Down Expand Up @@ -476,7 +476,7 @@ to the show’s dimmer grand master. Setting this to a value less than
100 scales the dimmer values sent to the lights down by that amount.
So the above command dims the lights to 80% of their possible
brightness, no matter what else the cues are trying to do. See the
[dimmer effects API documentation](http://rawgit.com/brunchboy/afterglow/master/api-doc/afterglow.effects.dimmer.html)
[dimmer effects API documentation](http://cdn.rawgit.com/brunchboy/afterglow/v0.2.1/api-doc/afterglow.effects.dimmer.html)
for more details. Here is an example of what I call right away when
testing effects in my office with the little Korg nanoKONTROL 2
plugged in:
Expand Down
4 changes: 2 additions & 2 deletions api-doc/afterglow.beyond.html

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions api-doc/afterglow.channels.html

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions api-doc/afterglow.controllers.ableton-push-2.html

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions api-doc/afterglow.controllers.ableton-push.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions api-doc/afterglow.controllers.color.html

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions api-doc/afterglow.controllers.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions api-doc/afterglow.controllers.launchpad-mini.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions api-doc/afterglow.controllers.launchpad-mk2.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions api-doc/afterglow.controllers.launchpad-pro.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions api-doc/afterglow.controllers.tempo.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion api-doc/afterglow.core.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions api-doc/afterglow.coremidi4j.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion api-doc/afterglow.dj-link.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions api-doc/afterglow.effects.channel.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions api-doc/afterglow.effects.color.html

Large diffs are not rendered by default.

Loading

0 comments on commit 06a1912

Please sign in to comment.