Skip to content

Commit

Permalink
Bump SunVox version to 1.9.3, package version to 0.1.0.1.9.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewryanscott committed Nov 25, 2017
1 parent 8277cf4 commit 23fdf25
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
=========

0.1.0.1.9.3.0 (2017-11-24)
--------------------------

* Update SunVox DLL to 1.9.3.0.

* Add support for Windows 64-bit.

0.1.0.1.9.2.0 (2016-11-08)
--------------------------

Expand Down
2 changes: 1 addition & 1 deletion sunvox/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.0.1.9.2.0'
__version__ = '0.1.0.1.9.3.0'
4 changes: 3 additions & 1 deletion sunvox/dll.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,12 @@
('darwin', True): 'osx/lib_x86_64/sunvox.dylib',
('linux', True): 'linux/lib_x86_64/sunvox.so',
('linux', False): 'linux/lib_x86/sunvox.so',
('win32', True): 'sunvox',
('win32', False): 'sunvox',
}.get(key)
if sys.platform == 'win32':
_lib_path = os.path.join(DEFAULT_DLL_BASE, 'windows', 'lib_x86')
_bit_path = 'lib_x86_64' if is64bit else 'lib_x86'
_lib_path = os.path.join(DEFAULT_DLL_BASE, 'windows', _bit_path)
os.environ['PATH'] = _lib_path + ';' + os.environ['PATH']
_sunvox_lib_path = rel_path
else:
Expand Down
Binary file modified sunvox/lib/linux/lib_x86/sunvox.so
Binary file not shown.
Binary file modified sunvox/lib/linux/lib_x86_64/sunvox.so
Binary file not shown.
Binary file modified sunvox/lib/osx/lib_x86_64/sunvox.dylib
Binary file not shown.
Binary file modified sunvox/lib/windows/lib_x86/sunvox.dll
Binary file not shown.
Binary file added sunvox/lib/windows/lib_x86_64/sunvox.dll
Binary file not shown.

0 comments on commit 23fdf25

Please sign in to comment.