The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

533 lines
26KB

  1. == Major JUCE features and updates ==
  2. This file just lists the more notable headline features. For more detailed info
  3. about changes and bugfixes please see the git log and BREAKING-CHANGES.txt.
  4. Version 6.1.2
  5. - Fixed an OpenGL display refresh rate issue on macOS
  6. - Improved the scaling behaviour of hosted VST3 plug-ins
  7. - Improved accessibility support
  8. Version 6.1.1
  9. - Fixed a CMake installation issue
  10. - Improved parameter value loading after plug-in restarts
  11. - Fixed some problems with multi-line text layouts
  12. - Added a fallback for modal native message boxes on Windows
  13. - Fixed an issue setting OpenGL repaint events
  14. - Improved accessibility support
  15. Version 6.1.0
  16. - Added accessibility support
  17. - Enabled use of VST3 plug-in extensions
  18. - Improved OpenGL function loading
  19. - Updated to C++14
  20. - Added support for macOS Monterey and iOS 15
  21. - Added async versions of all modal functions
  22. - Fixed some VST3 threading issues
  23. - Added cross-platform-compatible VST3 UID hash
  24. - Improved MinGW compatibility
  25. - Fixed some issues with BufferingAudioReader
  26. - Improved TextEditor repainting
  27. - Added support for larger ASIO buffers
  28. - Updated Android Oboe to 1.6.1
  29. - Improved modal dismissing
  30. - Improved assertion handling on macOS ARM
  31. Version 6.0.8
  32. - Fixed a macOS graphics invalidation region issue
  33. - Improved the handling of modal dialog dismissal
  34. - Fixed audio glitching in CoreAudio before microphone permission is granted
  35. - Improved AUv3 resizing and initialisation
  36. - Fixed some string to double conversions
  37. - Improved iOS split view behaviour
  38. - Added Display::safeAreaInserts
  39. - Improved assertion behaviour on macOS ARM
  40. - Multiple resizing and display scaling fixes
  41. - Added more information to audioProcessorChanged callbacks
  42. - Fixed some DSP convolution issues
  43. - Added host detection on macOS ARM
  44. Version 6.0.7
  45. - Fixed a macOS drawing issue
  46. - Updated the DemoRunner bundle ID
  47. Version 6.0.6
  48. - Moved to the new CoreMIDI API on supported platforms
  49. - Added support for the "New Build System" in Xcode
  50. - Made the audio format readers more robust
  51. - Improved the HiResTimer implementation
  52. - Fixed a VST3 program parameter issue
  53. - Updated to Oboe 1.5 on Android
  54. Version 6.0.5
  55. - Added more support for styling PopupMenus
  56. - Fixed some race conditions in the IPC and name named pipe classes
  57. - Implemented multiple FileChooser improvements
  58. - Added compatibility with the latest Android SDK
  59. - Prevented CoreAudio glitches before accepting audio access permissions
  60. - Made reading MIDI and audio files more robust
  61. Version 6.0.4
  62. - Improved the Projucer update mechanism
  63. - Fixed an AUv3 parameter normalisation issue
  64. - Fixed WASAPI exclusive mode sample rate selection bug
  65. - Fixed a Linux build issue when omitting ALSA
  66. Version 6.0.3
  67. - Fixed version numbers in project files
  68. Version 6.0.2
  69. - Added support for macOS 11 and arm64
  70. - Added Windows IAudioClient3 support for low latency audio drivers
  71. - Added Windows and macOS precompiled header support in the Projucer
  72. - Improved accessibility support in the macOS menu bar
  73. - Fixed VST3 hosting for plug-ins requiring persistent DLL loads
  74. - Updated macOS camera capture API
  75. - Improved resave diffs in Projucer project files
  76. - Fixed some Linux JACK issues
  77. Version 6.0.1
  78. - Fixed a bug in the Projucer GUI editor causing existing code to be overwritten
  79. - Updated Android Oboe to 1.4.2
  80. - Bumped default Android Studio gradle and plugin versions to the latest
  81. - Fixed some Android Oboe and OpenSL issues
  82. - Fixed some Doxygen parsing issues
  83. - Fixed MIDI input/output bus enablement in VST3 plug-ins
  84. - Improved Windows Clang compatibility
  85. - Fixed GCC 4.8 and 5.0 compatibility
  86. - Fixed some VST3 build errors and warnings on Linux
  87. - Fixed dynamically loaded X11 library names on Linux
  88. - Fixed Projucer CLion exporter generated CMakeLists.txt
  89. - Fixed drag and drop for non-DPI aware plug-ins on Windows
  90. Version 6.0.0
  91. - Added support for building JUCE projects with CMake
  92. - Revamped the DSP module
  93. - Added VST3 support on Linux
  94. - Added support for the latest webview components on macOS/iOS and Windows
  95. - Removed the sign-in requirement, app reporting and analytics from the Projucer
  96. - Added support for running headlessly on Linux
  97. - Bundled Oboe source in JUCE and made it the default audio device on Android
  98. - Various Oboe stability improvements
  99. - Various Projucer UI improvements
  100. - Added HWNDComponent for embedding native HWNDs on Windows
  101. - Added support for all camera names on macOS
  102. - Added support for building with Clang on Windows
  103. - Modified MidiMessageCollector to preallocate storage
  104. - Modified AudioProcessorGraph to allow extracting nodes
  105. - Refactored the APVTS parameter attachment classes and added a new ParameterAttachment class
  106. - Added IPP FFT implementation
  107. - Added all example plugins as internal nodes in AudioPluginHost project
  108. - Removed JuceHeader requirement from Projucer projects
  109. - Added support for legacy CC output events
  110. - Added MidiBuffer::Iterator class compatible with C++11 range-for
  111. - Added RangedDirectoryIterator class compatible with C++11 range-for
  112. - Provided range-for comaptibility for String class
  113. - Windows and Linux hiDPI scaling improvements
  114. - Various bug-fixes, improvements and documentation updates
  115. Version 5.4.7
  116. - Fixed a macOS focus bug causing Components to not receive mouse events
  117. - Fixed a potential NullPointerException in the Android IAP code
  118. - Fixed an entitlements file generation bug in the Projucer
  119. - Send VST2 audioMasterUpdateDisplay opcode on the message thread to fix some hosts not updating
  120. - Fixed some build errors and warnings when using Clang on Windows
  121. - Changed the default architecture specified in Linux Makefiles generated by the Projucer
  122. Version 5.4.6
  123. - Fixed compatibility with macOS versions below 10.11
  124. - Multiple thread safety improvements
  125. - Added dynamic parameter and parameter group names
  126. - Updated to the latest Android In-App Purchases API
  127. - Improvements to the Windows message queue under high load
  128. - Replaced WaitableEvent internals with std::condition_variable
  129. - Fixed some macOS text alignment issues
  130. Version 5.4.5
  131. - Improved message queue performance on Linux
  132. - Added missing lifecycle callbacks on Android Q
  133. - Refactored the AudioBlock class
  134. - Fixed APVTS parameter update recursion
  135. - Updated Bela code to support latest release
  136. - Fixed issues drawing italicised text on macOS
  137. - Fixed broken back button behaviour on Android
  138. - Added Bluetooth permissions settings needed for iOS 13.0+ to the Projucer
  139. - Replaced select() calls with poll()
  140. - Various bug-fixes, improvements and documentation updates
  141. Version 5.4.4
  142. - Improvements to floating point number printing
  143. - Faster plug-in parameter indexing
  144. - Added support for persisting attachements to MIDI devices
  145. - Refactored Linux event loop handling
  146. - Multiple C++ modernisation improvements to the API
  147. - Added support for macOS 10.15 and iOS 13
  148. - Added support for Visual Studio 2019
  149. - Removed support for Visual Studio 2013
  150. Version 5.4.3
  151. - Added a Visual Studio 2019 exporter to the Projucer
  152. - Added options to configure macOS Hardened Runtime in the Projucer
  153. - Fixed a potential memory corruption when drawing on macOS/iOS
  154. - Fixed file drag and drop for Windows 8
  155. - Multiple DSP module enhancements
  156. - Various bug-fixes, improvements and documentation updates
  157. Version 5.4.2
  158. - Restructured the low-level Android native code
  159. - Added an ADSR envelope class
  160. - AudioProcessorValueTreeState performance improvements
  161. - Improved Xcode 10 support
  162. - Improved VST3 hosting
  163. - Windows hiDPI scaling enhancements
  164. Version 5.4.1
  165. - Fixed a VST2 compilation error in VS2013
  166. - Fixed some live-build compilation errors in the Projucer
  167. - Fixed a bug in the Oversampling class
  168. - Made MPESynthesiserVoice::noteOnTime public
  169. - Fixed some bugs in the Unity plug-in wrapper
  170. - Fixed some VS2015 compiler errors
  171. Version 5.4.0
  172. - macOS Mojave and iOS 12 support
  173. - Windows hiDPI support
  174. - Unity native plug-in support
  175. - Microsoft BLE MIDI support
  176. - Plug-in parameter groups
  177. - Support for production-ready Android OBOE
  178. - Video playback support on Android and iOS
  179. - AudioProcessorValueTreeState improvements
  180. - Support for Android Studio 3.2
  181. - Various bug-fixes, improvements and documentation updates
  182. Version 5.3.2
  183. - Removed the OSX 10.5 and 10.6 deployment target options from the Projucer and enabled more C++11 features across all platforms
  184. - Replaced all usage of ScopedPointer with std::unique_ptr
  185. - Added camera support for iOS and Android
  186. - Fixed some issues using an UndoManager with an AudioProcessorValueTreeState
  187. - Added MIDI input to IAA plug-ins
  188. - Made multiple calls to MidiInput::openDevice share the same underlying win32 MIDI handle
  189. - Added a config flag to juce_audio_processors for enabling LADSPA plugin hosting and enabled it in the AudioPluginHost
  190. - Added a "plug-in can do" callback to the VSTCallbackHandler interface
  191. - Fixed various undefined behavior in SIMDRegister
  192. - Added the methods AudioBlock::copyTo/AudioBlock::copyFrom which facilitate copying to/from an AudioBuffer
  193. - Added a lambda callback to OpenGLGraphicsContextCustomShader to allow custom set-up when the shader is activated
  194. - Fixed a bug causing an unintentional menu item highlight disco party when using a popup menu in a plug-in's UI
  195. - Marked as deprecated: String::empty, var::null, File::nonexistent, ValueTree::invalid and other problematic statically-initialised null values
  196. Version 5.3.1
  197. - Add Android and iOS support to AudioPluginHost
  198. - Added support for Bela in the form of an AudioIODeviceType
  199. - Add bypass support to both hosting and plug-in client code
  200. - Added an isBoolean flag to APVTS parameters
  201. - Re-worked plug-in wrappers to all use new parameter system via LegacyAudioParameter wrapper class
  202. - Fixed an issue where opening the same midi device twice would cause a crash on Windows
  203. - Deprecated MouseInputSource::hasMouseMovedSignificantlySincePressed() and replaced with more descriptive methods
  204. - Added support for relative or special path symbolic links when compressing/uncompressing zip archives and creating/reading files
  205. - Ensured that File::replaceInternal does not fail with ACL errors on Windows
  206. - Merged-in some Ogg-Vorbis security fixes
  207. - Fixed a bug which would prevent a SystemTrayIconComponent from creating a native popup window on macOS
  208. - Various Android and iOS fixes
  209. - Added a "PIP Creator" utility tool to the Projucer
  210. - Added options for setting plugin categories and characteristics with MultiChoicePropertyComponent in the Projucer
  211. - Fixed a Projucer bug where the OSX base SDK version was not being set
  212. - Added a command-line option to use LF as linefeeds rather than CRLF in the Projucer cleanup tools
  213. - Multiple documentation updates
  214. Version 5.3.0
  215. - Added support for Android OBOE (developer preview)
  216. - Updated JUCE's MPE classes to comply with the new MMA-adopted specification
  217. - Multiple documentation updates
  218. - Restructured the examples and extras directories and updated all JUCE examples
  219. - Multiple hosted parameter improvements
  220. - Overhauled the GenericAudioProcessorEditor
  221. - Added support for a subset of the Cockos VST extensions
  222. - Added support for loading VST3 preset files
  223. - Added boolean AudioProcessorParameters
  224. - Added thread safe methods for getting and setting the AudioProcessorValueTreeState state
  225. - Added customisable MacOS icons
  226. Version 5.2.1
  227. - Added native content sharing support for iOS and Android
  228. - Added iOS and Android native file chooser support
  229. - Implemented WebBrowserComponent on Android
  230. - Added SystemStats::getDeviceManufacturer()
  231. - Ensured that JUCE will always use the high-performance audio path on Android if the device supports it
  232. - Added memory warning callbacks on iOS
  233. - Refactored iOSAudioDevice to support multi-channel audio devices and improve the handling of sample rate changes from other apps
  234. - Added SidePanel and BurgerMenu component classes
  235. - Added PushNotifications support on OSX
  236. - Added support for VST3 SDK 3.6.8
  237. - Added support for loading VST3 preset files
  238. - Added higher-order ambisonics support
  239. - Added thread safe methods for getting and setting the AudioProcessorValueTreeState state
  240. - Cleanup and refactoring work on the AudioProcessorGraph and the audio plugin host demo
  241. - Changed the default language standard for new projects from C++11 to C++14 and set all JUCE projects to use C++14
  242. - Made the ScopedPointer interface more compatible with std::unique_ptr
  243. - Changed Windows projects to use dynamic runtime linking by default
  244. - Added lambda callbacks to ListenerList, Slider, Button, Label, ComboBox and TextEditor
  245. - Fixed the live-build engine on Windows
  246. - Multiple DSP module fixes and features
  247. - Multiple threading and undefined behaviour fixes and improvements
  248. - Various graphics optimisations
  249. - Multiple Projucer UI and UX improvements
  250. - Various documentation tweaks and fixes
  251. Version 5.2.0
  252. - Added a CMake exporter to the Projucer
  253. - JUCE analytics module
  254. - Added support for push notifications on iOS and Android
  255. - Added in-app purchase support for macOS
  256. - Added a plugin binary copy step to the Visual Studio exporter
  257. - Added an option to set the debug information format in the Visual Studio exporter
  258. - Added a link-time optimisation option to all exporters
  259. - Added support for adding asm files to Android projects
  260. - Improved the reliability of the Projucer's live-build engine
  261. - Added support for AUv2 Midi Effect plug-in hosting
  262. - Added support for Atmos 7.0.2 and 7.1.2 Surround formats
  263. - Added support for the OGG sub-format inside a WAV file
  264. - Added support for querying the audio hardware on how many overruns/underruns occurred
  265. - Implement Process::hide on mobile platforms
  266. - Added support for multi-touch drag and drop
  267. - Improved the performance of 3D rendering when multiple OpenGL contexts are used at the same time
  268. - Tweaked the rate at which EdgeTable grows its internal storage, to improve performance rendering large and complex paths
  269. Version 5.1.2
  270. - Fixed multiple plugin-resizing bugs
  271. - Added support for AUv3 MIDI and screen size negotiation
  272. - Added support for Xcode 9 and iOS 11
  273. - Added an In-App Purchases module
  274. - Added backwards compatible constexpr support
  275. - Standalone plug-in improvements
  276. - Better .jucer file change monitoring in the Projucer
  277. - Increased the speed of AU parameter lookup
  278. - Improved the Android thread management when dealing with web requests
  279. - Better denormal support
  280. - Plug-in parameters can be explicitly marked as continuous or discrete
  281. - Multiple documentation updates
  282. Version 5.1.1
  283. - Fixed Windows live build engine on Visual Studio 2017
  284. - Fixed a compiler error in juce_MathFunctions.h in Visual Studio 2013
  285. - Fixed a potential crash when using the ProcessorDuplicator
  286. - Fixed a compiler-error in Filter::IIR
  287. - Fixed an issue where the WavFileFormatWriter could not create files with discrete channels
  288. - Fixed an issue where a window which is beneath a hidden window would not receive any clicks on Linux
  289. - Altered the format of BREAKING-CHANGES.txt to display better on GitHub
  290. - Projucer: Fixed an issue in exporter tilde expansion
  291. - Fixed compiler errors when building the DSP module with a static version of FFTW
  292. - Fixed an audio glitch when bypassing the convolution engine
  293. - Fixed an issue where a JUCE VST2 would not correctly report that it supports resizing of it’s plugin editor
  294. - Various documentation tweaks and fixes
  295. Version 5.1.0
  296. - Release of the JUCE DSP module
  297. - Multichannel audio readers and writers
  298. - Plugin editor Hi-DPI scaling support
  299. - Major improvements to Projucer module search paths
  300. - Added Projucer support for iOS app groups
  301. - Added support for AVFoundation and deprecated the use of Quicktime
  302. - Added a new real-time audio thread priority for Android
  303. - Various Projucer UI fixes
  304. - Various documentation fixes
  305. - Various minor improvements and bug fixes
  306. Version 5.0.2
  307. - Improved project save speed in the Projucer
  308. - Added option to save individual exporters in the Projucer
  309. - Added the ability to create custom colour schemes for the Projucer’s code editor
  310. - Minor fixes to JUCE’s SVG parser
  311. - Various bug fixes in the way JUCE handles Hi-DPI monitors
  312. - Improved code browsing in Visual Studio Exports
  313. - Improved the handling of audio device buffer size changes on iOS
  314. - Fixed bug in the Win32 FileChooser dialog when selecting a nonexistent root drive
  315. - Fixed a Projucer crash when saving projects with no targets
  316. - Fixed a bug where Projucer generated Makefiles would not trigger a recompilation when header files had changed
  317. - The standalone plugin target is now compatible with effect plug-ins
  318. - Fixed an issue where it was not possible to use the live build engine on plugin projects
  319. - Improved the way the Projucer’s live-build engine searches for platform headers on Windows
  320. - Fixed an issue where the Projucer would complain about not having internet even if the user had a license
  321. - Fixed a use-after-free in the AUv3 wrapper
  322. - Fixed an issue where the channel layout would not be reported correctly in the AUv3 wrapper
  323. - Fixed a potential memory overrun issue when hosting VST2 plugins with more than eight channels
  324. - Fixed a problem with the Mac main menu bar showing menus in the wrong position
  325. - Various Projucer UI fixes
  326. - Various documentation fixes
  327. - Various minor improvements and bug fixes
  328. Version 5.0.1
  329. - Fixed Windows live build engine on Visual Studio 2017
  330. - Fixed memory-leak in Projucer live build engine
  331. - Fixed an issue where you could not paste your redeem serial number with Cmd+V on macOS
  332. - Fixed an issue where the Projucer would crash on linux due to missing symbols in WebKit
  333. - Minor Projucer UI improvements
  334. - Various minor improvements and bug fixes
  335. Version 5.0.0
  336. - New licensing model
  337. - Projucer UI/UX overhaul
  338. - New look and feel (version 4)
  339. - New standalone plug-in format
  340. - Added support for Visual Studio 2017
  341. - Added support for VST3 SDK 3.6.7
  342. - Added support for Apple Inter-App Audio on iOS
  343. - Various Android stability and performance improvements
  344. - Added support for non-experimental gradle plug-in versions >= 2.2 and Android Studio 2.3
  345. - Added support for closed-source third-party modules
  346. - Added support for Windows 10 Bluetooth LE MIDI devices
  347. - Modernised JUCE codebase to use C++11/14 features
  348. - Added support for Linux embedded platforms
  349. - Added support for WebBrowserComponent on Linux
  350. - Added support for IPv6
  351. - Various minor improvements and bug fixes
  352. - Various documentation improvements
  353. Version 4.3.1
  354. - Added support for iOS download tasks
  355. - Added support for AAX plug-in meters
  356. - Added support for dynamically disabling/enabling sidechains in ProTools
  357. - Re-introduced support for VST3 plug-ins reporting which VST2 plug-in they can replace
  358. - Added withRightX and withBottomY methods to Rectangle
  359. - Added support for windows 10 on screen keyboard
  360. - Added move semantics to AudioBuffer
  361. - Added colour coding scheme to module icons in the Projucer to indicate which type of license a module uses
  362. - Removed all deprecation warnings for macOS Sierra
  363. - Fixed multiple touch, pen and mouse input related bugs on Windows
  364. - Added submenu support to ComboBoxes and simplified the usage of ComboBoxes
  365. - Various minor improvements and bug fixes
  366. - Various documentation improvements
  367. Version 4.3.0
  368. - Added API and examples for ROLI Blocks
  369. - Multiple Projucer live-build UI and diagnostics improvements
  370. - JUCE now supports hosting multi-bus plug-ins
  371. - BufferingAudioSource now supports pre-buffering (useful for offline processing)
  372. - Added microphone permissions switch to Projucer for iOS targets
  373. - Standalone wrappers now correctly save and restore midi settings
  374. - Various performance improvements to BigInteger
  375. - Fixed various FlexBox bugs
  376. - Added a workaround for the broken “Open Recent…” menu on os x
  377. - Various minor improvements and bug fixes
  378. - Various documentation improvements
  379. Version 4.2.4
  380. - Pre-release of live build engine on Windows
  381. - Added FlexBox layout engine
  382. - Removed dependency on external Steinberg SDK when building and/or hosting VST2 plug-ins
  383. - Added support for MIDI network sessions in the iOS simulator
  384. - Added support for symmetric skew to Slider, NormalisableRange and SliderPropertyComponent
  385. - Projucer now asks the user what to do when it detects that the .jucer file was modified outside of the Projucer
  386. - Improved support for Windows 10 touch devices
  387. - Added begin/end iterator methods for ValueTree, for handy range-based-for loops over its children
  388. - Added support for recent mingw-w64 compilers
  389. - Added useful proportional Rectangle utility methods
  390. - Significantly improved the performance of BigInteger
  391. - Added support for expiring licenses to juce_tracktion_marketplace
  392. - Added support for retina mouse cursors on OS X
  393. - Added a new low-quality mode for the CameraDevice
  394. - Added pkg-config support for Linux
  395. - Projucer will now wrap your AAX plug-in in the bundle format expected Pro Tools on Windows
  396. - Multiple bug-fixes for AudioUnit parameter ids
  397. - Fixed a bug where AlertWindows weren’t always on top
  398. - Multiple fixes for web InputStreams
  399. - Various improvements to the live build engine
  400. - Various minor improvements and bug fixes
  401. - Various documentation improvements
  402. Version 4.2.3
  403. - Various VST3 improvements: resizing VST3 windows, plug-in compatibility issues
  404. - Use NSURLSession on newer OS X versions
  405. - Add compatibility for VST 3 SDK update 3.6.6
  406. - Miscellaneous fixes and improvements
  407. Version 4.2.1
  408. - New class CachedValue, for providing easy and efficient access to ValueTree properties
  409. - Reduced audio plug-in binary sizes on OS X and added symbol-stripping option
  410. - Miscellaneous fixes and improvements
  411. Version 4.2
  412. - Added support for AudioUnit v3 on OS X and iOS
  413. - Simplified the JUCE module format. Removed the json module definition files, and made
  414. it easier to manually add modules to projects. The format is fully described in the
  415. document juce/modules/JUCE Module Format.txt
  416. - iOS project support: added custom resource folders, custom xcassets, app capabilities,
  417. and screen orientation settings.
  418. - Deleted the Introjucer.. But don't panic! All of its functionality is now supplied by a
  419. more open-source version of the Projucer. By refactoring the closed-source LLVM compilation
  420. code into a DLL, we've been able to unify the Introjucer and Projucer into a single
  421. open-source project. This will allow everyone to compile the Projucer's IDE themselves, and
  422. having just one app instead of two will make things a lot less confusing!
  423. Version 4.1
  424. - Added multi-bus support for audio plug-in clients
  425. - Added support for MIDI effect plug-ins (AU and AAX).
  426. - Added new example: Network Graphics Demo
  427. Version 4.0.3
  428. - Added MPE (Multidimensional Polyphonic Expression) classes
  429. - Added full support for generating and parsing Midi RPN/NRPN messages
  430. - Made the LinearSmoothedValue class public
  431. - Miscellaneous fixes and minor improvements
  432. Version 4.0.2
  433. - Miscellaneous fixes and house-keeping
  434. Version 4.0.1
  435. - Initial release of the Projucer!
  436. - Full OSC support!
  437. - Android Studio exporting from the Introjucer
  438. - Android-M pro-audio low-latency i/o support
  439. - Bluetooth MIDI device support on iOS and Android
  440. - AudioSampleBuffer refactored into a templated class AudioBuffer, to allow
  441. 32 or 64 bit float support
  442. - Audio plugin and hosting now supports 64-bit data
  443. - Support for force-touch and pen pressure on iOS and Windows
  444. - Added easy sound-file playing methods to AudioDeviceManager
  445. - Many updates to Introjucer
  446. - Many new tutorials and examples
  447. Version 3.3.0
  448. - New functions for Base64 conversion
  449. - New command-line options in the introjucer for trimming whitespace and
  450. replacing tabs in source files
  451. Version 3.2.0
  452. - Major OpenGL performance/stability improvements
  453. - Performance improvements to FloatVectorOperations math functions
  454. - New FloatVectorOperations: abs, min, max, addWithMultiply, clip
  455. - Midi channel pressure support
  456. - New example projects ComponentTutorialExample, SimpleFFTExample,
  457. PluckedStringsDemo
  458. - New class ValueTreeSynchroniser, for remote-syncing multiple
  459. ValueTrees
  460. - HTTPS/SSL support on Linux
  461. - Added methods for degrees to radians conversions
  462. - Added Neon instruction set support for Android targets
  463. - JUCE ValueTree performance improvements
  464. - Linux and Android multi-monitor HiDPI support
  465. - Support the “display=none” attribute in SVG files
  466. - Support for text elements in SVG files
  467. - Added Whirlpool hash class to the cryptography module
  468. - Various improvements for parameter automation in VST, VST-3,
  469. AudioUnits and AAX
  470. - Various improvements to JUCE Synthesiser
  471. - Linux Code::Blocks project support
  472. - Multicast support
  473. - Add support to generate project version numbers from project git tags
  474. - Various updates to example projects
  475. - Stability improvements to re-order and resize code of plug-in windows
  476. - Support for external third-party native libraries on Android
  477. - Introjucer’s auto-update now displays release notes
  478. - Various Introjucer usability improvements
  479. - Support for in-memory fonts on Android
  480. - New FFT class
  481. - WASAPI exclusive mode support
  482. - More C++11 feature support macros
  483. - Performance improvements to XML parsing
  484. - Add compatibility for AAX SDK 2.2.0
  485. - Added parameters to the ValueTree::Listener::valueTreeChildRemoved()
  486. and valueTreeChildOrderChanged() methods to include more info about
  487. exactly what changed
  488. - Over 400 minor changes, bug-fixes, documentation improvements, etc.