Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MaurizioB committed Apr 9, 2017
1 parent 91fcf6f commit cbd876d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Features in *italics* are still under development
- Organizing sounds and adding/restoring them from factory presets
- Import sounds and sound sets from .MID files
- Import sounds from .syx files
- Wavetable editor

Requirements
------------
Expand Down Expand Up @@ -79,7 +80,6 @@ and fixing the whole Editor window, I'll add:
the need to load presets or the whole editor window
- sound template "favorites" library
- arpeggiator template library
- WaveTable management (and editing?)
- Online shared sound presets
- coffee maker

Expand Down
4 changes: 2 additions & 2 deletions bigglesworth/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ def local_path(name):
# sound_params = pickle.load(_params_file)

MAJ_VERSION = 0
MIN_VERSION = 8
REV_VERSION = 6
MIN_VERSION = 9
REV_VERSION = 0
VERSION = '{}.{}.{}'.format(MAJ_VERSION, MIN_VERSION, REV_VERSION)

MIDFILE, SYXFILE = 1, 2
Expand Down
2 changes: 1 addition & 1 deletion bigglesworth/dialogs/wave_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ def stop(self, state):
class WaveLoad(QtGui.QFileDialog):
def __init__(self, main, *args, **kwargs):
QtGui.QFileDialog.__init__(self, *args, **kwargs)
self.setDirectory('/home/mauriziob/data/code/blofeld/test/')
self.setDirectory(QtCore.QDir.homePath())
self.main = main
self.setOption(self.DontUseNativeDialog)
self.setAcceptMode(self.AcceptOpen)
Expand Down
2 changes: 1 addition & 1 deletion bigglesworth/wavetable.ui
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@
</sizepolicy>
</property>
<property name="title">
<string>Something</string>
<string>Wave editing</string>
</property>
<layout class="QGridLayout" name="gridLayout"/>
</widget>
Expand Down

0 comments on commit cbd876d

Please sign in to comment.