Link to JUCE 6

I switched my other work to JUCE 7 long ago. But, I am needing to do a refresh build of all my plugins that were built using JUCE 6. And in the interim, I no longer have JUCE 6 on my system. What is the link to get the most recent version of JUCE 6?

You can get all JUCE releases on GitHub:

Assuming that you manage your plugin code with git anyway, it’s a good idea to not use a single system wide JUCE installation but adding JUCE as a git submodule and having checked out the specific JUCE commit your plugin has been built against, this way you can rely on always building the same project with the same JUCE version and can easily update JUCE for a single project. We do that with all our plugins. The only downside to this approach is that in case you are using the Projucer, you might need to keep multiple versions of the Projucer that match the different JUCE versions.

Thank you. This is just what I needed.

I do use ProJucer and I did not think I would need JUCE 6 again. But…

Anyway, much appreciated.