diff --git a/README.md b/README.md index 279061a8..8b594a01 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ![herofig_revised](https://github.com/TEAMuP-dev/HARP/assets/26678616/c4f5cdbb-aaff-4196-b9d2-3b6f69130856) - + @@ -25,7 +25,7 @@ HARP is a sample editor for **h**osted, **a**synchronous, **r**emote **p**rocess * **[Distribution](#distribution)** * **[Citations](#citations)** -For more information on HARP, please see [our website](https://harp-plugin.netlify.app) or our most recent [NeurIPS workshop paper](https://openreview.net/pdf?id=Ha2z921r51). +For more information on HARP, please see [our website](https://harp3.netlify.app) or our most recent [NeurIPS workshop paper](https://openreview.net/pdf?id=Ha2z921r51). @@ -39,7 +39,7 @@ HARP has been tested on the following operating systems: -Please visit [our website](https://harp-plugin.netlify.app/content/install/macos.html) for instructions on installing HARP and setting it up as an external sample editor for specific operating systems and DAWs. +Please visit [our website](https://harp3.netlify.app/content/install/macos.html) for instructions on installing HARP and setting it up as an external sample editor for specific operating systems and DAWs. # Usage @@ -67,7 +67,7 @@ HARP processes full regions in the DAW. Therefore, to edit a portion of an audio ## Models -Please visit [our website](https://harp-plugin.netlify.app/content/usage/models.html) for a full list of supported models. +Please visit [our website](https://harp3.netlify.app/content/usage/models.html) for a full list of supported models. ## Workflow diff --git a/src/windows/AboutWindow.h b/src/windows/AboutWindow.h index 4e4e4280..2b633457 100644 --- a/src/windows/AboutWindow.h +++ b/src/windows/AboutWindow.h @@ -25,14 +25,14 @@ class AboutWindow : public Component modelGlossaryButton.setButtonText("Model Glossary"); modelGlossaryButton.setURL( - URL("https://harp-plugin.netlify.app/content/usage/models.html")); + URL("https://harp3.netlify.app/content/usage/models.html")); modelGlossaryButton.setSize(380, 24); modelGlossaryButton.setTopLeftPosition(10, 110); modelGlossaryButton.setColour(HyperlinkButton::textColourId, Colours::blue); addAndMakeVisible(modelGlossaryButton); visitWebpageButton.setButtonText("Visit HARP Webpage"); - visitWebpageButton.setURL(URL("https://harp-plugin.netlify.app/")); + visitWebpageButton.setURL(URL("https://harp3.netlify.app/")); visitWebpageButton.setSize(380, 24); visitWebpageButton.setTopLeftPosition(10, 140); visitWebpageButton.setColour(HyperlinkButton::textColourId, Colours::blue); diff --git a/src/windows/WelcomeWindow.h b/src/windows/WelcomeWindow.h index ad3d7188..6bca1ee6 100644 --- a/src/windows/WelcomeWindow.h +++ b/src/windows/WelcomeWindow.h @@ -526,7 +526,7 @@ class WelcomeWindow : public DocumentWindow, public ChangeListener addAndMakeVisible(learnMoreLink); learnMoreLink.setButtonText("Learn more"); - learnMoreLink.setURL(URL("https://harp-plugin.netlify.app/content/intro.html")); + learnMoreLink.setURL(URL("https://harp3.netlify.app/content/intro.html")); addAndMakeVisible(copyrightLabel); copyrightLabel.setText("Copyright 2026 TEAMuP. All rights reserved.", @@ -640,7 +640,7 @@ class WelcomeWindow : public DocumentWindow, public ChangeListener Label pageIndicator; HyperlinkButton learnMoreLink { "Learn more", - URL("https://harp-plugin.netlify.app/content/intro.html") }; + URL("https://harp3.netlify.app/content/intro.html") }; Label copyrightLabel; TextButton showDetailsButton { "Show detailed control descriptions" }; diff --git a/website/.vitepress/config.mjs b/website/.vitepress/config.mjs index 4477dd03..d9e37510 100644 --- a/website/.vitepress/config.mjs +++ b/website/.vitepress/config.mjs @@ -28,7 +28,7 @@ export default defineConfig({ nav: [ { text: 'Home', link: '/' }, { text: 'Guide', link: '/content/intro' }, - // { text: 'API', link: 'https://harp-plugin.netlify.app/doxygen-docs/html/index.html'}, + // { text: 'API', link: 'https://harp3.netlify.app/doxygen-docs/html/index.html'}, ], footer: { diff --git a/website/README.md b/website/README.md index 97e61439..66accb37 100644 --- a/website/README.md +++ b/website/README.md @@ -2,7 +2,7 @@ This website is built using [Vitepress](https://vitepress.dev/). -We use [Netlify](https://www.netlify.com/) to deploy it under the domain [harp-plugin.netlify.app](https://harp-plugin.netlify.app/). +We use [Netlify](https://www.netlify.com/) to deploy it under the domain [harp3.netlify.app](https://harp3.netlify.app/). ## Build locally @@ -63,7 +63,7 @@ The website's content is primarily managed through Markdown files and VitePress ## Deploy to Netlify -* **Production Deployment:** The `main` branch of the `HARP` repository is automatically deployed to our live URL: [harp-plugin.netlify.app](https://harp-plugin.netlify.app/). +* **Production Deployment:** The `main` branch of the `HARP` repository is automatically deployed to our live URL: [harp3.netlify.app](https://harp3.netlify.app/). * **Deployment Previews:** Netlify automatically generates deployment previews for: * All Pull Requests (PRs) made against the `main` branch. * Any branch whose name starts with the prefix `website/*` (e.g., `website/new-feature`, `website/docs-update`). diff --git a/website/netlify.toml b/website/netlify.toml new file mode 100644 index 00000000..7a0e77a8 --- /dev/null +++ b/website/netlify.toml @@ -0,0 +1,6 @@ +[build] + command = "pnpm run build" + publish = ".vitepress/dist" + +[build.environment] + NODE_VERSION = "18"