Skip to content

Commit 55ac03c

Browse files
committed
Merge branch 'release-2.14.8' into develop
2 parents edb5f72 + 75a28fa commit 55ac03c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

client/modules/IDE/components/About.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function About(props) {
6363
</p>
6464
<p className="about__content-column-list">
6565
<a
66-
href="https://p5js.org/learn/"
66+
href="https://p5js.org/tutorials/"
6767
target="_blank"
6868
rel="noopener noreferrer"
6969
>
@@ -164,7 +164,7 @@ function About(props) {
164164
</p>
165165
<p className="about__content-column-list">
166166
<a
167-
href="https://p5js.org/download/support.html"
167+
href="https://p5js.org/donate/"
168168
target="_blank"
169169
rel="noopener noreferrer"
170170
>

client/modules/Preview/previewIndex.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const App = () => {
5555
function addCacheBustingToAssets(files) {
5656
const timestamp = new Date().getTime();
5757
return files.map((file) => {
58-
if (file.url) {
58+
if (file.url && !file.url.endsWith('obj') && !file.url.endsWith('stl')) {
5959
return {
6060
...file,
6161
url: `${file.url}?v=${timestamp}`

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "p5.js-web-editor",
3-
"version": "2.14.7",
3+
"version": "2.14.8",
44
"description": "The web editor for p5.js.",
55
"scripts": {
66
"clean": "rimraf dist",

0 commit comments

Comments
 (0)