Skip to content

Commit

Permalink
chuck-1.5.1.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
gewang committed Oct 9, 2023
1 parent c1b9096 commit 47394f4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions VERSIONS
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ ChucK VERSIONS log

1.5.1.5 (October 2023) "operator overloading + chugins API 9.0"
=======
- (added) operator overloading in language;
most operator can now be overloaded, within their respective existing
- (added) operator overloading is here!
Most operator can now be overloaded, within their respective existing
forms in the language (e.g., binary operators such as '+' and '=>'
can be overloaded as binary operators, but not as unary operators);
also please note, similar to class definitions, operator overloads
are local in scope unless declared with 'public', the latter operator
overloading will persists until 1) the VM stops or 2) the VM is
cleared/reset
can be overloaded as binary operators, but not as unary operators).
Similar to class definitions, operator overloads are local in scope
to the file context, unless declared with 'public'. operator
overloading marked as 'public' will persists until 1) the VM stops or
2) the VM is cleared/reset.
//-----------------------------------------------------------
// the general format for overload an operator is as follows:
//-----------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/core/chuck.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@

// ChucK version string -- retrieve using ChucK::version()
// 1.5.0.0 (ge) | moved here for at-a-glance visibility (e.g., for chugins)
#define CHUCK_VERSION_STRING "1.5.1.5-rc1 (chai)"
#define CHUCK_VERSION_STRING "1.5.1.5 (chai)"

// ChucK param names -- used in setParam(...) and getParam*(...)
#define CHUCK_PARAM_VERSION "VERSION"
Expand Down
2 changes: 1 addition & 1 deletion src/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ CK_HOST_DIR=host
# where to find RtAudio
RTAUDIO_DIR=RtAudio
# chuck version
CK_VERSION=1.5.1.5-rc1
CK_VERSION=1.5.1.5


########################## DEFAULT MAKE TARGET ################################
Expand Down
4 changes: 2 additions & 2 deletions src/scripts/ckdoc/gen-all.ck
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ doc.addGroup(
doc.addGroup(
[ "ABSaturator", "AmbPan3", "Bitcrusher", "Elliptic", "ExpDelay", "ExpEnv", "FIR",
"FoldbackSaturator", "GVerb", "KasFilter", "MagicSine", "Mesh2D", "Multicomb",
"Pan4", "Pan8", "Pan16", "PitchTrack", "PowerADSR", "Sigmund", "Spectacle",
"WinFuncEnv", "WPDiodeLadder", "WPKorg35" ],
"Pan4", "Pan8", "Pan16", "PitchTrack", "PowerADSR", "RegEx", "Sigmund",
"Spectacle", "WinFuncEnv", "WPDiodeLadder", "WPKorg35" ],
// group name
"Chugins Library",
// file name
Expand Down

0 comments on commit 47394f4

Please sign in to comment.