Skip to content

Commit 7bb2863

Browse files
committed
Update version number
1 parent 7d57b03 commit 7bb2863

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

FoxDot/lib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
from __future__ import absolute_import, division, print_function
1919

20-
__version__ = "0.6.0"
20+
__version__ = "0.6.1"
2121

2222
import logging
2323

MANIFEST

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ FoxDot\lib\Workspace\tmp\tempfile.txt
8484
FoxDot\osc\Buffers.scd
8585
FoxDot\osc\Info.scd
8686
FoxDot\osc\OscFunc.scd
87-
FoxDot\osc\test.scd
8887
FoxDot\osc\sceffects\FilterSwell.scd
8988
FoxDot\osc\sceffects\FrequencyModulationPulse.scd
9089
FoxDot\osc\sceffects\FrequencyModulationSaw.scd
@@ -113,6 +112,7 @@ FoxDot\osc\sceffects\trimLength.scd
113112
FoxDot\osc\sceffects\vibrato.scd
114113
FoxDot\osc\sceffects\wavesShapeDistortion.scd
115114
FoxDot\osc\scsyndef\ambi.scd
115+
FoxDot\osc\scsyndef\angel.scd
116116
FoxDot\osc\scsyndef\arpy.scd
117117
FoxDot\osc\scsyndef\audioin.scd
118118
FoxDot\osc\scsyndef\bass.scd
@@ -124,6 +124,7 @@ FoxDot\osc\scsyndef\charm.scd
124124
FoxDot\osc\scsyndef\creep.scd
125125
FoxDot\osc\scsyndef\crunch.scd
126126
FoxDot\osc\scsyndef\dab.scd
127+
FoxDot\osc\scsyndef\dbass.scd
127128
FoxDot\osc\scsyndef\dirt.scd
128129
FoxDot\osc\scsyndef\donk.scd
129130
FoxDot\osc\scsyndef\donk1.scd
@@ -135,6 +136,7 @@ FoxDot\osc\scsyndef\glass.scd
135136
FoxDot\osc\scsyndef\gong.scd
136137
FoxDot\osc\scsyndef\growl.scd
137138
FoxDot\osc\scsyndef\karp.scd
139+
FoxDot\osc\scsyndef\keys.scd
138140
FoxDot\osc\scsyndef\klank.scd
139141
FoxDot\osc\scsyndef\lazer.scd
140142
FoxDot\osc\scsyndef\longsaw.scd
@@ -166,11 +168,13 @@ FoxDot\osc\scsyndef\sitar.scd
166168
FoxDot\osc\scsyndef\snick.scd
167169
FoxDot\osc\scsyndef\soft.scd
168170
FoxDot\osc\scsyndef\soprano.scd
171+
FoxDot\osc\scsyndef\space.scd
169172
FoxDot\osc\scsyndef\spark.scd
170173
FoxDot\osc\scsyndef\spick.scd
171174
FoxDot\osc\scsyndef\squish.scd
172175
FoxDot\osc\scsyndef\star.scd
173176
FoxDot\osc\scsyndef\swell.scd
177+
FoxDot\osc\scsyndef\test.scd
174178
FoxDot\osc\scsyndef\twang.scd
175179
FoxDot\osc\scsyndef\varsaw.scd
176180
FoxDot\osc\scsyndef\viola.scd
@@ -388,13 +392,9 @@ FoxDot\snd\l\upper\glitch_2.wav
388392
FoxDot\snd\l\upper\glitch_3.wav
389393
FoxDot\snd\l\upper\glitch_4.wav
390394
FoxDot\snd\l\upper\glitch_40.wav
395+
FoxDot\snd\m\lower\0_tom.wav
391396
FoxDot\snd\m\lower\tom (1).WAV
392-
FoxDot\snd\m\lower\tom (2).WAV
393397
FoxDot\snd\m\lower\tom (3).wav
394-
FoxDot\snd\m\lower\tom (4).wav
395-
FoxDot\snd\m\lower\tom (5).wav
396-
FoxDot\snd\m\lower\tom (6).wav
397-
FoxDot\snd\m\lower\tom (7).wav
398398
FoxDot\snd\m\lower\tom (8).WAV
399399
FoxDot\snd\m\upper\tom (1).wav
400400
FoxDot\snd\m\upper\tom (2).wav
@@ -458,7 +458,6 @@ FoxDot\snd\r\upper\3_metallic.wav
458458
FoxDot\snd\r\upper\4_metallic.wav
459459
FoxDot\snd\s\lower\0_shaker.wav
460460
FoxDot\snd\s\lower\1_shaker.wav
461-
FoxDot\snd\s\lower\2_shaker.wav
462461
FoxDot\snd\s\lower\3_shaker.wav
463462
FoxDot\snd\s\lower\4_shaker.wav
464463
FoxDot\snd\s\upper\0_tamborine.wav

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ FoxDot - Live Coding with Python v0.6
33

44
FoxDot is a Python programming environment that provides a fast and user-friendly abstraction to SuperCollider. It also comes with its own IDE, which means it can be used straight out of the box; all you need is Python and SuperCollider and you're ready to go!
55

6+
### v0.6.1 fixes and updates
7+
8+
- Fixed bugs found in Python 2
9+
610
### v0.6.0 fixes and updates
711

812
- Added functionality to specify samples when using the `play` SynthDef. This can be done from the play string by using the bar character in the form `|<char><sample>|`. These can also be patterns:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from distutils.core import setup
44

55
setup(name='FoxDot',
6-
version='0.6.0',
6+
version='0.6.1',
77
description='Live coding music with SuperCollider',
88
author='Ryan Kirkbride',
99
author_email='ryan@foxdot.org',

0 commit comments

Comments
 (0)