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.

CHANGELOG.md 18KB

5 years ago
5 years ago
5 years ago
7 years ago
7 years ago
7 years ago
7 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  1. # VCV Rack changelog
  2. In this document, Mod is Ctrl on Windows/Linux and Cmd on Mac.
  3. ### 2.0.0 (in development)
  4. - Redesign Module Browser with compact layout, adjustable zoom levels, sorting options, intelligent searching, and multiple tag selection.
  5. - Redesign component graphics by [Pyer](https://www.pyer.be/).
  6. - Add port tooltips with name, voltage, and list of connected ports.
  7. - Evaluate mathematical expressions (such as `1+2*3`) in parameter context menu fields.
  8. - Add multiple module selection by highlighting a rectangle or Shift-clicking on a module panel.
  9. - Add importing/exporting module selections to new `.vcvs` file format.
  10. - Add module whitelist to Module Browser which synchronizes individual modules chosen in the VCV Library.
  11. - Add favorite modules filter to Module Browser.
  12. - Restructure engine to no longer use an "engine thread".
  13. - Improve engine performance and latency by no longer requiring thread synchronization between the engine thread and audio thread. The engine now runs directly on the audio thread.
  14. - Add support for multiple simultaneous audio devices.
  15. - Add "Master module" context menu item to VCV Audio modules to select which audio device clocks the engine.
  16. - Allow other modules to be the primary module, such as VCV Recorder for rendering audio faster than real-time.
  17. - Remove "Real-time priority" menu item, since the thread priority is now managed elsewhere (RtAudio, etc).
  18. - Remove engine pausing as it no longer makes sense with the new engine architecture.
  19. - Replace module disabling with bypassing, which directly routes certain inputs to outputs if specified by the plugin.
  20. - Duplicate cables patched to inputs when a module is duplicated.
  21. - Add module tags to module context menu.
  22. - Add module manual URL (if plugin developer supplies it) to module context menu item.
  23. - Add quick access to user module patches from `<Rack user dir>/presets/<plugin slug>/<module slug>` to module context menu. Supports subdirectories.
  24. - Add infinity and NaN protection to cables, so they won't propagate non-finite values from badly behaving modules.
  25. - Add basic headless support with the `-h` flag.
  26. - Add multiple parameter dragging modes: scaled linear, absolute rotary, and relative rotary.
  27. - Add "knobLinearSensitivity" property to settings.
  28. - Add timestamps to MIDI messages.
  29. - Allow sending and receiving SysEx messages through MIDI drivers.
  30. - Allow scrolling with Alt-click and drag.
  31. - Add "File > Open recent" menu item for opening recent patches.
  32. - Add "Preset > Save template" to module context menu which saves the default module preset to load when a new instance is added to the rack.
  33. - Break Rack executable into libRack shared library and lightweight standalone Rack executable.
  34. - Add support for 1/2x and 1/4x low-fidelity sample rates to engine and "Engine > Sample rates" menu.
  35. - Add Escape key command for existing fullscreen, in case F11 doesn't work.
  36. - Copy cable color when cloning cables with Mod+click.
  37. - Fix key commands on AZERTY, Dvorak, and all other keyboard layouts.
  38. - Add Mouse device to Computer keyboard/mouse MIDI driver.
  39. - Make scrollbar mouse interaction similar to modern OS behavior.
  40. - Re-render framebuffers when subpixel offset changes, fixing bug that makes ports and knobs appear slightly offset at certain zoom levels.
  41. - Use new `.vcv` patch format, an archive (POSIX tar compressed with Zstandard) of a `patch.json` file, module patch assets, and potentially other future files.
  42. - Use randomly-generated 53-bit IDs to identify modules and cables in the patch.
  43. - Use a fuzzy search algorithm for searching modules in the Module Browser.
  44. - Add tips window which appears when Rack launches or when choosing "Help > Tips".
  45. - Check for Library updates every few seconds to avoid needing to restart Rack to check for updates.
  46. - When clicking on a module in the Module Browser and immediately releasing, place the module in the last cursor position in the rack, rather than the current cursor position.
  47. - When clicking and dragging a module from the Module Browser, fix the mouse handle offset to the center of the module.
  48. - Allow adjusting rack brightness for "Lights Off" mode.
  49. - Improve light rendering with a more physical blending algorithm.
  50. - Add engine CPU meter and framerate meter to menu bar.
  51. - Allow zooming rack with extra mouse buttons 4 and 5.
  52. - Add `"pixelRatio"` to settings for forcing the UI pixel scale.
  53. - If Mod+clicking on any menu item, the menu stays open (except for some menu items like "Delete Module").
  54. - Add Mod+F1 key command when cursor is hovering a module to open its user manual.
  55. - Redesign CPU meter with percentage history graph.
  56. - Core
  57. - Add Audio-2 module with stereo input/output, a level knob, and VU meters.
  58. - Add DC blocker setting to Audio modules. On Audio-2, enable it by default.
  59. - Add MPE mode to MIDI-CC and MIDI-Gate.
  60. - Add mode to MIDI-CC to process 14-bit MIDI CC via MSB/LSB.
  61. - Use MIDI timestamps in MIDI-CV, MIDI-CC, MIDI-Gate, and MIDI-Map to improve overall timing and drastically reduce clock jitter.
  62. - Add red clip lights to VCV Audio-8/16 when signal reaches beyond ±10V.
  63. - Reset notes in MIDI-CV and MIDI-Gate if an "all notes off" MIDI message is received.
  64. - Allow disabling smoothing for MIDI-CV (pitch and mod wheel), MIDI-CC, and MIDI-Map.
  65. - Add several module presets for many Core modules.
  66. - API
  67. - Add `Module::configInput()` and `Module::configOutput()` for adding names to ports.
  68. - Replace `ParamWidget::paramQuantity` with `ParamWidget::getParamQuantity()`.
  69. - Add `.modules[].manualUrl` to plugin manifest schema.
  70. - Add `appendAudioMenu()` and `appendMidiMenu()` so plugin developers can develop custom audio/MIDI interfaces without adding an `AudioWidget/MidiWidget` to their panel.
  71. - Make `Module::toJson()` and `fromJson()` virtual.
  72. - Add `Module::paramsToJson()` and `paramsFromJson()` virtual methods.
  73. - Add `SwitchQuantity` and a helper method `Module::configSwitch()` for displaying named values in the parameter context menu. Also add `Module::configButton()` recommended for momentary switches with no value labels.
  74. - Overhaul Engine threading model to allow as many Engine methods to be called simultaneously as possible, while ensuring that Module events are mutually exclusive to module processing.
  75. - Add `Engine::getNumModules()` and `Engine::getModuleIds()`.
  76. - Add `event::KeyBase::keyName`. Plugins should use this instead of `key` for alphanumeric keys in order to support all keyboard layouts.
  77. - Improve thread safety of `dsp::RingBuffer`.
  78. - Add several convenient filesystem routines to `system::`.
  79. - Add `system::getTime()` and `getUnixTime()`.
  80. - Add `system::readFile()` and `writeFile()`.
  81. - Move all `string::` functions dealing with filesystem paths to `system::`.
  82. - Change type of `Module::id` and `Cable::id` from `int` to `int64_t`.
  83. - Move event classes to inside `widget::Widget` class.
  84. - Deprecate `Window::loadSvg()`. Un-deprecate `Svg::load()`.
  85. - `Font` and `Image` can no longer be stored across UI frames. Load them with `APP->window->loadFont()` and `loadImage()` each `draw()` method.
  86. - Add `Widget::hasChild()`, `addChildBottom()`, `addChildBelow()`, `addChildAbove()`, and `drawChild()`.
  87. - Add `Module::createPatchStorageDirectory()` and `getPatchStorageDirectory()`.
  88. - Add `createMenuLabel()`, `createMenuItem()`, `createCheckMenuItem()`, `createBoolMenuItem()`, `createBoolPtrMenuItem()`, `createSubmenuItem()`, `createIndexSubmenuItem()`, and `createIndexPtrSubmenuItem()` to helpers.
  89. - Add `Module::onReset()` and `onRandomize()`. Overrides default param resetting and randomization behavior if overridden, unless super methods are called.
  90. - Add `Module::SaveEvent`.
  91. - Add operator overloads for `Vec`.
  92. - Add `string::join()`, `split()`, `formatTime()`, and `formatTimeISO()`.
  93. - Add `random::Xoroshiro128Plus` which can be used like C++ `<random>` classes.
  94. - Add `Port::getVoltageRMS()`.
  95. - Add setters/getters for nearly every instance variable in Rack's API. Use these for higher likelihood of stability.
  96. ### 1.1.6 (2019-11-04)
  97. - Add ability for plugins to use LuaJIT on Mac.
  98. - Fix normal random number generator possibly returning -infinity.
  99. - Core
  100. - MIDI-Map: Don't move param until the first MIDI CC command is sent.
  101. - API
  102. - Remove support for namespaced `rack::APP`, `rack::DEBUG`, etc macros. Use namespace-less `APP`, `DEBUG`, etc instead.
  103. - Add `dsp::IIRFilter`.
  104. ### 1.1.5 (2019-09-29)
  105. - Swap order of tags and brands in Module Browser.
  106. - Add View > Frame rate menu bar item.
  107. - Hide menu and scrollbars when fullscreen.
  108. - Add key command (F3) for engine CPU meter.
  109. - Add numpad key commands.
  110. - Automatically unzip update on Mac.
  111. - Stop worker threads when engine is paused to save CPU.
  112. - Core
  113. - Disable smoothing for MIDI CC buttons in MIDI-Map.
  114. - Fix sustain pedal release bug when using polyphonic mode in MIDI-CV.
  115. - API
  116. - Add libsamplerate library.
  117. ### 1.1.4 (2019-08-22)
  118. - Fix parameter smoothing of MIDI-Map.
  119. - Sort modules within plugin in the Module Browser according to plugin rather than alphabetically.
  120. - Fix bug where knobs sometimes jump while dragging.
  121. - Reimplement CPU meter to measure thread runtime, not real time.
  122. - Fix crashes when deleting/duplicating modules while dragging modules/cables in certain cases.
  123. - API
  124. - Add `dsp::BiquadFilter`.
  125. - Add `dsp/approx.hpp` with approximate math functions.
  126. - Add `simd::tan()`, `atan()`, and `atan2()`.
  127. - Add `string::toBase64()` and `fromBase64()`.
  128. ### 1.1.3 (2019-07-23)
  129. - Include root certificate bundle for libcurl on all OS's.
  130. - Revert to OpenSSL from Schannel on Windows.
  131. - Bundle unsigned Fundamental package on Mac.
  132. ### 1.1.2 (2019-07-20)
  133. - Add app notarization on Mac, which removes the "Apple cannot check for malicious software" message on launch.
  134. - Write stack trace to log.txt and display dialog box when Rack crashes.
  135. - Re-enable JACK MIDI driver on Linux.
  136. - Fix scroll speed for mice and trackpads on Mac.
  137. - Fix undo history bug when dragging patch file to the Rack window.
  138. - Fix crash when pasting presets to an empty rack space with Mod-V.
  139. - Fix module expanders being assigned incorrectly when loading presets.
  140. - Add check for duplicate port IDs for modules.
  141. ### 1.1.1 (2019-07-01)
  142. - Add auto-updating on Windows when Help > Update VCV Rack is clicked.
  143. - Fix extension filters in open/save dialog box on Windows.
  144. - Fix expanders not attaching when force-dragging modules.
  145. ### 1.1.0 (2019-06-27)
  146. - Request microphone access on Mac to prevent Mac 10.14+ from blocking audio input.
  147. - Clear filters in Module Browser when backspace is pressed while the search field is empty.
  148. - Add Mod-0 key command to set zoom to 100%.
  149. - Emulate middle-click with Ctrl-shift-click on Mac.
  150. - Fix MIDI receiving in Bridge MIDI driver.
  151. - Fix opening/saving UTF-8 filenames on Windows.
  152. - Fix bug where cable ID's were not being set in .vcv patches.
  153. - Plugin API
  154. - Add `string::absolutePath()`.
  155. - Use namespace for Core plugin to avoid name clashes.
  156. ### 1.0.0 (2019-06-19)
  157. - Add polyphonic cables.
  158. - Add multithreading to engine.
  159. - Add undo/redo history.
  160. - Add module expander support.
  161. - Add parameter labels, units, and descriptions.
  162. - Add parameter tooltips for quickly viewing parameter values.
  163. - Add parameter context menu for entering numerical values, unmapping, etc.
  164. - Change parameter initialization to double-click.
  165. - Add ability to Mod-click on an input port to clone the existing cable.
  166. - Add module "force" dragging when holding Mod.
  167. - Add ability to disable modules with a context menu item and key command Mod-E.
  168. - Add sample rates up to 768,000 Hz (16 x 48,000 Hz).
  169. - Overhaul Module Browser with visual previews of modules.
  170. - Add plugin info sub-menu to module context menu with links to manual, website, source code, etc.
  171. - Add factory presets to module context menu if plugin supplies a folder of presets.
  172. - Add default template patch.
  173. - Add menu item to save the current patch as the template.
  174. - Add "frameRateLimit" and "frameRateSync" for setting maximum screen refresh rate and to toggle vertical sync.
  175. - Add "autosavePeriod" for setting the frequency of autosaves in seconds.
  176. - Add textual menu bar, rearranged menu items, removed icons.
  177. - Make CPU timer display microseconds and percentage instead of millisamples.
  178. - Add engine real-time priority setting.
  179. - Make rack infinite in all four directions.
  180. - Add bus board graphic to rack.
  181. - Add key command Mod-`-` and Mod-`=`, or Mod-scroll, for zooming the rack.
  182. - Fix draw order of cable plugs and wires.
  183. - Make Gamepad MIDI driver generate MIDI CC instead of MIDI notes for buttons.
  184. - Add Numpad keyboard MIDI device.
  185. - Fix Unicode user directories on Windows.
  186. - Add ability to change cable colors in `settings.json`.
  187. - Add `-p X` flag for dumping a screenshot of each available module.
  188. - Allow user to see changelogs of plugins before updating their plugin library.
  189. - Allow user to update individual plugins.
  190. - Core
  191. - Add Audio-16 with 16/16 inputs/outputs.
  192. - Add CV-MIDI, CV-CC, and CV-Gate for sending MIDI to external devices.
  193. - Add MIDI-Map for mapping MIDI CC parameters directly to Rack parameters.
  194. - Add polyphony to MIDI-CV.
  195. - Add MPE mode to MIDI-CV.
  196. - Add "Panic" button to all MIDI modules to reset performance state.
  197. - Plugin API
  198. - Add [`helper.py`](helper.py) for creating and manipulating plugins with the command-line.
  199. - Add [`simd.hpp`](include/dsp/simd.hpp) for generically handling arithmetic and math functions for vectors of floats, accelerated with SSE.
  200. - Add `dsp::VuMeter2`.
  201. - Add `dsp::Timer` and `dsp::Counter`.
  202. - Overhaul event system with many new events.
  203. - etc. See more at https://vcvrack.com/manual/Migrate1.html.
  204. - Licenses
  205. - Relicense Rack to GPLv3 with the VCV Rack Non-Commercial Plugin License Exception and a commercial licensing option.
  206. - Collect all license statements into new [LICENSE.md](LICENSE.md) file.
  207. - License Core panel graphics under CC BY-NC-ND 4.0.
  208. ### 0.6.2 (2018-07-13)
  209. - Add module presets.
  210. - Add [command line arguments](https://vcvrack.com/manual/Installing.html#command-line-usage) for setting Rack directories.
  211. - Improve UI/engine communication stability.
  212. - [VCV Bridge](https://vcvrack.com/manual/Bridge.html) 0.6.2
  213. - Add VST FX plugin.
  214. ### 0.6.1 (2018-06-17)
  215. - Add gamepad MIDI driver.
  216. - Add computer keyboard MIDI driver.
  217. - Add JACK support on Linux.
  218. - Add velocity mode to MIDI-Trig.
  219. - Add MIDI multiplexing so multiple MIDI modules can use the same MIDI device on Windows.
  220. - Make Module Browser layout more compact.
  221. - Add power meter.
  222. - Add icons to toolbar.
  223. - [VCV Bridge](https://vcvrack.com/manual/Bridge.html) 0.6.1
  224. - Replace VST effect plugin with VST instrument plugin with audio inputs.
  225. - Add MIDI support.
  226. - Add DAW transport and clock.
  227. ### 0.6.0 (2018-03-29)
  228. - Release [*VCV Bridge*](https://vcvrack.com/manual/Bridge.html) for interfacing Rack with your DAW.
  229. - VST/AU effect plugins (Mac and 32/64-bit Windows) for using Rack as a send/return on a DAW track.
  230. - Enables future VSTi/AU instrument plugins with MIDI and DAW clock transport to be added in a later Rack 0.6.* update.
  231. - Updated [*Plugin Manager*](https://vcvrack.com/plugins.html) to handle open-source plugins.
  232. - Potentially all plugins can be added with help from the [VCV Community](https://github.com/VCVRack/community/issues/248).
  233. - New *Module Browser* for adding modules to the rack.
  234. - Launch by right-clicking on the rack or pressing <enter>.
  235. - Add "favorite" modules by clicking on the star button.
  236. - Navigate modules with arrow keys or mouse.
  237. - Redesign [Core](https://vcvrack.com/manual/Core.html) modules.
  238. - Access to audio channels beyond the first 8 inputs/outputs.
  239. - Improve AUDIO stability.
  240. - Add retrigger output to MIDI-1.
  241. - Merged MIDI clock module with MIDI-1.
  242. - Fix MIDI-4 sustain pedal in polyphonic modes.
  243. - Improve sample rate conversion performance, is disabled entirely when not needed.
  244. - Patch cable colors are saved to patch files.
  245. - Add highlighting for active patch cables when hovering mouse over port.
  246. - Add shadows to knobs and ports.
  247. - Add File > "Disconnect cables".
  248. - Release [Rack SDK](https://github.com/VCVRack/Rack/issues/258#issuecomment-376293898) for compiling plugins without compiling Rack.
  249. ### 0.5.1 (2017-12-19)
  250. - Add Plugin Manager support.
  251. - Fix metadata panel in the Add Module window.
  252. ### 0.5.0 (2017-11-21)
  253. - Add zoom scaling from 25% to 200%.
  254. - Automatically scroll when dragging cables to the edge of the screen.
  255. - Add Quad MIDI-to-CV Interface, CC-to-CV, Clock-to-CV, and Trigger-to-CV MIDI interfaces.
  256. - Improve support for ASIO, WASAPI, DirectSound, Core Audio, and ALSA audio drivers.
  257. - New module browser with search and tags.
  258. - Enhanced LED emulation in graphics engine.
  259. - File > New attempts to load "template.vcv" in the "Documents/Rack" folder if it exists.
  260. ### 0.4.0 (2017-10-13)
  261. - Cables can now stack on output ports.
  262. - Add sub-menus for each plugin, includes optional plugin metadata like URLs.
  263. - Add MIDI CC-to-CV Interface, updated MIDI-to-CV Interface.
  264. - Add new scrolling methods: middle-click-and-drag, shift-scroll, and arrow keys.
  265. - Add engine pausing in sample rate menu.
  266. - Add resizable blank to Core.
  267. - Add LEDs on plugs.
  268. - Support for AMD Phenom II processors.
  269. - Use self-contained Mac app bundle, no need for a Rack folder.
  270. ### 0.3.2 (2017-09-25)
  271. - Add key commands.
  272. - Fix "invisible knobs/ports" rendering bug for ~2010 Macs.
  273. - Add "allowCursorLock" to settings.json (set to "false" for touch screen support).
  274. - Fix 100% CPU issue when no audio device is selected.
  275. - Add vector scaling panels.
  276. ### 0.3.1 (2017-09-13)
  277. - Fix Windows open dialog current working directory graphics problem.
  278. - Mod-C/Mod-V to copy/paste from text and password fields.
  279. - Automatically remember settings and login token between launches.
  280. - Remove .zip after downloading and extracting plugin.
  281. - Mod-click to right click on Mac.
  282. - Fix menu "flicker" when menu cannot fit in window.
  283. - tweaks to Fundamental and Audible Instruments plugins.
  284. ### 0.3.0 (2017-09-10)
  285. - Knobcon public Beta release.