Skip to content

Commit

Permalink
cyclone 0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
porres committed Feb 21, 2023
1 parent 734967d commit 3932867
Show file tree
Hide file tree
Showing 5 changed files with 63 additions and 104 deletions.
4 changes: 2 additions & 2 deletions cyclone_objects/binaries/cyclone_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ static int printed;

static int min_major = 0;
static int min_minor = 53;
static int min_bugfix = 1;
static int min_bugfix = 2;

static int cyclone_major = 0;
static int cyclone_minor = 7;
Expand All @@ -639,7 +639,7 @@ void print_cyclone(t_cyclone *x){
sys_getversion(&major, &minor, &bugfix);
post("");
post("--------------------------------------------------------------------");
post(":: Cyclone %d.%d-%d; Unreleased", cyclone_major, cyclone_minor, cyclone_bugfix);
post(":: Cyclone %d.%d-%d; Released february 21st 2023", cyclone_major, cyclone_minor, cyclone_bugfix);
post(":: License: BSD-3-Clause (aka Revised BSD License)");
post(":: Copyright © 2003-2021 - Krzysztof Czaja, Hans-Christoph Steiner,");
post(":: Fred Jan Kraan, Alexandre Porres, Derek Kwan, Matt Barber\n\:: and others.");
Expand Down
2 changes: 1 addition & 1 deletion documentation/extra_files/All_about_cyclone.pd
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,4 @@ Max/MSP;
255 255 0 0 It also provides some level of compatibility between the
two environments.;
#X obj 26 36 cyclone/comment 108 14 DejaVu\ Sans\ Mono empty 0 224
228 220 0 255 255 255 0 0 version: 0.7;
228 220 0 255 255 255 0 0 version: 0.7-0;
13 changes: 10 additions & 3 deletions documentation/extra_files/CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,16 @@
cyclone 0.7-0 (needs at least Pd Vanilla 0.53-1):
--------------------------------------------------

- [number~] can now properly show nan/inf thanks to changes in Vanilla's [nbx] in Pd 0.53-0.
- Can't believe missed another issue with capital letters aliasing: missed packaging capital letter Pow~ for Linux and giving it an error like the other ones.

- [number~] can now print 'nan' thanks to new features in Pd 0.53
- [scope~]: Fixed resizing issues when zoomed. Added undo. Minor cosmetic changes that were considered unnecessary as it only tried to mimmick a bit more the original aspect in MAX when selecting the object and we're already failing in doing tha 100% perfectly anyway, plus other minor cosmetic improvements.
- [comment]: We finally have a decent properties window (thanks to Tim Schoen)!!! Fixed some issues with zooming. Fixed many issues with resizing and also justification. Fixed saving parameters. Improved drawing the handle. Fixed resizing when maximum width wasn't set. Added undo. Added outline parameter. Added width parameter (this was only set before via dragging the handle in edit mode). This is now diverging from the original MAX object and is basically a clone of [else/note], an object from the ELSE library that was originally based on cyclone's [comment]. This also completes the updates to this object which was almost the last one to get updated.
- [mtr] starting to update this object to MAX 7 at last (and this is the last one that never got updated). Added attributes @speed / @trackspeed / @loop and @embed. We missed updates to this one as it was included some time after 7.0! There are numerous things to add and we won't be able to add them all. More are yet to come until we can say we finally reached the goal of updating Cyclone to MAX 7!
- [pink~] is now a whole new object stolen from ELSE, which has more features but it's also backwards compatible.
- [pow~] added missing 'Pow~' alias for Linux and error/warning (like other objects that clash in Vanilla - can't believe we still missed getting all of these right)
- [coll] now updates window if it's opened and when you use the 'read'/'readagain' messages
- [acosh] fixed bug calculating the value
- [record~] fixed regression bug in loading arguments
- [out~] object, borrowed from ELSE, removed and not used in the documentation anymore. We now use [output~] which should be called from Pd's 'extra' library (it was included there in version 0.52).

--------------------------------------------------
cyclone 0.6-1 (needs at least Pd Vanilla 0.52-1):
Expand Down
17 changes: 6 additions & 11 deletions documentation/extra_files/cyclone-meta.pd
Original file line number Diff line number Diff line change
@@ -1,17 +1,12 @@
#N canvas 658 81 403 247 10;
#X text 26 50 LIBRARY: cyclone, f 60;
#X text 26 101 LICENSE: SIBSD, f 60;
#X text 26 210 WEBSITE: https://github.com/porres/pd-cyclone, f 60
;
#X text 26 210 WEBSITE: https://github.com/porres/pd-cyclone, f 60;
#X text 26 31 DESCRIPTION: Max/MSP clones, f 60;
#X text 26 14 KEYWORDS: external library, f 60;
#X text 26 118 ORIGINAL AUTHOR (2002-2005): Krzysztof Czaja (and others)
, f 60;
#X text 26 194 HELP_PATCHES_AUTHOR: Alexandre Torres Porres, f 60
;
#X text 26 165 CURRENT DEVELOPERS (since february 2016): Alexandre
Torres Porres \, Derek Kwan and Matt Barber, f 60;
#X text 26 135 FOLLOWING DEVELOPERS: Hans-Christoph Steiner (2005-2013)
and Fred Jan Kraan (dec/2014 - feb/2016);
#X text 26 84 RELEASE_DATE: Unreleased, f 60;
#X text 26 118 ORIGINAL AUTHOR (2002-2005): Krzysztof Czaja (and others), f 60;
#X text 26 194 HELP_PATCHES_AUTHOR: Alexandre Torres Porres, f 60;
#X text 26 165 CURRENT DEVELOPERS (since february 2016): Alexandre Torres Porres \, Derek Kwan and Matt Barber, f 60;
#X text 26 135 FOLLOWING DEVELOPERS: Hans-Christoph Steiner (2005-2013) and Fred Jan Kraan (dec/2014 - feb/2016);
#X text 26 66 VERSION: 0.7, f 60;
#X text 26 84 RELEASE_DATE: February 21st 2023, f 60;
Loading

0 comments on commit 3932867

Please sign in to comment.