Skip to content

Commit 07d0a22

Browse files
2.24.0
1 parent c12916d commit 07d0a22

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "q5",
3-
"version": "2.23.14",
3+
"version": "2.24.0",
44
"description": "Beginner friendly graphics powered by WebGPU and optimized for interactive art!",
55
"author": "quinton-ashley",
66
"contributors": [

q5.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2417,7 +2417,7 @@ let q = await Q5.WebGPU();
24172417
createCanvas(200, 100);
24182418
24192419
q.draw = () => {
2420-
circle(randSym(100), 0, random(50));
2420+
circle(randSym(50), 0, random(50));
24212421
};
24222422
*/
24232423
function randSym(val: number): number;

q5.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* q5.js
3-
* @version 2.23
3+
* @version 2.24
44
* @author quinton-ashley, Tezumie, and LingDong-
55
* @license LGPL-3.0
66
* @class Q5
@@ -340,7 +340,7 @@ function createCanvas(w, h, opt) {
340340
}
341341
}
342342

343-
Q5.version = Q5.VERSION = '2.23';
343+
Q5.version = Q5.VERSION = '2.24';
344344

345345
if (typeof document == 'object') {
346346
document.addEventListener('DOMContentLoaded', () => {

q5.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/q5-core.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* q5.js
3-
* @version 2.23
3+
* @version 2.24
44
* @author quinton-ashley, Tezumie, and LingDong-
55
* @license LGPL-3.0
66
* @class Q5
@@ -340,7 +340,7 @@ function createCanvas(w, h, opt) {
340340
}
341341
}
342342

343-
Q5.version = Q5.VERSION = '2.23';
343+
Q5.version = Q5.VERSION = '2.24';
344344

345345
if (typeof document == 'object') {
346346
document.addEventListener('DOMContentLoaded', () => {

0 commit comments

Comments
 (0)