Skip to content

Commit 6cf1d35

Browse files
committed
Merge branch 'release-2.16.7' into release
2 parents ac38225 + 6ba4a5d commit 6cf1d35

File tree

5 files changed

+21
-6
lines changed

5 files changed

+21
-6
lines changed

client/modules/About/pages/About.jsx

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,10 +130,22 @@ const About = () => {
130130
<Link to="/code-of-conduct">{t('About.CodeOfConduct')}</Link>
131131
</div>
132132
<p>
133-
{t('About.WebEditor')}: <span>v{packageData?.version}</span>
133+
<a
134+
href="https://github.com/processing/p5.js-web-editor/releases"
135+
target="_blank"
136+
rel="noreferrer"
137+
>
138+
{t('About.WebEditor')}: <span>v{packageData?.version}</span>
139+
</a>
134140
</p>
135141
<p>
136-
p5.js: <span>v{p5version}</span>
142+
<a
143+
href="https://github.com/processing/p5.js/releases"
144+
target="_blank"
145+
rel="noreferrer"
146+
>
147+
p5.js: <span>v{p5version}</span>
148+
</a>
137149
</p>
138150
</Footer>
139151
</AboutPageContent>

client/modules/Legal/components/PolicyContainer.jsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,15 @@ const PolicyContainerMain = styled.main`
1111
margin: 0 auto;
1212
padding: ${remSize(10)};
1313
line-height: 1.5em;
14+
word-break: break-word;
15+
overflow-wrap: anywhere;
1416
& p {
1517
margin-bottom: ${remSize(10)};
1618
}
1719
font-size: ${remSize(16)};
1820
& h1 {
1921
font-size: 2em;
22+
line-height: 1.2em;
2023
}
2124
& h2 {
2225
font-size: 1.5em;

client/modules/User/components/CookieConsent.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ function CookieConsent({ hide }) {
159159
}
160160
}, [cookieConsent]);
161161

162-
if (hide) return null;
162+
if (hide || cookieConsent !== 'none') return null;
163163

164164
return (
165165
<Transition in={inProp} timeout={500}>

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.16.6",
3+
"version": "2.16.7",
44
"description": "The web editor for p5.js.",
55
"scripts": {
66
"clean": "rimraf dist",

0 commit comments

Comments
 (0)