Skip to content

Commit 5573adb

Browse files
committed
Get ready for v2.0.1
1 parent 285305f commit 5573adb

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
# History
22

33
## Version 2.0.1
4-
*To be released..*
4+
*Tuesday 9th September, 2014*
55

66
* Fix recording functionality
77
* Improve documentation content and layout
8-
* Close off OSC server from external clients (for extra security)
8+
* Close off OSC server from external clients
99
* Add History, Contributors and Community pages to info window
1010
* Improve startup speed on OS X
1111
* Re-work and add to shortcuts for key actions:
1212
- on RP they are all `alt-*` prefixed
1313
- on OS X they are all `cmd-*` prefixed
1414
* Improve highlighting of log messages (`cue`/`sync` messages are more clearly highlighted)
1515
* Log now communicates when a run has completed executing
16+
* Fix bug encountered when stopping threads in super fast loops (stopped comms with server)
1617

1718
## Version 2.0
1819
*Tuesday 2nd September, 2014*

app/gui/qt/mainwindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ MainWindow::MainWindow(QApplication &app, QSplashScreen &splash) {
266266
infoPane->setFixedSize(550, 650);
267267
QString html;
268268

269-
infoPane->setHtml("<center><img src=\":/images/logo.png\" height=\"335\" width=\"365\"></center><center><pre><font size=\"4\">Designed and developed by Sam Aaron<br>in Cambridge, England<br><br><font color=\"DeepPink\">http://sonic-pi.net</font><br><br>For the latest updates follow<br><font color=\"DeepPink\">@sonic_pi<br></font></font></pre><h2><pre><font color=\"#3C3C3C\"><pre>music_as <font color=\"DeepPink\">:code</font><br>code_as <font color=\"DeepPink\">:art</font></pre></h2><pre><font size=\"4\"><br>v2.0.1-dev</font></pre></center>");
269+
infoPane->setHtml("<center><img src=\":/images/logo.png\" height=\"335\" width=\"365\"></center><center><pre><font size=\"4\">Designed and developed by Sam Aaron<br>in Cambridge, England<br><br><font color=\"DeepPink\">http://sonic-pi.net</font><br><br>For the latest updates follow<br><font color=\"DeepPink\">@sonic_pi<br></font></font></pre><h2><pre><font color=\"#3C3C3C\"><pre>music_as <font color=\"DeepPink\">:code</font><br>code_as <font color=\"DeepPink\">:art</font></pre></h2><pre><font size=\"4\"><br>v2.0.1</font></pre></center>");
270270

271271

272272
#if defined(Q_OS_MAC)

app/server/sonicpi/lib/sonicpi/spider.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class Spider
4141

4242
def initialize(hostname, port, msg_queue, max_concurrent_synths, user_methods)
4343

44-
@version = Version.new(2, 0, 1, "dev")
44+
@version = Version.new(2, 0, 1)
4545

4646
@life_hooks = LifeCycleHooks.new
4747
@msg_queue = msg_queue

0 commit comments

Comments
 (0)