forked from DISTRHO/Cardinal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
424 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -154,6 +154,24 @@ | |
[submodule "plugins/Orbits"] | ||
path = plugins/Orbits | ||
url = [email protected]:RareBreeds/Orbits.git | ||
[submodule "plugins/stocaudio"] | ||
path = plugins/stocaudio | ||
url = https://github.com/aptrn/stocaudio-modules.git | ||
[submodule "plugins/CatroModulo"] | ||
path = plugins/CatroModulo | ||
url = https://github.com/catronomix/catro-modulo.git | ||
[submodule "plugins/LilacLoop"] | ||
path = plugins/LilacLoop | ||
url = https://github.com/grough/lilac-loop-vcv.git | ||
[submodule "plugins/kocmoc"] | ||
path = plugins/kocmoc | ||
url = https://github.com/janne808/kocmoc-rack-modules.git | ||
[submodule "plugins/PathSet"] | ||
path = plugins/PathSet | ||
url = https://github.com/patheros/PathSetModules.git | ||
[submodule "plugins/Dintree"] | ||
path = plugins/Dintree | ||
url = https://github.com/hires/Dintree-Virtual.git | ||
[submodule "plugins/StarlingVia"] | ||
path = plugins/StarlingVia | ||
url = https://github.com/starlingcode/Via-for-Rack.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* DISTRHO Cardinal Plugin | ||
* Copyright (C) 2021 Filipe Coelho <[email protected]> | ||
* Copyright (C) 2021-2022 Filipe Coelho <[email protected]> | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License as | ||
|
@@ -15,4 +15,6 @@ | |
* For a full copy of the GNU General Public License see the LICENSE file. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <shlobj.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* DISTRHO Cardinal Plugin | ||
* Copyright (C) 2021 Filipe Coelho <[email protected]> | ||
* Copyright (C) 2021-2022 Filipe Coelho <[email protected]> | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License as | ||
|
@@ -15,4 +15,6 @@ | |
* For a full copy of the GNU General Public License see the LICENSE file. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <shlwapi.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* DISTRHO Cardinal Plugin | ||
* Copyright (C) 2021-2022 Filipe Coelho <[email protected]> | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License as | ||
* published by the Free Software Foundation; either version 3 of | ||
* the License, or any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* For a full copy of the GNU General Public License see the LICENSE file. | ||
*/ | ||
|
||
#pragma once | ||
#include_next <future> | ||
#include "mingw.future.h" | ||
|
||
#undef IN | ||
#undef OUT | ||
#undef far | ||
#undef near |
Submodule CatroModulo
added at
bf6f96
Submodule ExpertSleepers-Encoders
updated
3 files
+1 −1 | plugin.json | |
+73 −3 | src/ES40.cpp | |
+73 −3 | src/ES5.cpp |
Submodule GrandeModular
updated
15 files
+54 −0 | README.md | |
+ − | images/Logic.png | |
+ − | images/Peak.png | |
+15 −1 | plugin.json | |
+507 −0 | res-src/Logic.svg | |
+744 −0 | res-src/Peak.svg | |
+87 −0 | res-src/SmallLightFlat.svg | |
+76 −0 | res/Logic.svg | |
+131 −0 | res/Peak.svg | |
+10 −0 | res/SmallLightFlat.svg | |
+302 −0 | src/Logic.cpp | |
+172 −0 | src/Peak.cpp | |
+7 −0 | src/components.hpp | |
+2 −0 | src/plugin.cpp | |
+2 −0 | src/plugin.hpp |
Submodule JW-Modules
updated
9 files
+5 −0 | CHANGELOG.md | |
+1 −1 | plugin.json | |
+4 −12 | src/NoteSeq.cpp | |
+4 −12 | src/NoteSeq16.cpp | |
+4 −12 | src/NoteSeqFu.cpp | |
+4 −12 | src/OnePattern.cpp | |
+4 −12 | src/Patterns.cpp | |
+4 −12 | src/Trigs.cpp | |
+4 −12 | src/XYPad.cpp |
Oops, something went wrong.