Skip to content

Commit 134f880

Browse files
committed
0.9.2 release is ready
oops
1 parent 79a5095 commit 134f880

File tree

5 files changed

+16
-12
lines changed

5 files changed

+16
-12
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ Max is found at: https://cycling74.com/
1414

1515
-------
1616

17-
Copyright © 2003-2024 - Krzysztof Czaja, Hans-Christoph Steiner, Fred Jan Kraan, Alexandre Porres, Derek Kwan, Matt Barber and others.
17+
Copyright © 2003-2025 - Krzysztof Czaja, Hans-Christoph Steiner, Fred Jan Kraan, Alexandre Porres, Derek Kwan, Matt Barber and others.
1818

1919
This work is free. You can redistribute it and/or modify it under the terms of the BSD-3-Clause (aka Revised BSD License). See License.txt <https://github.com/porres/pd-cyclone/blob/cyclone0.4/LICENSE.txt> and <https://opensource.org/licenses/BSD-3-Clause> for more details.
2020

2121
-------
2222

23-
Current Release: Cyclone 0.9-1 (this release needs at least Pd Vanilla 0.55-0)
23+
Current Release: Cyclone 0.9-2 (this release needs at least Pd Vanilla 0.55-0)
2424

25-
Released August 20th 2024
25+
Released MArch 14th 2025
2626

2727
Find Cyclone's latest releases at: https://github.com/porres/pd-cyclone/releases or directly via Pd's external manager (Help => Find Externals). Please report bugs at https://github.com/porres/pd-cyclone/issues.
2828

@@ -31,7 +31,7 @@ Find Cyclone's latest releases at: https://github.com/porres/pd-cyclone/releases
3131

