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 7.2KB

7 years ago
5 years ago
7 years ago
7 years ago
7 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. ### 1.0.1 (in development)
  2. - Request microphone access on Mac to prevent Mac 10.14+ from blocking audio input.
  3. - Fix MIDI receiving in Bridge MIDI driver.
  4. - Fix opening/saving UTF-8 filenames on Windows.
  5. - API
  6. - Add `string::absolutePath()`.
  7. - Use namespace for Core plugin to avoid name clashes.
  8. ### 1.0.0 (2019-06-19)
  9. - Add polyphonic cables.
  10. - Add multithreading to engine.
  11. - Add undo/redo history.
  12. - Add module expander support.
  13. - Add parameter labels, units, and descriptions.
  14. - Add parameter tooltips for quickly viewing parameter values.
  15. - Add parameter context menu for entering numerical values, unmapping, etc.
  16. - Change parameter initialization to double-click.
  17. - Add ability to Ctrl-click on an input port to clone the existing cable.
  18. - Add module "force" dragging when holding Ctrl.
  19. - Add ability to disable modules with a context menu item and key command Ctrl-E.
  20. - Add sample rates up to 768,000 Hz (16 x 48,000 Hz).
  21. - Overhaul Module Browser with visual previews of modules.
  22. - Add plugin info sub-menu to module context menu with links to manual, website, source code, etc..
  23. - Add factory presets to module context menu if plugin supplies a folder of presets.
  24. - Add default template patch.
  25. - Add menu item to save the current patch as the template.
  26. - Add "frameRateLimit" and "frameRateSync" for setting maximum screen refresh rate and to toggle vertical sync.
  27. - Add "autosavePeriod" for setting the frequency of autosaves in seconds.
  28. - Add textual menu bar, rearranged menu items, removed icons.
  29. - Make CPU timer display microseconds and percentage instead of millisamples.
  30. - Add engine real-time priority setting.
  31. - Make rack infinite in all four directions.
  32. - Add bus board graphic to rack.
  33. - Add key command Ctrl-`-` and Ctrl-`=`, or Ctrl-scroll, for zooming the rack.
  34. - Fix draw order of cable plugs and wires.
  35. - Make Gamepad MIDI driver generate MIDI CC instead of MIDI notes for buttons.
  36. - Add Numpad keyboard MIDI device.
  37. - Fix Unicode user directories on Windows.
  38. - Add ability to change cable colors in `settings.json`.
  39. - Add `-p X` flag for dumping a screenshot of each available module.
  40. - Allow user to see changelogs of plugins before updating their plugin library.
  41. - Allow user to update individual plugins.
  42. - Core
  43. - Add Audio-16 with 16/16 inputs/outputs.
  44. - Add CV-MIDI, CV-CC, and CV-Gate for sending MIDI to external devices.
  45. - Add MIDI-Map for mapping MIDI CC parameters directly to Rack parameters.
  46. - Add polyphony to MIDI-CV.
  47. - Add MPE mode to MIDI-CV.
  48. - Add "Panic" button to all MIDI modules to reset performance state.
  49. - Plugin API
  50. - Add [`helper.py`](helper.py) for creating and manipulating plugins with the command-line.
  51. - Add [`simd.hpp`](include/dsp/simd.hpp) for generically handling arithmetic and math functions for vectors of floats, accelerated with SSE.
  52. - Add `dsp::VuMeter2`.
  53. - Add `dsp::Timer` and `dsp::Counter`.
  54. - Overhaul event system with many new events.
  55. - etc. See more at https://vcvrack.com/manual/Migrate1.html.
  56. - Licenses
  57. - Relicense Rack to GPLv3 with the VCV Rack Non-Commercial Plugin License Exception and a commercial licensing option.
  58. - Collect all license statements into new [LICENSE.md](LICENSE.md) file.
  59. - License Core panel graphics under CC BY-NC-ND 4.0.
  60. ### 0.6.2 (2018-07-13)
  61. - Add module presets.
  62. - Add [command line arguments](https://vcvrack.com/manual/Installing.html#command-line-usage) for setting Rack directories.
  63. - Improve UI/engine communication stability.
  64. - [VCV Bridge](https://vcvrack.com/manual/Bridge.html) 0.6.2
  65. - Add VST FX plugin.
  66. ### 0.6.1 (2018-06-17)
  67. - Add gamepad MIDI driver.
  68. - Add computer keyboard MIDI driver.
  69. - Add JACK support on Linux.
  70. - Add velocity mode to MIDI-Trig.
  71. - Add MIDI multiplexing so multiple MIDI modules can use the same MIDI device on Windows.
  72. - Make Module Browser layout more compact.
  73. - Add power meter.
  74. - Add icons to toolbar.
  75. - [VCV Bridge](https://vcvrack.com/manual/Bridge.html) 0.6.1
  76. - Replace VST effect plugin with VST instrument plugin with audio inputs.
  77. - Add MIDI support.
  78. - Add DAW transport and clock.
  79. ### 0.6.0 (2018-03-29)
  80. - Release [*VCV Bridge*](https://vcvrack.com/manual/Bridge.html) for interfacing Rack with your DAW.
  81. - VST/AU effect plugins (Mac and 32/64-bit Windows) for using Rack as a send/return on a DAW track.
  82. - Enables future VSTi/AU instrument plugins with MIDI and DAW clock transport to be added in a later Rack 0.6.* update.
  83. - Updated [*Plugin Manager*](https://vcvrack.com/plugins.html) to handle open-source plugins.
  84. - Potentially all plugins can be added with help from the [VCV Community](https://github.com/VCVRack/community/issues/248).
  85. - New *Module Browser* for adding modules to the rack.
  86. - Launch by right-clicking on the rack or pressing <enter>.
  87. - Add "favorite" modules by clicking on the star button.
  88. - Navigate modules with arrow keys or mouse.
  89. - Redesign [Core](https://vcvrack.com/manual/Core.html) modules.
  90. - Access to audio channels beyond the first 8 inputs/outputs.
  91. - Improve AUDIO stability.
  92. - Add retrigger output to MIDI-1.
  93. - Merged MIDI clock module with MIDI-1.
  94. - Fix MIDI-4 sustain pedal in polyphonic modes.
  95. - Improve sample rate conversion performance, is disabled entirely when not needed.
  96. - Patch cable colors are saved to patch files.
  97. - Add highlighting for active patch cables when hovering mouse over port.
  98. - Add shadows to knobs and ports.
  99. - Add File > "Disconnect cables".
  100. - Release [Rack SDK](https://github.com/VCVRack/Rack/issues/258#issuecomment-376293898) for compiling plugins without compiling Rack.
  101. ### 0.5.1 (2017-12-19)
  102. - Add Plugin Manager support.
  103. - Fix metadata panel in the Add Module window.
  104. ### 0.5.0 (2017-11-21)
  105. - Add zoom scaling from 25% to 200%.
  106. - Automatically scroll when dragging cables to the edge of the screen.
  107. - Add Quad MIDI-to-CV Interface, CC-to-CV, Clock-to-CV, and Trigger-to-CV MIDI interfaces.
  108. - Improve support for ASIO, WASAPI, DirectSound, Core Audio, and ALSA audio drivers.
  109. - New module browser with search and tags.
  110. - Enhanced LED emulation in graphics engine.
  111. - File > New attempts to load "template.vcv" in the "Documents/Rack" folder if it exists.
  112. ### 0.4.0 (2017-10-13)
  113. - Cables can now stack on output ports.
  114. - Add sub-menus for each plugin, includes optional plugin metadata like URLs.
  115. - Add MIDI CC-to-CV Interface, updated MIDI-to-CV Interface.
  116. - Add new scrolling methods: middle-click-and-drag, shift-scroll, and arrow keys.
  117. - Add engine pausing in sample rate menu.
  118. - Add resizable blank to Core.
  119. - Add LEDs on plugs.
  120. - Support for AMD Phenom II processors.
  121. - Use self-contained Mac app bundle, no need for a Rack folder.
  122. ### 0.3.2 (2017-09-25)
  123. - Add key commands.
  124. - Fix "invisible knobs/ports" rendering bug for ~2010 Macs.
  125. - Add "allowCursorLock" to settings.json (set to "false" for touch screen support).
  126. - Fix 100% CPU issue when no audio device is selected.
  127. - Add vector scaling panels.
  128. ### 0.3.1 (2017-09-13)
  129. - Fix Windows open dialog current working directory graphics problem.
  130. - Ctrl-C/Ctrl-V to copy/paste from text and password fields.
  131. - Automatically remember settings and login token between launches.
  132. - Remove .zip after downloading and extracting plugin.
  133. - Ctrl-click to right click on Mac.
  134. - Fix menu "flicker" when menu cannot fit in window.
  135. - tweaks to Fundamental and Audible Instruments plugins.
  136. ### 0.3.0 (2017-09-10)
  137. - Knobcon public Beta release.