Skip to content

Commit

Permalink
Update patreon list
Browse files Browse the repository at this point in the history
  • Loading branch information
wizzomafizzo committed Jan 2, 2025
1 parent ee85337 commit d18ab0d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
16 changes: 14 additions & 2 deletions src/routes/settings.about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import { createFileRoute, useNavigate } from "@tanstack/react-router";
import { useSwipeable } from "react-swipeable";
import { PageFrame } from "../components/PageFrame";
import { useTranslation } from "react-i18next";
import { Browser } from "@capacitor/browser";
import { Button } from "../components/wui/Button.tsx";

export const Route = createFileRoute("/settings/about")({
component: About
Expand All @@ -23,7 +25,7 @@ function About() {
>
<div className="flex flex-col gap-8">
<div className="text-center">
<h2 className="text-2xl font-bold">Zaparoo</h2>
<h2 className="text-2xl font-bold">Zaparoo App</h2>
<p>
{t("settings.about.version", {
version: import.meta.env.VITE_VERSION
Expand Down Expand Up @@ -75,8 +77,18 @@ function About() {
Alexander Facchini, Lu's Retro Source, Alexis Conrad, Patrick
McCarron, Oyster_Source, Clinton Cronin, Tuxosaurus, EntirelyTom,
the_remora, Retrosoft Studios, Casey McGinty, Biddle, Chris
Platts, RobF228
Platts, RobF228, Gentlemen's Pixel Club
</div>

<Button
label={t("settings.about.joinPatreon")}
variant="outline"
onClick={() =>
Browser.open({
url: "https://patreon.com/wizzo"
})
}
/>
</div>

<div className="flex flex-col gap-2">
Expand Down
3 changes: 2 additions & 1 deletion src/translations/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@
"createdBy": "Created by",
"translationsBy": "Translations by",
"contributors": "Zaparoo contributors",
"wizzodev": "Wizzo.dev Patrons"
"wizzodev": "Wizzo.dev Patrons",
"joinPatreon": "Join the Patreon"
},
"advanced": {
"title": "Advanced Settings",
Expand Down

0 comments on commit d18ab0d

Please sign in to comment.