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.6KB

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