-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #113 from sudara/juce8
Update to JUCE 8 and update dependencies
- Loading branch information
Showing
10 changed files
with
48 additions
and
240 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 |
---|---|---|
|
@@ -105,7 +105,7 @@ jobs: | |
submodules: true # Get JUCE populated | ||
|
||
- name: Cache the build | ||
uses: mozilla-actions/[email protected].4 | ||
uses: mozilla-actions/[email protected].5 | ||
|
||
- name: Import Certificates (macOS) | ||
uses: apple-actions/import-codesign-certs@v3 | ||
|
@@ -209,7 +209,7 @@ jobs: | |
- name: Codesign with Azure Trusted Signing | ||
if: ${{ matrix.name == 'Windows' }} | ||
uses: azure/trusted-signing-action@v0.3.18 | ||
uses: azure/trusted-signing-action@v0.4.0 | ||
with: | ||
# The Azure Active Directory tenant (directory) ID. | ||
azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }} | ||
|
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// All test files are included in the executable via the Glob in CMakeLists.txt | ||
|
||
#include "juce_gui_basics/juce_gui_basics.h" | ||
#include <catch2/catch_session.hpp> | ||
|
||
int main (int argc, char* argv[]) | ||
{ | ||
// This lets us use JUCE's MessageManager without leaking. | ||
// PluginProcessor might need this if you use the APVTS for example. | ||
// You'll also need it for tests that rely on juce::Graphics, juce::Timer, etc. | ||
// It's nicer DX when placed here vs. manually in Catch2 SECTIONs | ||
juce::ScopedJuceInitialiser_GUI gui; | ||
|
||
const int result = Catch::Session().run (argc, argv); | ||
|
||
return result; | ||
} |
Submodule cmake
updated
5 files
+2 −2 | Benchmarks.cmake | |
+12 −0 | CHANGELOG.md | |
+1 −1 | PamplejuceMacOS.cmake | |
+6 −2 | PamplejuceVersion.cmake | |
+2 −2 | Tests.cmake |
Submodule melatonin_inspector
updated
10 files
+34 −5 | .github/workflows/ci.yml | |
+31 −10 | CMakeLists.txt | |
+0 −4 | melatonin/component_model.h | |
+1 −5 | melatonin/components/collapsable_panel.h | |
+3 −15 | melatonin/components/color_picker.h | |
+1 −5 | melatonin/components/component_tree_view_item.h | |
+1 −5 | melatonin/components/preview.h | |
+1 −5 | melatonin/inspector_component.h | |
+23 −6 | melatonin/lookandfeel.h | |
+19 −7 | melatonin_inspector.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,18 @@ | ||
// All test files are included in the executable via the Glob in CMakeLists.txt | ||
|
||
#include "juce_gui_basics/juce_gui_basics.h" | ||
#include <catch2/catch_session.hpp> | ||
|
||
int main (int argc, char* argv[]) | ||
{ | ||
// This lets us use JUCE's MessageManager without leaking. | ||
// PluginProcessor might need this if you use the APVTS for example. | ||
// You'll also need it for tests that rely on juce::Graphics, juce::Timer, etc. | ||
// It's nicer DX when placed here vs. manually in Catch2 SECTIONs | ||
juce::ScopedJuceInitialiser_GUI gui; | ||
|
||
const int result = Catch::Session().run (argc, argv); | ||
|
||
return result; | ||
} | ||
#include <catch2/catch_test_macros.hpp> |
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