Skip to content

WebChucK IDE v2.1.4

Latest
Compare
Choose a tag to compare
@terryzfeng terryzfeng released this 31 Oct 05:55
· 1 commit to main since this release

WebChucK IDE v2.1.4 is here featuring brand new sensors and UI improvements! πŸŽ‰

Live => https://chuck.stanford.edu/ide

What's New:

  • New integrated WebChucK sensors Gyro & Accel with cool demos (Examples > Sensor) 🀳 (thanks @mulshine)
  • Visual notification pings when loading HID/GUI/Sensor examples 🚨
  • Exporting IDE projects now have a descriptive .zip name πŸ“
  • Improved WebChucK modal interface now allows you to select your .ck driver code πŸš™
  • Exported WebChucK pages: Play button will now show a loading state
  • Adding a shred now prints a green spork ANSI message (like miniAudicle) πŸ€
  • New GUI and Visualizer help prompts 🚧
  • New view IDE version info in Help > About IDE... ℹ️
  • ...and more minor UI tweaks, bug fixes, and improvements 🎨

Beta Features:

  • Use custom built chugins (.chug.wasm)
    • Use ChucK 1.5.4.0-dev (under File > Settings) with the new @import syntax to run your own chugins
      • Upload your .chug.wasm compiled binary (e.g. MyChugin.chug.wasm)
      • Example usage:
      @import "MyChugin"
      
      MyChugin foo;
      
      foo.bar();