3232
Outdated versions of cyclone (0.1) are available in the long abandoned Pd-extended distribution (which no one should be using now in the 2020's) as well as in Pd-l2ork and Purr Data - both originally based on Pd-Extended but ported to nw.js (0.1 versions of cyclone here were not fully ported to nw.js at the time of this writing). If you want an up to date version of Cyclone, use Pd Vanilla or PlugData.
3333

34-
Do you know about PlugData, Cyclone is also part of PlugData by Timothy Schoen, which is a fork of Pd that loads as a standalone or VST with a revamped GUI. ​See: <https://github.com/timothyschoen/PlugData>
34+
Do you know about PlugData? Cyclone is also part of PlugData by Timothy Schoen, which is a fork of Pd that loads as a standalone or VST with a revamped GUI. ​See: <https://github.com/timothyschoen/PlugData>
3535

3636
The original author of Cyclone (Krzysztof Czaja) abandoned it in 2005 at version 0.1-alpha55, when Cyclone was compatible to MAX 4.0. Cyclone was then incorporated and available in Pd-extended, where it only a had a minor update under the maintenance of Hans-Christoph Steiner in 2013 (0.1-alpha56), right before Pd-extended and Cyclone (by consequence) were abandoned altogether (this 0.1-alpha56 version was also inherited by Pd-l2ork/Purr Data). Under a new maintenance phase by Fred Jan Kraan, 0.1-alpha57 and Cyclone 0.2 beta versions were released, still closely related to the previous '0.1-alpha' releases and mostly compliant to Max 4.0!
3737

@@ -41,11 +41,11 @@ Currently, Cyclone still hasn't reached full compatibility to "Max 7.3.5". Some
4141

4242
The main current maintainer of Cyclone (Porres) is much busier with developing the ELSE library. Note that this library has alternatives for almost all cyclone objects and many objects in ELSE are actually inspired by MAX/MSP objects that were not cloned in Cyclone. By the way, ELSE is also part of PlugData, therefore, the documentation of Cyclone points to alternatives in ELSE.
4343

44-
A couple of objects in Cyclone are now borrowed from ELSE, like [pink~] and [comment] (this one based on ELSE's [note] and was actually deprecated). These objects are backwards compatible and offer more stuff than the orginal MAX object, so not really fully compatible.
44+
Some objects in Cyclone are now borrowed from ELSE, like [pink~], [tanh~] and [comment] (this one based on ELSE's [note] and was actually deprecated). These objects are backwards compatible and offer more stuff than the orginal MAX object, so not really fully compatible.
4545

4646
The only object that hasn't been updated yet to MAX 7.3.5 is [mtr] and this is on the To Do list. Cyclone may still incorporate new functionalities in existing objects from Max 8 (current release) and newer 9+ versions in the future, but we can't promise it.
4747

48-
A 'mc' compatiblity would be possible now, as of Pd version 0.54-0, which supports multichannel connections. Notwithstandingly, there's no plan to create such objects for Cyclone and pursue this compatibility. On the other hand, users can currently build their own "mc" like abstractions based on cyclone objetcs with [clone]. Please note that many ELSE objects have multichannel support!
48+
A 'mc' compatiblity would be possible now, as of Pd version 0.54-0, which supports multichannel connections. Notwithstandingly, there's no plan to create such objects for Cyclone and pursue this compatibility. On the other hand, users can currently build their own "mc" like abstractions based on cyclone objetcs with [clone]. Please note that many ELSE objects have multichannel support! The [tanh~] object in Cyclone is now the same on from ELSE and has MC support, as an example.
4949

5050

5151
-------

README.pdf

-859 Bytes
Binary file not shown.

cyclone_objects/binaries/cyclone_lib.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -634,16 +634,16 @@ static int min_bugfix = 0;
634634

635635
static int cyclone_major = 0;
636636
static int cyclone_minor = 9;
637-
static int cyclone_bugfix = 0;
637+
static int cyclone_bugfix = 2;
638638

639639
void print_cyclone(t_cyclone *x){
640640
int major = 0, minor = 0, bugfix = 0;
641641
sys_getversion(&major, &minor, &bugfix);
642642
post("");
643643
post("--------------------------------------------------------------------");
644-
post(":: Cyclone %d.%d-%d; Released July 2nd 2024", cyclone_major, cyclone_minor, cyclone_bugfix);
644+
post(":: Cyclone %d.%d-%d; Released March 14th 2025", cyclone_major, cyclone_minor, cyclone_bugfix);
645645
post(":: License: BSD-3-Clause (aka Revised BSD License)");
646-
post(":: Copyright © 2003-2024 - Krzysztof Czaja, Hans-Christoph Steiner,");
646+
post(":: Copyright © 2003-2025 - Krzysztof Czaja, Hans-Christoph Steiner,");
647647
post(":: Fred Jan Kraan, Alexandre Porres, Derek Kwan, Matt Barber\n\:: and others.");
648648
post(":: -----------------------------------------------------------------");
649649
if((major > min_major)

documentation/extra_files/CHANGELOG.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@
33
---------------------------------------------------
44

55
--------------------------------------------------
6-
cyclone 0.9-1 (needs at least Pd Vanilla 0.55-0):
6+
cyclone 0.9-2 (needs at least Pd Vanilla 0.55-0):
77
--------------------------------------------------
8-
- Improved the object browser plugin
8+
9+
- Fixed bug in [delay~] that adds an extra sample delay when using signal input
10+
- Fixed crash in [vectral~] when resizing to a size larger than the initial size
11+
- [sprintf], fixed a bug where an empty symbol input became "0". Added support for %a/%A types, plus 'space' flag (even though these don't work in MAX, coz... you know... MAX sucks). Added support for missing 'L' and double length specifiers ('hh' and 'll'). The documentation was improved and it is now made clear that some things won't work as expected in the regular list output, but this is also true for the MAX original, which kinda sucks anyway (have I said MAX sucks? So I guess we don't have to offer functionalities and features not present in the original object or have all of their bugs fixed).
12+
- replace [tanh~] with the one from ELSE
913

1014
--------------------------------------------------
1115
cyclone 0.9-1 (needs at least Pd Vanilla 0.55-0):

documentation/extra_files/cyclone-meta.pd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
#X text 27 212 HELP_PATCHES_AUTHOR: Alexandre Torres Porres, f 60;
99
#X text 27 142 FOLLOWING DEVELOPERS: Hans-Christoph Steiner (2005-2013) and Fred Jan Kraan (dec/2014 - feb/2016);
1010
#X text 27 172 CURRENT DEVELOPERS (since february 2016): Alexandre Torres Porres \, Derek Kwan and Matt Barber (Actually \, since about 2020 \, virtually just Porres)., f 60;
11-
#X text 27 73 VERSION: 0.9-1, f 60;
1211
#X text 27 91 RELEASE_DATE: Released August 20th 2024, f 60;
12+
#X text 27 73 VERSION: 0.9-2, f 60;

0 commit comments

Comments
 (0)