Skip to content

Commit fa0c552

Browse files
authored
Merge branch 'develop' into editable-input-desc
2 parents ca34c21 + 83786d9 commit fa0c552

5 files changed

Lines changed: 24 additions & 5 deletions

File tree

SECURITY.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Security Policy
2+
3+
## Reporting a Vulnerability
4+
5+
Please report security vulnerabilities by emailing: responsible.disclosure@processingfoundation.org
6+
7+
## What to Expect
8+
- We will acknowledge your email within 72 hours
9+
- We will provide regular updates about our progress
10+
- Once the issue is confirmed and fixed, we may ask you to verify the solution
11+
12+
## Disclosure Policy
13+
- Please do not disclose the vulnerability publicly until we have had a chance to address it
14+
- We do not offer bounties as we are a non-profit organization
15+
- We appreciate your efforts to responsibly disclose your findings
16+
17+
## Scope
18+
19+
You can use the above email to report vulnerabilities in p5.js and related repositories managed by the processing org, including the reference website.

client/modules/IDE/components/FileNode.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ const FileNode = ({
375375
</div>
376376
</div>
377377
)}
378-
{children && (
378+
{children && children.length > 0 && (
379379
<ul className="file-item__children">
380380
{children.map((childId) => (
381381
<li key={childId}>

client/styles/components/_toolbar.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156
}
157157

158158
.toolbar__project-owner {
159-
margin: 0;
159+
margin: 0 #{math.div(5, $base-font-size)}rem;
160160
@include themify() {
161161
color: getThemifyVariable('secondary-text-color');
162162
}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "p5.js-web-editor",
3-
"version": "2.20.7",
3+
"version": "2.20.8",
44
"description": "The web editor for p5.js.",
55
"scripts": {
66
"clean": "rimraf dist",

0 commit comments

Comments
 (0)