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

Minor text improvements #205

Merged
merged 2 commits into from
Jan 16, 2024
Merged
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ To run the development server locally, use `npm run dev`. Then open up [http://

To build it as a static website (as we do in production), use `npm run build`.

## Configure github tokens
## Configure GitHub tokens

To get the github parts working (Releases & Contribution graph), you'll need to create and assign a github personal access token.
To get the GitHub parts working (Releases & Contribution graph), you'll need to create and assign a GitHub personal access token.

For instructions on how to create a PAT, see [Github's documentation](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens#creating-a-fine-grained-personal-access-token).
For instructions on how to create a PAT, see [GitHub's documentation](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens#creating-a-fine-grained-personal-access-token).

The PAT only needs **read only access** to `ruffle-rs/ruffle` (contents and metadata), or to be lazy, pick "Public Repositories (read-only)".

Expand Down
2 changes: 1 addition & 1 deletion src/app/downloads/github.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export async function getLatestReleases(): Promise<GithubRelease[]> {
}
return result;
} catch (error) {
console.warn("Couldn't get github releases", error);
console.warn("Couldn't get GitHub releases", error);
return [];
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/downloads/nightlies.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export function NightlyList({ nightlies }: { nightlies: GithubRelease[] }) {
className={classes.moreNightlies}
target="_blank"
>
Github
GitHub
</Link>
.
</Text>
Expand Down
2 changes: 1 addition & 1 deletion src/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const allSocials = [
{
type: IconBrandGithub,
url: "https://github.com/ruffle-rs",
title: "Github",
title: "GitHub",
},
{
type: IconBrandTwitter,
Expand Down
4 changes: 2 additions & 2 deletions src/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import Link from "next/link";
import { usePathname } from "next/navigation";

const links = [
{ link: "/", label: "What is Ruffle" },
{ link: "/", label: "About Ruffle" },
{ link: "/downloads", label: "Downloads" },
{ link: "/compatibility", label: "Compatibility" },
{ link: "/contribute", label: "Get Involved" },
Expand All @@ -17,7 +17,7 @@ const links = [
{ link: "https://discord.gg/ruffle", label: "Discord", target: "_blank" },
{
link: "https://github.com/ruffle-rs/ruffle/",
label: "Github",
label: "GitHub",
target: "_blank",
},
];
Expand Down