Skip to content

Commit

Permalink
Merge pull request #106 from ffd8/1.6.3
Browse files Browse the repository at this point in the history
bug fixes
  • Loading branch information
ffd8 authored Nov 29, 2024
2 parents cae75d9 + ed2c3d8 commit 1c2257b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# P5LIVE
v 1.6.2
v 1.6.3
cc [teddavis.org](http://teddavis.org) – 2019 - 2024
p5.js collaborative live-coding vj environment!

Expand Down
14 changes: 7 additions & 7 deletions includes/demos/P5L_demos.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions includes/templates/p5live_sketch.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
}
</style>
<script src="includes/js/loadjs.min.js"></script>
<script src="includes/utils/p5live-audio.js"></script>
<script src="includes/utils/p5live-midi.js"></script>
<script src="includes/utils/p5live-audio.js?2"></script>
<script src="includes/utils/p5live-midi.js?2"></script>

<script type="text/javascript">
var p5p = parent.document;
Expand Down
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -732,8 +732,8 @@ <h2>RESET</h2>
'use strict'

/* INIT */
let currentVersion = '1.6.2';
let currentRevision = 52;
let currentVersion = '1.6.3';
let currentRevision = 53;
let developBranch = false;

// resetP5(); // manual reset
Expand Down Expand Up @@ -6277,7 +6277,7 @@ <h2>RESET</h2>
// check loadScripts / libs / scripts;
let scriptsList = processLibs(codeNoComments);
for(let i=0; i < scriptsList.length; i++){
scriptsCol.push(scriptsList[i]);
scriptsCol.push(`${scriptsList[i]}?${Math.floor(Math.random()*9999)}`);
}

// old way ***
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "p5live",
"version": "1.6.2",
"version": "1.6.3",
"description": "p5.js collaborative live-coding vj environment!",
"main": "server.js",
"scripts": {
Expand Down

0 comments on commit 1c2257b

Please sign in to comment.