From 29f5fb4855d373359dba878c98341853357f5f5c Mon Sep 17 00:00:00 2001 From: Nathan Whitehead Date: Sun, 21 Apr 2024 22:09:41 -0600 Subject: [PATCH] Fix windows search location for Chocolately installs. Update changelog. Bump version. --- CHANGELOG | 11 ++++++++--- fluidsynth.py | 3 ++- setup.py | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 2ca1dc1..de3f918 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,10 @@ + Apr 21, 2024 - 1.3.4 + + * Update print, use tobytes instead of tostring -- Christian Clauss + * Support finding MacOS ARM64 fluidsynth library -- Christian Clauss + * GitHub actions support -- Christian Clauss + * Fix Windows search location for Chocolatey installs -- Nathan Whitehead + ================================================================================ Feb 18, 2024 - 1.3.3 @@ -6,7 +13,6 @@ * Fix "Unknown integer parameter 'synth.sample-rate" (#37) -- Philipp Schmidt - ================================================================================ Feb 10, 2023 - 1.3.2 @@ -33,8 +39,7 @@ * Added sequencer support -- Christian Romberg - - ================================================================================ +================================================================================ February 13, 2015 * Mover repository to git in GitHub diff --git a/fluidsynth.py b/fluidsynth.py index aeb1311..4acaabe 100644 --- a/fluidsynth.py +++ b/fluidsynth.py @@ -5,7 +5,7 @@ Python bindings for FluidSynth - Copyright 2008, Nathan Whitehead + Copyright 2008, Nathan Whitehead 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 \ diff --git a/setup.py b/setup.py index ffbffb3..54608f3 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup setup (name = 'pyFluidSynth', - version = '1.3.3', + version = '1.3.4', author = 'Nathan Whitehead', author_email = 'nwhitehe@gmail.com', url = 'https://github.com/nwhitehead/pyfluidsynth',