-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
140 lines (139 loc) · 5.4 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1"
/>
<title>NMS Wiki Page Creator - About</title>
<script
src="./src/pages/about"
type="module"
></script>
</head>
<body>
<div class="container">
<nav>
<a
href="./"
title="Main page"
>← Return to main page</a
>
</nav>
<h1 class="title is-3">About this Web App</h1>
<main class="content">
<div class="article-grid">
<article class="section">
<h2 class="title is-5">Why does this app exist?</h2>
<p>
A lot of people say they find it hard to edit the wiki. This is not a new insight, others have realised it
many years ago, for example seamonkey420, who wrote a wiki page creator as a batch script in 2017 to help
with that and make the wiki more accessible.
</p>
<p>
In order to make it cross platform and more accessible, Lenni took the opportunity to learn web
development and chose this as his first project.
</p>
</article>
<article class="section">
<h2 class="title is-5">Who made and maintains this?</h2>
<div class="profile-wrapper">
<picture>
<source
srcset="./assets/images/webp/misc/lenni.webp"
type="image/webp"
/>
<img
src="./assets/images/jpg/misc/lenni.jpg"
alt="Lenni's profile picture"
/>
</picture>
<p>
The page creator was made by Lenni. Who makes sure the data is correct after each NMS update, and also
fix any bugs that you report. Later, it was expanded by Muhaddil.
</p>
<p>
Lenni is also the director of
<a
href="Eisvana"
data-wiki
>Eisvana</a
>
and a wiki admin.
</p>
</div>
<p>You can contact both of us either on Discord or on Reddit:</p>
<ul>
<li>Discord: lenni009</li>
<li>Reddit: <a href="https://www.reddit.com/user/Lenni009">u/Lenni009</a></li>
</ul>
<ul>
<li>Discord: muhaddil</li>
<li>Reddit: <a href="https://www.reddit.com/user/MuhaddilESP">u/MuhaddilESP</a></li>
</ul>
</article>
<article class="section">
<h2 class="title is-5">How can I contribute?</h2>
<p>First of all, thanks for wanting to help!</p>
<p>
There are multiple ways to contribute. Either you directly add to the codebase, or you hunt bugs and
report them. But even just using the page creator and creating pages with it gives me feedback about
potential pain points when I review the created pages.
</p>
<p>
To contribute, you need to
<a href="https://github.com/Lenni009/NMSWikiPageCreator/fork">fork the repo</a>. You can then edit the
code and open a pull request back to the main repository when you're done.
</p>
<p>
If you come across a bug and want to report it, use either the
<a href="https://forms.gle/LRhzWjMRkXoKd9CcA">feedback form</a>, text me on Reddit or Discord, or submit a
<a href="https://github.com/Lenni009/NMSWikiPageCreator/fork/issues/new">GitHub issue</a>.
</p>
</article>
<article class="section">
<h2 class="title is-5">Can I make my own version?</h2>
<p>Yes, absolutely!</p>
<p>
The app is licensed under the GPLv3 license, meaning you can make your own version, as long as it stays
open source and also has the GPLv3 license.
</p>
</article>
<article class="section">
<h2 class="title is-5">Do you collect data?</h2>
<p>
No, the app collects no data. Nothing is sent over the internet, and the only data that is saved to your
local drive is your currently selected theme and your personal default parameters if you have set any.
Everything you do here stays on your local computer.
</p>
</article>
<article class="section">
<h2 class="title is-5">What are the plans for the future?</h2>
<p>
We are going to translate the app into other languages so that they can be used in the Spanish or German
wiki. Additionally, we will implement improvements to the UI to make it easier for the user to use and
understand the app.
</p>
</article>
</div>
<div class="linklist">
<a
href="https://github.com/Lenni009/NMSWikiPageCreator"
class="button is-link"
>GitHub Repo</a
>
<a
href="https://lenni009.github.io/"
class="button is-link"
>My other web apps</a
>
</div>
</main>
</div>
<footer
id="footer"
class="footer"
></footer>
</body>
</html>