Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to site to reflect changes to hosted configs #87

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions src/components/Download.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,4 @@ export const ClosedSourceDevices = () => (
.filter((config) => config.category === 'closed')
.map(RenderDownloadBox)}
</Container>
);

export const LegacyDevices = () => (
<Container>
{boards['Community Devices']
.filter((config) => config.category === 'legacy')
.map(RenderDownloadBox)}
</Container>
);
);
50 changes: 0 additions & 50 deletions src/config/boards.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -381,19 +381,6 @@ const boards = {
</p>
),
},
{
name: 'Rana Tadpole',
configName: 'RanaTadpole',
pinout: null,
website: 'https://github.com/rana-sylvatica/rana-tadpole',
image: '/img/boards/RanaTadpole.jpg',
category: 'open',
desc: () => (
<p>
Pocket-sized digital controller from RanaLabs.
</p>
),
},
{
name: 'Reflex Encode v1.2',
configName: 'ReflexEncodeV1.2',
Expand Down Expand Up @@ -597,29 +584,6 @@ const boards = {
</p>
),
},
{
name: 'thnikk Fightboard V3',
configName: 'FightboardV3',
pinout: null,
website: 'https://docs.thnikk.moe/models/fightboard/v3.html',
image: '/img/boards/FightboardV3.jpg',
category: 'legacy',
desc: () => <p>Configuration for the Fightboard v3</p>,
},
{
name: 'thnikk Fightboard V3 (Mirrored)',
configName: 'FightboardV3Mirrored',
pinout: null,
website: 'https://docs.thnikk.moe/models/fightboard/v3.html',
image: '/img/boards/FightboardV3Mirrored.jpg',
category: 'legacy',
desc: () => (
<p>
Configuration for the Fightboard v3 mirrored with directional inputs
on the right hand and the action buttons on the left.
</p>
),
},
{
name: 'Zero Rhythm',
configName: 'ZeroRhythm',
Expand All @@ -634,20 +598,6 @@ const boards = {
</p>
),
},
{
name: 'ergoSHIFT Rev.2',
configName: 'ergoSHIFTRev2',
pinout: null,
website: 'https://github.com/mizma/ergoSHIFT/tree/main/hardware-rev2',
image: '/img/boards/ergoSHIFT.jpg',
category: 'open',
desc: () => (
<p>
The ergoSHIFT is a Low profile 11 button leverless arcade controller with Acrylic shell{' '}
by <a href="https://github.com/mizma">mizma</a>.
</p>
),
},
],
};

Expand Down
17 changes: 1 addition & 16 deletions src/pages/downloads.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import {
OfficialDevices,
OpenSourceDevices,
ClosedSourceDevices,
LegacyDevices,
} from "@site/src/components/Download.tsx";

# Downloads
Expand All @@ -31,18 +30,4 @@ import {

## Closed Source Community Devices

<ClosedSourceDevices />

## Legacy Devices

GP2040-CE builds for these devices have been deprecated due to one or more of the following reasons:

- The manufacturer already provides a custom build of GP2040-CE
- The device is no longer available for purchase
- The operation of the device running an updated GP2040-CE build cannot be verified by the development team

These builds remain available, however legacy devices are not supported by the GP2040-CE team.

Please ensure you have a backup of the original firmware and your settings before updating your device!

<LegacyDevices />
<ClosedSourceDevices />
Loading