Skip to content

Commit

Permalink
2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
quinton-ashley committed Jun 19, 2024
1 parent 8692fa4 commit 3b6f462
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions home/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -279,9 +279,9 @@ <h2 id="frame-your-art-🖼️">Frame your Art 🖼️</h2>
</md>
<md id="md10-5">
<h2 id="webgpu-🚀">WebGPU 🚀</h2>
<p>We're working on a next-gen version of q5 that uses <a
<p>We're working on next-gen rendering modules for q5 that use <a
href="https://developer.mozilla.org/en-US/docs/Web/API/WebGPU_API" target="_blank">WebGPU</a> for blazing
fast rendering. Stay tuned! 🏎️</p>
fast drawing. Stay tuned! 🏎️</p>
</md>
</div>
</div>
Expand Down Expand Up @@ -315,8 +315,8 @@ <h2 id="why-make-q5-⚖️">Why make q5? ⚖️</h2>
in donations</a>.</p>
<p>Despite taking exorbitant salaries, the foundation's executives are too <a
href="https://www.linkedin.com/in/edsaber/" target="_blank">busy working other full-time jobs</a> to focus on
p5. They think just because p5 is open source, volunteer contributors should do all the real work. Yet it still
takes months for staff to simply review and publish updates. 🕵️</p>
p5's development. They think just because p5 is open source, volunteer contributors should do all the real work.
Yet it still takes months for management to simply review and publish updates. 🕵️</p>
<p>When criticized, TPF staff play the victim, gaslight, silence dissent, and badmouth former contributors,
regardless of how much time and effort they've donated to TPF projects. This behavior is inexcusable. Its
driving away the people who made Processing and p5 great. 🚪</p>
Expand Down
4 changes: 2 additions & 2 deletions lang/en/home/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Make it "centered", "maxed", or "fullscreen" without clipping or changing the as
## WebGPU 🚀
We're working on a next-gen version of q5 that uses [WebGPU](https://developer.mozilla.org/en-US/docs/Web/API/WebGPU_API) for blazing fast rendering. Stay tuned! 🏎️
We're working on next-gen rendering modules for q5 that use [WebGPU](https://developer.mozilla.org/en-US/docs/Web/API/WebGPU_API) for blazing fast drawing. Stay tuned! 🏎️
# 11-0
Expand Down Expand Up @@ -142,7 +142,7 @@ If you'd like to work on q5.js, check out our [Contributor Code of Conduct](http

In October 2023, The Processing Foundation's co-founder, Ben Fry, resigned and publicly criticized management for [squandering millions of dollars in donations](https://x.com/ben_fry/status/1709400641456501020).

Despite taking exorbitant salaries, the foundation's executives are too [busy working other full-time jobs](https://www.linkedin.com/in/edsaber/) to focus on p5. They think just because p5 is open source, volunteer contributors should do all the real work. Yet it still takes months for staff to simply review and publish updates. 🕵️
Despite taking exorbitant salaries, the foundation's executives are too [busy working other full-time jobs](https://www.linkedin.com/in/edsaber/) to focus on p5's development. They think just because p5 is open source, volunteer contributors should do all the real work. Yet it still takes months for management to simply review and publish updates. 🕵️

When criticized, TPF staff play the victim, gaslight, silence dissent, and badmouth former contributors, regardless of how much time and effort they've donated to TPF projects. This behavior is inexcusable. Its driving away the people who made Processing and p5 great. 🚪

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": "q5",
"version": "2.0.3",
"version": "2.0.4",
"description": "The sequel to p5.js that's smaller and faster",
"author": "quinton-ashley",
"contributors": [
Expand Down
2 changes: 1 addition & 1 deletion q5.js
Original file line number Diff line number Diff line change
Expand Up @@ -2313,7 +2313,7 @@ Q5.modules.input = ($, p) => {
$.noCursor = () => {
$.canvas.style.cursor = 'none';
};
$.requestPointerLock = document.body.requestPointerLock;
$.requestPointerLock = document.body?.requestPointerLock;
$.exitPointerLock = document.exitPointerLock;

$._onkeydown = (e) => {
Expand Down
2 changes: 1 addition & 1 deletion q5.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/q5-input.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Q5.modules.input = ($, p) => {
$.noCursor = () => {
$.canvas.style.cursor = 'none';
};
$.requestPointerLock = document.body.requestPointerLock;
$.requestPointerLock = document.body?.requestPointerLock;
$.exitPointerLock = document.exitPointerLock;

$._onkeydown = (e) => {
Expand Down

0 comments on commit 3b6f462

Please sign in to comment.