Skip to content

Commit 77048d6

Browse files
committed
docs: add small comparison question with mario kart world toolkit
1 parent 5e8ba8a commit 77048d6

2 files changed

Lines changed: 22 additions & 0 deletions

File tree

src/views/readme/faq-miscellaneous.tsx

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,30 @@
11
import { A } from "@solidjs/router";
22
import type { Component } from "solid-js";
3+
import { Mkwttb } from "../../domains/_core/components/mkwttb";
34
import { WORLD_RECORD_URL } from "../../domains/_core/constants/external-urls";
45

56
export const FaqMiscellaneous: Component = () => {
67
return (
78
<>
89
<h3>Miscellaneous</h3>
910

11+
<details>
12+
<summary>What is the difference with Mario Kart World Toolkit?</summary>
13+
<p>
14+
Mario Kart World Toolkit is a desktop application (Rust/Tauri) that needs to be installed on your computer. It
15+
uses machine learning for data extraction, making it more CPU-intensive. Unfortunately, the project is no
16+
longer maintained, functioning more as a prototype than a fully-fledged application. For instance, when you
17+
change track in the game, you have to change track in the application. Moreover, if you beat your record, you
18+
have to manually update the value in the application.
19+
</p>
20+
21+
<p>
22+
<Mkwttb /> is a web application that runs in your browser. It uses image comparison for data extraction, and
23+
it is less CPU intensive. It provides a lot more features, with one of its goals being "capture and forget".
24+
It automatically identifies tracks you are playing on and updates your records.
25+
</p>
26+
</details>
27+
1028
<details>
1129
<summary>What is CodeTabs?</summary>
1230
<p>

src/views/readme/readme.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ export const Readme: Component = () => {
2828
capture card and a browser. The extraction of the data is done using simple comparisons of images, and all the
2929
data is stored in your browser. You must have a capture card that captures video at least 720p.
3030
</p>
31+
<p>
32+
You start the capture, and everything is done automatically.{" "}
33+
<strong>No manual intervention is required.</strong>
34+
</p>
3135
<p>
3236
<Mkwttb /> provides additional features.
3337
</p>

0 commit comments

Comments
 (0)