From 8a581f14f10ff48f354a5084ded1ac450d67d1d2 Mon Sep 17 00:00:00 2001 From: kit <1304340+ksen0@users.noreply.github.com> Date: Mon, 10 Nov 2025 23:14:02 +0100 Subject: [PATCH] Add new p5 version 2.1.1 to p5Versions We recently [released p5.js 2.1.1](https://github.com/processing/p5.js/releases/tag/v2.1.1)! This adds it to the version picker. (2.1.0 is intentionally omitted, we released a patch almost immediately.) I have verified that this pull request: * [x] has no linting errors (`npm run lint`) * [x] has no test errors (`npm run test`) * [x] is from a uniquely-named feature branch and is up to date with the `develop` branch. * [x] is descriptively named and links to an issue number, i.e. `Fixes #123` --- common/p5Versions.js | 1 + 1 file changed, 1 insertion(+) diff --git a/common/p5Versions.js b/common/p5Versions.js index 60fe10cf16..cade044581 100644 --- a/common/p5Versions.js +++ b/common/p5Versions.js @@ -5,6 +5,7 @@ export const currentP5Version = '1.11.11'; // Don't update to 2.x until 2026 // JSON.stringify([...document.querySelectorAll('._132722c7')].map(n => n.innerText), null, 2) // TODO: use their API for this to grab these at build time? export const p5Versions = [ + '2.1.1', '2.0.5', '2.0.4', '2.0.3',