Skip to content

Commit e66a931

Browse files
Merge branch 'main' into main
2 parents 6a83470 + d1cae09 commit e66a931

File tree

165 files changed

+3378
-454
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

165 files changed

+3378
-454
lines changed

public/reference/data.json

Lines changed: 554 additions & 209 deletions
Large diffs are not rendered by default.

public/search-indices/en.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

public/search-indices/es.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

public/search-indices/hi.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

public/search-indices/ko.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

public/search-indices/zh-Hans.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/components/GridItem/Tutorial.astro

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
import Image from "@components/Image/index.astro";
33
import type { CollectionEntry } from "astro:content";
4+
import { removeLocalePrefix } from "@i18n/utils";
45
56
interface Props {
67
item: CollectionEntry<"tutorials">;
@@ -10,7 +11,7 @@ interface Props {
1011
const { item, lazyLoad } = Astro.props;
1112
---
1213

13-
<a href={`/tutorials/${item.slug}/`} class="group hover:no-underline">
14+
<a href={`/tutorials/${removeLocalePrefix(item.slug).slice(1)}/`} class="group hover:no-underline">
1415
{
1516
item.data.featuredImageAlt && item.data.featuredImage && (
1617
<Image

src/content/contributor-docs/en/how-to-add-friendly-error-messages.mdx

Lines changed: 1 addition & 1 deletion

src/content/contributor-docs/en/webgl_contribution_guide.mdx

Lines changed: 1 addition & 1 deletion
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: p5.colorGenerator
2+
category: color
3+
description: p5.colorGenerator generates harmonious color schemes by starting from a given base color or selecting a random color as a starting point.
4+
author:
5+
- name: Alex Codes Art
6+
url: https://alexcodesart.com
7+
sourceUrl: https://github.com/alexandru-postolache/p5.colorGenerator
8+
websiteUrl: https://alexandru-postolache.github.io/p5.colorGenerator/demo
9+
featuredImage: "../images/p5.colorGenerator.png"
10+
featuredImageAlt: Waves coloured using different tints of yellow

0 commit comments

Comments
 (0)