Skip to content

Commit

Permalink
Merge branch 'release-2.14.8' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
raclim committed Oct 23, 2024
2 parents edb5f72 + 75a28fa commit 55ac03c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions client/modules/IDE/components/About.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function About(props) {
</p>
<p className="about__content-column-list">
<a
href="https://p5js.org/learn/"
href="https://p5js.org/tutorials/"
target="_blank"
rel="noopener noreferrer"
>
Expand Down Expand Up @@ -164,7 +164,7 @@ function About(props) {
</p>
<p className="about__content-column-list">
<a
href="https://p5js.org/download/support.html"
href="https://p5js.org/donate/"
target="_blank"
rel="noopener noreferrer"
>
Expand Down
2 changes: 1 addition & 1 deletion client/modules/Preview/previewIndex.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const App = () => {
function addCacheBustingToAssets(files) {
const timestamp = new Date().getTime();
return files.map((file) => {
if (file.url) {
if (file.url && !file.url.endsWith('obj') && !file.url.endsWith('stl')) {
return {
...file,
url: `${file.url}?v=${timestamp}`
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "p5.js-web-editor",
"version": "2.14.7",
"version": "2.14.8",
"description": "The web editor for p5.js.",
"scripts": {
"clean": "rimraf dist",
Expand Down

0 comments on commit 55ac03c

Please sign in to comment.