Browse Source

Update CHANGELOG, fix strip flags in dist

pull/1639/head
Andrew Belt 7 years ago
parent
commit
08276345df
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      CHANGELOG.md
  2. +2
    -2
      Makefile

+ 1
- 1
CHANGELOG.md View File

@@ -3,7 +3,7 @@

- Released [*VCV Bridge*](https://vcvrack.com/manual/Core.html#Bridge) for interfacing Rack with your DAW
- VST/AU effect plugins (Mac and 32/64-bit Windows) for using Rack as a send/return on a DAW track
- VSTi/AUi and DAW clock transport coming soon in a later Rack 0.6 update
- VSTi/AU instrument, MIDI, and DAW clock transport coming soon in a later Rack 0.6.* update
- New *Module Browser* for adding modules to the rack
- Launch by right-clicking on the rack or pressing <enter>
- Add "favorite" modules by clicking on the star button


+ 2
- 2
Makefile View File

@@ -156,7 +156,7 @@ ifeq ($(ARCH), win)
cp Bridge/vst/dist/VCV-Bridge-32.dll dist/Rack/Bridge/
cp -R LICENSE* res dist/Rack/
cp $(TARGET) dist/Rack/
strip dist/Rack/$(TARGET)
strip -s dist/Rack/$(TARGET)
cp /mingw64/bin/libwinpthread-1.dll dist/Rack/
cp /mingw64/bin/zlib1.dll dist/Rack/
cp /mingw64/bin/libstdc++-6.dll dist/Rack/
@@ -182,7 +182,7 @@ ifeq ($(ARCH), lin)
mkdir -p dist/Rack
cp -R LICENSE* res dist/Rack/
cp $(TARGET) Rack.sh dist/Rack/
strip dist/Rack/$(TARGET)
strip -s dist/Rack/$(TARGET)
cp dep/lib/libspeexdsp.so dist/Rack/
cp dep/lib/libjansson.so.4 dist/Rack/
cp dep/lib/libGLEW.so.2.1 dist/Rack/


Loading…
Cancel
Save