forked from nwhitehead/pyfluidsynth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
104 lines (55 loc) · 3.3 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
================================================================================
Feb 18, 2024 - 1.3.3
* Bump version and changelog -- Christian Romberg <distjubo@gmail.com>
* Add fluid_player_get_status and fix some typing bugs -- Philipp Schmidt <Fruchtzwerg94@users.noreply.github.com>
* Fix "Unknown integer parameter 'synth.sample-rate" (#37) -- Philipp Schmidt <Fruchtzwerg94@users.noreply.github.com>
================================================================================
Feb 10, 2023 - 1.3.2
* Add `all_sounds_off` and `all_notes_off` methods. -- Kevin Zakka <kevinarmandzakka@gmail.com>
================================================================================
Nov 11, 2021 - 1.3.1
* Added methods to support tuning, event analysis, and midi file playback -- Jonathan Allin <jonathan@jonathanallin.com>
* Added support for using an external midi router callback function -- Jonathan Allin <jonathan@jonathanallin.com>
================================================================================
Nov 6, 2020 - 1.3.0
* Added lots of bindings and stuff to help with playing live -- Bill Peterson <albedozero@gmail.com>
* Added fluidsynth 2 compatibility -- Bill Peterson <albedozero@gmail.com>
================================================================================
May 24, 2018 - 1.2.5
* Added sequencer support -- Christian Romberg <distjubo@gmail.com>
================================================================================
February 13, 2015
* Mover repository to git in GitHub
* Tweak README to work with GitHub flavored MarkDown
* Include LGPL license text.
================================================================================
March 2, 2009 - 1.2.4
* Another attempt to find the proper library on Windows systems. Added
short circuited or expression to find either 'fluidsynth' or
'libfluidsynth'.
* Only import numpy when it's actually needed.
================================================================================
January 15, 2009 - 1.2.3
* Throw ImportError if the fluidsynth library can't be found.
* Range checking in noteon and noteoff
================================================================================
January 15, 2009 - 1.2.2
* Small version increment to update website and maintainer info.
No actual code changes.
================================================================================
July 22, 2008 - 1.2.1
* Added pydoc documentation and this CHANGELOG.
================================================================================
July 22, 2008 - 1.2
* Changed from C extension code to ctypes for portability and simplicity
of code.
* Updated interface to use objects instead of just functions.
================================================================================
July 21, 2008 - 1.1
* Added direct audio data interface so you don't have to start audio
driver thread. Makes pyFluidSynth work for audio games and other
applications that manage their own sound.
================================================================================
July 16, 2008 - 1.0
* Imported from previous work done earlier in the summer.
================================================================================