forked from rkh/atom-sonic
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update file names from atom-sonic to sb-atom-sonic-pi, and prepare fo…
…r v1.0 release
- Loading branch information
Showing
13 changed files
with
94 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
# Releases of sunderb/sb-atom-sonic-pi | ||
## 1.0 - First release of sunderb/sb-atom-sonic-pi | ||
* Adjusted OSC code to send to Sonic Pi server, and optionally the Sonic Pi GUI (OSC messages sent to GUI appear in the cue log). | ||
* Added save-and-play-file command, which saves the current file and tells Sonic Pi to play the file. This allows for playback of large buffers. This command can be activated using F5. | ||
* Changed some key bindings (atom-sonic:stop used ctrl-s, which is used as save on many systems, so I changed that), see below for the key bindings. | ||
|
||
# Releases from rkh/atom-sonic | ||
## 0.3.2 | ||
## 0.3.1 | ||
## 0.3.0 | ||
## 0.1.0 - First Release | ||
* Every feature added | ||
* Every bug fixed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,26 @@ | ||
# Sonic Pi Atom integration | ||
|
||
This plugin allows remote controlling [Sonic Pi](http://sonic-pi.net/) via [Atom](https://atom.io/). | ||
This plugin, which is forked from [rkh/atom-sonic](https://github.com/rkh/atom-sonic), allows remote controlling [Sonic Pi](http://sonic-pi.net/) via [Atom](https://atom.io/). | ||
|
||
Sonic Pi is fun to play with, but its built-in editor is very rudimentary. | ||
With this plugin, you can do all the live coding in Atom instead. | ||
|
||
![sonic-pi-atom-screenshot](https://raw.githubusercontent.com/rkh/atom-sonic/master/screenshot.png) | ||
|
||
## Requirements | ||
|
||
Sonic Pi needs to be running in the background. | ||
|
||
## Changes from rkh/atom-sonic | ||
* Adjusted OSC code to send to Sonic Pi server, and optionally the Sonic Pi GUI (OSC messages sent to GUI appear in the cue log). | ||
* Added save-and-play-file command, which saves the current file and tells Sonic Pi to play the file. This allows for playback of large buffers. This command can be activated using F5. | ||
* Changed some key bindings (atom-sonic:stop used ctrl-s, which is used as save on many systems, so I changed that), see below for the key bindings. | ||
|
||
I'm happy to contribute these changes to rkh/atom-sonic if wanted. :) | ||
|
||
## Default Key Bindings | ||
|
||
Key Binding | Action | Description | ||
--------------|--------------------------------|----------------- | ||
`ctrl-r` | `atom-sonic:play-file` | Sends content of the currently open buffer to Sonic Pi for instant playback. | ||
`f5` | `atom-sonic:save-and-play-file`| Saves the file and tells Sonic Pi to play the file. Allows for playback of large buffers. | ||
`ctrl-f5` | `atom-sonic:play-file` | Sends content of the currently open buffer to Sonic Pi for instant playback. | ||
`f5` | `atom-sonic:save-and-play-file`| Saves the current file and tells Sonic Pi to play the file. Allows for playback of large buffers. | ||
`ctrl-alt-r` | `atom-sonic:play-selection` | Sends currently selected text to Sonic Pi for instant playback. | ||
`ctrl-s` | `atom-sonic:stop` | Tells Sonic Pi to stop all playback. | ||
`ctrl-alt-s` | `atom-sonic:stop` | Tells Sonic Pi to stop all playback. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
sbAtomSonicView = require '../lib/sb-atom-sonic-pi-view' | ||
|
||
describe "sbAtomSonicView", -> | ||
it "has one valid test", -> | ||
expect("life").toBe "easy" | ||
# I'm not sure why this test is here, but OK... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,5 @@ | |
// for a full listing of what's available. | ||
@import "ui-variables"; | ||
|
||
.atom-sonic { | ||
.sb-atom-sonic-pi { | ||
} |