-
-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stop using cardinal-specific settings::darkMode
Signed-off-by: falkTX <[email protected]>
- Loading branch information
Showing
10 changed files
with
14 additions
and
40 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
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,18 +1,7 @@ | ||
/* | ||
* DISTRHO Cardinal Plugin | ||
* Copyright (C) 2021-2023 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. | ||
* Copyright (C) 2021-2024 Filipe Coelho <[email protected]> | ||
* SPDX-License-Identifier: GPL-3.0-or-later | ||
*/ | ||
|
||
#pragma once | ||
|
@@ -24,8 +13,5 @@ namespace settings { | |
|
||
extern int rateLimit; | ||
|
||
// TODO remove after updating all plugins | ||
extern bool darkMode; | ||
|
||
} // namespace settings | ||
} // namespace rack |
Submodule AnimatedCircuits
updated
2 files
+3 −3 | src/Folding/FoldingWidget.cpp | |
+3 −3 | src/LFold/LFoldWidget.cpp |
Submodule GlueTheGiant
updated
10 files
+1 −1 | plugin.json | |
+2 −2 | src/BusDepot.cpp | |
+2 −2 | src/BusRoute.cpp | |
+2 −2 | src/EnterBus.cpp | |
+2 −2 | src/ExitBus.cpp | |
+2 −2 | src/GigBus.cpp | |
+2 −2 | src/MetroCityBus.cpp | |
+2 −2 | src/MiniBus.cpp | |
+2 −2 | src/Road.cpp | |
+2 −2 | src/SchoolBus.cpp |
Submodule Prism
updated
16 files
+111 −50 | .github/workflows/build-plugin.yml | |
+4 −0 | .gitignore | |
+1 −0 | .sonarcloud.properties | |
+0 −2 | README.md | |
+ − | doc/SMR-manual-1.1.1.pdf | |
+1 −1 | plugin.json | |
+179 −473 | res/RainbowScaleExpander.svg | |
+11 −28 | src/Common.hpp | |
+22 −28 | src/Droplet.hpp | |
+1 −7 | src/Filter.cpp | |
+1 −2 | src/Inputs.cpp | |
+3 −3 | src/LPF.cpp | |
+27 −63 | src/Rainbow.cpp | |
+126 −166 | src/Rainbow.hpp | |
+53 −74 | src/RainbowExpander.cpp | |
+6 −10 | src/Rotation.cpp |
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,18 +1,7 @@ | ||
/* | ||
* DISTRHO Cardinal Plugin | ||
* Copyright (C) 2021-2023 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. | ||
* Copyright (C) 2021-2024 Filipe Coelho <[email protected]> | ||
* SPDX-License-Identifier: GPL-3.0-or-later | ||
*/ | ||
|
||
#pragma once | ||
|
@@ -87,8 +76,9 @@ void openBrowser(const std::string& url); | |
# define CARDINAL_INIT_OSC_THREAD | ||
#endif | ||
|
||
typedef void* lo_server; | ||
typedef void* lo_server_thread; | ||
#ifdef HAVE_LIBLO | ||
# include <lo/lo_types.h> | ||
#endif | ||
|
||
START_NAMESPACE_DISTRHO | ||
|
||
|
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