-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix windows search location for Chocolately installs.
Update changelog. Bump version.
- Loading branch information
1 parent
ce7a228
commit 29f5fb4
Showing
3 changed files
with
11 additions
and
5 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,10 @@ | ||
Apr 21, 2024 - 1.3.4 | ||
|
||
* Update print, use tobytes instead of tostring -- Christian Clauss <[email protected]> | ||
* Support finding MacOS ARM64 fluidsynth library -- Christian Clauss <[email protected]> | ||
* GitHub actions support -- Christian Clauss <[email protected]> | ||
* Fix Windows search location for Chocolatey installs -- Nathan Whitehead <[email protected]> | ||
|
||
================================================================================ | ||
Feb 18, 2024 - 1.3.3 | ||
|
||
|
@@ -6,7 +13,6 @@ | |
* Fix "Unknown integer parameter 'synth.sample-rate" (#37) -- Philipp Schmidt <[email protected]> | ||
|
||
|
||
|
||
================================================================================ | ||
Feb 10, 2023 - 1.3.2 | ||
|
||
|
@@ -33,8 +39,7 @@ | |
* Added sequencer support -- Christian Romberg <[email protected]> | ||
|
||
|
||
|
||
================================================================================ | ||
================================================================================ | ||
February 13, 2015 | ||
|
||
* Mover repository to git in GitHub | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
Python bindings for FluidSynth | ||
Copyright 2008, Nathan Whitehead <[email protected]> | ||
Copyright 2008, Nathan Whitehead <[email protected]> and others. | ||
Released under the LGPL | ||
|
@@ -33,6 +33,7 @@ | |
# https://docs.python.org/3/library/os.html#os.add_dll_directory | ||
if hasattr(os, 'add_dll_directory'): | ||
os.add_dll_directory(os.getcwd()) | ||
os.add_dll_directory('C:\\tools\\fluidsynth\\bin') | ||
|
||
lib = find_library('fluidsynth') or \ | ||
find_library('libfluidsynth') or \ | ||
|
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,7 +1,7 @@ | ||
from setuptools import setup | ||
|
||
setup (name = 'pyFluidSynth', | ||
version = '1.3.3', | ||
version = '1.3.4', | ||
author = 'Nathan Whitehead', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/nwhitehead/pyfluidsynth', | ||
|