Browse Source

Update changelog, fix local directory on Windows

tags/v0.4.0
Andrew Belt 7 years ago
parent
commit
e1e2645d0c
2 changed files with 4 additions and 1 deletions
  1. +2
    -1
      CHANGELOG.md
  2. +2
    -0
      src/asset.cpp

+ 2
- 1
CHANGELOG.md View File

@@ -2,8 +2,9 @@ Tip: Use `git checkout v0.3.2` for example to check out any previous version men




### dev ### dev
- Cables can now stack on output ports
- Added sub-menus for each plugin, includes optional plugin metadata like URLs - Added sub-menus for each plugin, includes optional plugin metadata like URLs
- Added middle-click and drag to scroll
- Added middle-click-and-drag to scroll, shift-scroll to scroll horizontally
- Added engine pausing in sample rate menu - Added engine pausing in sample rate menu
- Support for AMD Phenom II processors - Support for AMD Phenom II processors
- Use self-contained Mac app bundle, no need for a Rack folder - Use self-contained Mac app bundle, no need for a Rack folder


+ 2
- 0
src/asset.cpp View File

@@ -77,6 +77,8 @@ std::string assetLocal(std::string filename) {
#endif #endif
#if ARCH_WIN #if ARCH_WIN
// TODO // TODO
// Use ~/My Documents/Rack or something
path = "./" + filename;
#endif #endif
#if ARCH_LIN #if ARCH_LIN
// TODO // TODO


Loading…
Cancel
Save