Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
BoringBoredom committed Feb 24, 2024
1 parent 62d0c86 commit 8f6f933
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 24 deletions.
34 changes: 17 additions & 17 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions presentmon/updatePresentMon.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { readFileSync, writeFileSync } from "node:fs";
import { readFileSync, writeFileSync, mkdirSync } from "node:fs";
import { execSync } from "node:child_process";

async function main() {
Expand Down Expand Up @@ -31,7 +31,7 @@ async function main() {
`New PresentMon version found: ${localVersion} -> ${remoteVersion}`
);

execSync("mkdir -p ./temp/captures");
mkdirSync("./temp/captures", { recursive: true });
execSync(
`wget ${asset.browser_download_url} -O ./temp/presentmon.exe`
);
Expand Down
2 changes: 1 addition & 1 deletion src/components/ChartTypes/ChartTypes.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
font-weight: 900;
}
.width {
width: 15rem !important;
width: 15rem;
}
2 changes: 1 addition & 1 deletion src/components/Colors/Colors.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
font-weight: 900;
}
.width {
width: 9rem !important;
width: 9rem;
}
2 changes: 1 addition & 1 deletion src/components/Misc/Misc.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
font-weight: 900;
}
.width {
width: 15rem !important;
width: 15rem;
}
.centerText {
text-align: center;
Expand Down
3 changes: 3 additions & 0 deletions src/components/ReadMe/ReadMe.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@
.cursor {
cursor: pointer;
}
.width {
width: 30%;
}
9 changes: 7 additions & 2 deletions src/components/ReadMe/ReadMe.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,20 @@ import { IconDownload } from "@tabler/icons-react";

export default function ReadMe() {
return (
<Stack>
<Stack className={s.width}>
<Text size="xl" className={s.title}>
Read Me
</Text>
<Divider />
<Text>
Press the Upload icon in the upper-right corner to upload benchmarks
Press the Upload button in the upper-right corner to upload benchmarks
(max. 14).
</Text>
<Text>
After you upload files, you can export a screenshot of the whole page
(including off-screen) to your clipboard or save it as a PNG with the
buttons below the Upload one.
</Text>
<Text>
Supported formats:
<br />- CSV (
Expand Down

0 comments on commit 8f6f933

Please sign in to comment.