Compare commits
4 Commits
baed9e901c
...
f54225698f
Author | SHA1 | Date | |
---|---|---|---|
f54225698f | |||
ac56ce3f48 | |||
1dd29bd13d | |||
532394f181 |
10
TODO
10
TODO
@ -1,10 +0,0 @@
|
|||||||
1) Criar app com create-react-app
|
|
||||||
2) Remover lixo next-js
|
|
||||||
3) Substituir roteamento por estados
|
|
||||||
4) Garantir carregamento de service worker: https://web.dev/service-workers-registration/
|
|
||||||
|
|
||||||
if ('serviceWorker' in navigator) {
|
|
||||||
window.addEventListener('load', function() {
|
|
||||||
navigator.serviceWorker.register('/service-worker.js');
|
|
||||||
});
|
|
||||||
}
|
|
@ -73,8 +73,12 @@ i {
|
|||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.link:visited {
|
||||||
|
color: purple;
|
||||||
|
}
|
||||||
|
|
||||||
.link:hover {
|
.link:hover {
|
||||||
color: lightblue;
|
color: darkblue;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Page */
|
/* Page */
|
||||||
|
@ -3,14 +3,14 @@ export function HomeView() {
|
|||||||
<div className="page-with-padding content-text scroll">
|
<div className="page-with-padding content-text scroll">
|
||||||
<h1 className="text-title margin-title">Flash Card App</h1>
|
<h1 className="text-title margin-title">Flash Card App</h1>
|
||||||
<p className="text-details margin-paragraph">
|
<p className="text-details margin-paragraph">
|
||||||
A handy tool for helping build vocabulary. Go to{" "}
|
A handy tool for vocabulary practice through repetition. Go to{" "}
|
||||||
<i>settings -> create card</i> to start adding words for practicing.
|
<i>settings -> create card</i> to start adding words for practicing.
|
||||||
Once you have a few go to practice and start from your daily words.
|
Once you have a few go to practice and start from your daily words.
|
||||||
</p>
|
</p>
|
||||||
<h2 className="text-title margin-title">Privacy</h2>
|
<h2 className="text-title margin-title">Privacy</h2>
|
||||||
<p className="text-details margin-paragraph">
|
<p className="text-details margin-paragraph">
|
||||||
HTTPS requests are made to Wiktionary during the card creation process.
|
The app requests data from Wiktionary when you create study cards. Their
|
||||||
Their privacy policy can be found{" "}
|
privacy policy can be found{" "}
|
||||||
<a
|
<a
|
||||||
className="link"
|
className="link"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
@ -19,21 +19,23 @@ export function HomeView() {
|
|||||||
>
|
>
|
||||||
on this link
|
on this link
|
||||||
</a>
|
</a>
|
||||||
.
|
. Apart from the initial page load, this should be the only time any
|
||||||
|
data transfer happens during the usage of the app.
|
||||||
</p>
|
</p>
|
||||||
<p className="text-details margin-paragraph">
|
<p className="text-details margin-paragraph">
|
||||||
The cards that you save are locally stored and never transmitted
|
Once you save a card, it is stored on your own device and never
|
||||||
anywhere else.
|
transmitted anywhere else.
|
||||||
</p>
|
</p>
|
||||||
<h2 className="text-title margin-title">Licenses</h2>
|
<h2 className="text-title margin-title">Licensing</h2>
|
||||||
<p className="text-details margin-paragraph">
|
<p className="text-details margin-paragraph">
|
||||||
Human-readable summary: You are free to use the app for any purposes.
|
Human-readable summary:{" "}
|
||||||
You are free to modify and redistribute the app{" "}
|
|
||||||
<strong>
|
<strong>
|
||||||
as long as you grant your users access to reused or modified
|
You are free to use the app for any purposes. You are free to modify
|
||||||
source-code, content and assets under the same terms listed below
|
and redistribute the app as long as you grant your users access to the
|
||||||
</strong>
|
source-code, content and assets you modify and redistribute under the
|
||||||
. As long as you follow those rules, you don't need to contact the
|
same terms listed below.{" "}
|
||||||
|
</strong>{" "}
|
||||||
|
As long as you follow those rules, you don't need to contact the
|
||||||
author(s) about it.
|
author(s) about it.
|
||||||
</p>
|
</p>
|
||||||
<p className="text-details margin-paragraph">
|
<p className="text-details margin-paragraph">
|
||||||
@ -64,7 +66,6 @@ export function HomeView() {
|
|||||||
</a>
|
</a>
|
||||||
.
|
.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p className="text-details margin-paragraph">
|
<p className="text-details margin-paragraph">
|
||||||
The rest of the application and its assets are licensed under the{" "}
|
The rest of the application and its assets are licensed under the{" "}
|
||||||
<a
|
<a
|
||||||
@ -77,6 +78,18 @@ export function HomeView() {
|
|||||||
</a>
|
</a>
|
||||||
.
|
.
|
||||||
</p>
|
</p>
|
||||||
|
<p className="text-details margin-paragraph">
|
||||||
|
The official source code repository for this application can be found at{" "}
|
||||||
|
<a
|
||||||
|
className="link"
|
||||||
|
target="_blank"
|
||||||
|
rel="noreferrer"
|
||||||
|
href="https://git.studycardtool.org/tcoh/app"
|
||||||
|
>
|
||||||
|
git.studycardtool.org/tcoh/app
|
||||||
|
</a>
|
||||||
|
.
|
||||||
|
</p>
|
||||||
<h2 className="text-title margin-title">Support the app</h2>
|
<h2 className="text-title margin-title">Support the app</h2>
|
||||||
<p className="text-details margin-paragraph">
|
<p className="text-details margin-paragraph">
|
||||||
This app would not exist if it was not for Wiktionary and the Wikimedia
|
This app would not exist if it was not for Wiktionary and the Wikimedia
|
||||||
@ -92,7 +105,19 @@ export function HomeView() {
|
|||||||
. This app or its author is in no way affiliated with the Wikimedia
|
. This app or its author is in no way affiliated with the Wikimedia
|
||||||
Foundation, it just makes use of its data.
|
Foundation, it just makes use of its data.
|
||||||
</p>
|
</p>
|
||||||
<p className="text-details margin-paragraph">TODO contact info</p>
|
<h2 className="text-title margin-title">Contributing</h2>
|
||||||
|
<p className="text-details margin-paragraph">
|
||||||
|
The main thing on the roadmap is improved language support for
|
||||||
|
vocabulary practice. The app still needs bugfixes, code and style
|
||||||
|
cleanup and potentially rethinking of some existing features.
|
||||||
|
Contributions introducing a need for smarter backend functionality than
|
||||||
|
a static file server are in principle unwelcome in this project.
|
||||||
|
</p>
|
||||||
|
<p className="text-details margin-paragraph">
|
||||||
|
There are a few pending tasks in server configuration and testing, but
|
||||||
|
once those are done local gitea registrations for contributors should
|
||||||
|
open and potentially federated accounts as well.
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user