Skip to content

Commit 79e7da6

Browse files
committed
2 parents 98b24f9 + 09040f5 commit 79e7da6

3 files changed

Lines changed: 145 additions & 5 deletions

File tree

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2019-11-27 belangeo <belangeo@gmail.com>
2+
3+
* Git tag: 1.0.2.
4+
15
2020-08-02 belangeo <belangeo@gmail.com>
26

37
* Added new object: MML, Music Macro Language evaluator.

TODO.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
This is a list of features/fixes to implement for future releases
22
=================================================================
33

4-
Roadmap 1.0.2
5-
-------------
6-
7-
- Fixed Windows crash related to MIDI devices
8-
94
Roadmap 1.0.3
105
-------------
116

Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
[English version follows]
2+
3+
Bonjour à tous,
4+
5+
Je suis très heureux d'annoncer la sortie de pyo 1.0.2, disponible pour python 3.6,
6+
3.7 et 3.8!
7+
8+
Pyo est un module Python écrit en C pour faciliter la programmation de traitement
9+
de signal audio-numérique. Il fournit un ensemble complet de classes pour développer
10+
des logiciels audio, composer des musiques algorithmiques ou simplement explorer
11+
le traitement du signal audio. Il est disponible pour Windows, MacOS et Linux.
12+
Il est publié sous la licence LGPL 3.
13+
14+
Site web officiel: http://ajaxsoundstudio.com/software/pyo/
15+
16+
La documentation: http://ajaxsoundstudio.com/pyodoc/
17+
18+
Sources et suivi des bugs: https://github.com/belangeo/pyo
19+
20+
Installation:
21+
22+
python -m pip install pyo
23+
24+
Pour tous les détails concernant l'installation et comment désinstaller les versions
25+
antérieures à 1.0.0, voir cette page dans la documentation:
26+
27+
http://ajaxsoundstudio.com/pyodoc/download.html
28+
29+
Cette version marque la fin du support pour python 2.7 and 3.5, ainsi que des versions
30+
32-bit sous Windows.
31+
32+
Voir plus bas pour le détail des changements apportés dans cette version!
33+
34+
35+
Olivier
36+
37+
---
38+
39+
Hello all,
40+
41+
I'm very happy to announce the release of pyo 1.0.1, available for python 3.6,
42+
3.7 and 3.8.
43+
44+
Pyo is a Python module written in C to help real-time digital signal processing
45+
script creation. It provides a complete set of classes to build audio softwares,
46+
compose algorithmic musics or simply explore audio processing.It is available for
47+
Windows, macOS and linux. It is released under the LGPL 3 license.
48+
49+
Official web site: http://ajaxsoundstudio.com/software/pyo/
50+
51+
pyo's documentation: http://ajaxsoundstudio.com/pyodoc/
52+
53+
Latest sources and bug tracker: https://github.com/belangeo/pyo
54+
55+
Installation:
56+
57+
python -m pip install pyo
58+
59+
For all the details and how to uninstall version prior to 1.0.0, see this page
60+
in the documentation:
61+
62+
http://ajaxsoundstudio.com/pyodoc/download.html
63+
64+
With this version, pyo does not support anymore python 2.7 and 3.5, as well as
65+
32-bit python under Windows.
66+
67+
Olivier
68+
69+
70+
WHAT CHANGED IN VERSION 1.0.2:
71+
72+
Bug Fixes:
73+
74+
- Fixed Linseg when time difference between two points is less than 1 sample.
75+
- Fixed segfault in reducePoints function.
76+
- Portmidi is now compiled with the latest source, which fixes a crash on Windows 10
77+
when the server is booted with a MIDI device connected.
78+
- Fixed compatibility issues with wxpython 4.1.
79+
80+
New features:
81+
82+
- PVBuffer's length attribute can now be changed dynamically.
83+
- Added new object: IFFTMatrix, Inverse Fast Fourier Transform with a PyoMatrixObject as input.
84+
- Added new object: TriangleTable.
85+
- Added new object: MML, Music Macro Language evaluator.
86+
- m_pyo.h, header-only python interpreter for pyo, now works with python 3.
87+
88+
================================================================================
89+
90+
Hello all,
91+
92+
I'm very happy to announce the release of pyo 1.0.1, available for python 3.6,
93+
3.7 and 3.8.
94+
95+
Pyo is a Python module written in C to help real-time digital signal processing
96+
script creation. It provides a complete set of classes to build audio softwares,
97+
compose algorithmic musics or simply explore audio processing.It is available for
98+
Windows, macOS and linux. It is released under the LGPL 3 license.
99+
100+
Official web site: http://ajaxsoundstudio.com/software/pyo/
101+
102+
pyo's documentation: http://ajaxsoundstudio.com/pyodoc/
103+
104+
Latest sources and bug tracker: https://github.com/belangeo/pyo
105+
106+
Installation:
107+
108+
python -m pip install pyo
109+
110+
For all the details and how to uninstall version prior to 1.0.0, see this page
111+
in the documentation:
112+
113+
http://ajaxsoundstudio.com/pyodoc/download.html
114+
115+
116+
Bug Fixes:
117+
118+
- Fixed Linseg when time difference between two points is less than 1 sample.
119+
- Fixed segfault in reducePoints function.
120+
- Portmidi is now compiled with the latest source, which fixes a crash on Windows 10
121+
when the server is booted with a MIDI device connected.
122+
- Fixed compatibility issues with wxpython 4.1.
123+
124+
New features:
125+
126+
- PVBuffer's length attribute can now be changed dynamically.
127+
- Added new object: IFFTMatrix, Inverse Fast Fourier Transform with a PyoMatrixObject as input.
128+
- Added new object: TriangleTable.
129+
- Added new object: MML, Music Macro Language evaluator.
130+
- m_pyo.h, header-only python interpreter for pyo, now works with python 3.
131+
132+
133+
Olivier Belanger
134+
belangeo@gmail.com
135+
http://olivier.ajaxsoundstudio.com/
136+
137+
----
138+
139+
<P><A HREF="http://ajaxsoundstudio.com/software/pyo/">Pyo 1.0.2</A> - short
140+
Python DSP library. (17-Aug-20)
141+

0 commit comments

Comments
 (0)