Skip to content

Commit

Permalink
Merge pull request #101 from ffd8/dev-1.6.2
Browse files Browse the repository at this point in the history
small fix
  • Loading branch information
ffd8 authored Nov 20, 2024
2 parents dfbd3b5 + 372ff1f commit 1d215c9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 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.1
v 1.6.2
cc [teddavis.org](http://teddavis.org) – 2019 - 2024
p5.js collaborative live-coding vj environment!

Expand Down
4 changes: 2 additions & 2 deletions includes/demos/P5L_demos.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": "1.5.2",
"revision": 49,
"version": "1.6.2",
"revision": 51,
"structure": [
{
"name": "demos",
Expand Down
11 changes: 6 additions & 5 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.1';
let currentRevision = 51;
let currentVersion = '1.6.2';
let currentRevision = 52;
let developBranch = false;

// resetP5(); // manual reset
Expand Down Expand Up @@ -3777,15 +3777,16 @@ <h2>RESET</h2>
let forkName = versionCheck('new');
let tc = timeDate();
let cloneLocation = 0

useDir.contents.splice(cloneLocation, 0, {'type':'sketch', 'name':forkName, 'mod':tc});
useDir.toggle = 'expand';

settings.fileName = forkName;
editor.setValue(p5template, 1)
localStorage[settings.fileName] = editor.getValue();
localStorage[settings.fileName] = p5template;
updateSettings();
updateSketches();
editor.focus();
editor.session.off('change', cloneSketch);
loadSketch(settings.fileName)
}

function jsonIndex(key, name, obj){
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.1",
"version": "1.6.2",
"description": "p5.js collaborative live-coding vj environment!",
"main": "server.js",
"scripts": {
Expand Down

0 comments on commit 1d215c9

Please sign in to comment.