From 5675775ab518c5c6ded8129323c74715573f7327 Mon Sep 17 00:00:00 2001 From: Paul Date: Sun, 19 Jan 2025 15:28:32 -0500 Subject: [PATCH] Add a menu item to the acknowldgements page (#142) Ahead of 1.0 --- src/ui/six-sines-editor.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/ui/six-sines-editor.cpp b/src/ui/six-sines-editor.cpp index c0d4f87..cd31c34 100644 --- a/src/ui/six-sines-editor.cpp +++ b/src/ui/six-sines-editor.cpp @@ -606,7 +606,12 @@ void SixSinesEditor::showPresetPopup() }); p.addItem("Get the Source", []() { juce::URL("https://github.com/baconpaul/six-sines/").launchInDefaultBrowser(); }); - + p.addItem("Acknowledgements", + []() + { + juce::URL("https://github.com/baconpaul/six-sines/blob/main/doc/ack.md") + .launchInDefaultBrowser(); + }); p.showMenuAsync(juce::PopupMenu::Options().withParentComponent(this)); }