Skip to content

Commit

Permalink
Bring up to date with latest RC 588342d7
Browse files Browse the repository at this point in the history
  • Loading branch information
david-c14 committed Nov 16, 2021
1 parent d123cd3 commit 7080db8
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 93 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build_linux/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export RACK_USER_DIR=${GITHUB_WORKSPACE}

git submodule update --init --recursive

curl -L https://vcvrack.com/downloads/Rack-SDK-${RACK_SDK_VERSION}.zip -o rack-sdk.zip
curl -L https://vcvrack.com/downloads/Rack-SDK-${RACK_SDK_VERSION}-lin.zip -o rack-sdk.zip
unzip -o rack-sdk.zip
rm rack-sdk.zip

Expand Down
18 changes: 0 additions & 18 deletions .github/actions/build_osx/Dockerfile

This file was deleted.

19 changes: 0 additions & 19 deletions .github/actions/build_osx/entrypoint.sh

This file was deleted.

2 changes: 1 addition & 1 deletion .github/actions/build_win/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export STRIP=x86_64-w64-mingw32-strip

git submodule update --init --recursive

curl -L https://vcvrack.com/downloads/Rack-SDK-${RACK_SDK_VERSION}.zip -o rack-sdk.zip
curl -L https://vcvrack.com/downloads/Rack-SDK-${RACK_SDK_VERSION}-win.zip -o rack-sdk.zip
unzip -o rack-sdk.zip
rm rack-sdk.zip

Expand Down
24 changes: 0 additions & 24 deletions .github/actions/upload_zip/script.sh

This file was deleted.

11 changes: 4 additions & 7 deletions .github/workflows/buildRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@ name: Release
env:
RACK_DIR: ${GITHUB_WORKSPACE}/Rack-SDK
RACK_USER_DIR: ${GITHUB_WORKSPACE}
RACK_SDK_VERSION: 2.git.588342d7
jobs:
buildLinux:
name: Build Linux
runs-on: ubuntu-latest
env:
RACK_SDK_VERSION: 2.git.219bbaf1-lin
steps:
- uses: actions/checkout@master
- name: Build Linux
Expand All @@ -20,8 +19,6 @@ jobs:
buildWindows:
name: Build Windows
runs-on: ubuntu-latest
env:
RACK_SDK_VERSION: 2.git.219bbaf1-win
steps:
- uses: actions/checkout@master
- name: Build Windows
Expand All @@ -31,18 +28,18 @@ jobs:
buildOsx:
name: Build OSX
runs-on: macos-10.15
env:
RACK_SDK_VERSION: 2.git.219bbaf1-mac
steps:
- uses: actions/checkout@master
- name: install tools
run: brew install automake
- name: get Rack-SDK
run: curl -L https://vcvrack.com/downloads/Rack-SDK-${RACK_SDK_VERSION}.zip -o rack-sdk.zip
run: curl -L https://vcvrack.com/downloads/Rack-SDK-${RACK_SDK_VERSION}-mac.zip -o rack-sdk.zip
- name: unzip SDK
run: unzip -o rack-sdk.zip
- name: clean up SDK
run: rm rack-sdk.zip
- name: update submodules
run: git submodules update --init --recursive
- name: make
run: make dist
- name: upload zip
Expand Down
22 changes: 8 additions & 14 deletions .github/workflows/buildV2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,16 @@ on:
- v2q
name: V2
env:
RACK_SDK_VERSION: 2.git.219bbaf1-mac
RACK_SDK_VERSION: 2.git.588342d7
RACK_DIR: ${GITHUB_WORKSPACE}/Rack-SDK
RACK_USER_DIR: ${GITHUB_WORKSPACE}
jobs:
buildOSX:
name: Build OSX
runs-on: macos-10.15
buildLinux:
name: Build Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: install tools
run: brew install automake
- name: get Rack-SDK
run: curl -L https://vcvrack.com/downloads/Rack-SDK-${RACK_SDK_VERSION}.zip -o rack-sdk.zip
- name: unzip SDK
run: unzip -o rack-sdk.zip
- name: clean up SDK
run: rm rack-sdk.zip
- name: make
run: make dist
- name: Build Linux
uses: ./.github/actions/build_linux
- name: upload zip
run: sh ./.github/actions/upload_plugin_lin/script.sh ${{ secrets.GITHUB_TOKEN }}
5 changes: 4 additions & 1 deletion src/LT1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,10 @@ struct LT116 : SchemeModuleWidget {
}
void normaliseAll() {
bulkChangeWithHistory("LT116 normalise all columns", [=](float *params) {
__m128 a1, a2, a3, a4 = _mm_setzero_ps();
__m128 a1 = _mm_setzero_ps();
__m128 a2 = _mm_setzero_ps();
__m128 a3 = _mm_setzero_ps();
__m128 a4 = _mm_setzero_ps();
for (int i = 0; i < 256; i += 16) {
__m128 s = _mm_load_ps(params + i);
a1 = _mm_add_ps(a1, s);
Expand Down
6 changes: 2 additions & 4 deletions src/WM1.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
//SubTag W10 WP AM
#include <settings.hpp>
#include <system.hpp>
#include <osdialog.h>
#include "SubmarineFree.hpp"

Expand Down Expand Up @@ -1184,8 +1182,8 @@ struct WM101 : SizeableModuleWidget, WM_Base {
lastCable = NULL;
highlightIsDirty = true;
}
if (wirePanel->visible && APP->scene->rack->incompleteCable) {
colorCable(APP->scene->rack->incompleteCable,NULL);
if (wirePanel->visible && APP->scene->rack->getIncompleteCable()) {
colorCable(APP->scene->rack->getIncompleteCable(),NULL);
}
highlightWires();
SizeableModuleWidget::step();
Expand Down
1 change: 0 additions & 1 deletion src/shared/EventWidgets.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#include <settings.hpp>
#include "../SubmarineFree.hpp"

void EventWidgetAction::undo() {
Expand Down
1 change: 0 additions & 1 deletion src/shared/SizeableModuleWidget.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#include <settings.hpp>
#include "../SubmarineFree.hpp"

json_t *SizeableModule::dataToJson() {
Expand Down
2 changes: 0 additions & 2 deletions src/shared/SubTooltip.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
#include <settings.hpp>
#include "../SubmarineFree.hpp"

void SubTooltip::step() {
if (stepLambda != NULL)
stepLambda();
//Tooltip::step();
}

0 comments on commit 7080db8

Please sign in to comment.