text edits
Some checks failed
Release to Staging / build_and_release (push) Failing after 18s

This commit is contained in:
freakoverse 2024-08-18 18:38:36 +00:00
parent 2222c78742
commit 3440cc0fb6

View File

@ -10,44 +10,68 @@ export type FAQItem = {
const FAQ_ITEMS: FAQItem[] = [ const FAQ_ITEMS: FAQItem[] = [
{ {
question: "You don't host mods files?", question: "You don't host mod files?",
answer: "Nope. And that's for the better." answer: "Nope. And that's for the better."
}, },
{ {
question: 'How do you assure security on the files?', question: 'How do you assure security of game mod files that someone downloads?',
answer: answer:
"We don't, but you, as the user, do. You know how sometimes you go to some forums or social sites and someone shares a download link, you'd see someone asking 'is this link safe?' and people would reply with yes/no, etc. People will be doing that same process here, with a bit of help by having a simple reaction system for each link so you'd get a quicker idea on the safety of these links that's being provided by mod creators." "We don't, but you, as the user, do. You know how sometimes you go to some forums or
social sites and someone shares a download link, you'd see someone asking 'is this
link safe?' and people would reply with yes/no, etc. People will be doing that same process
here, with a bit of help by having a simple reaction system for each link so you'd get a quicker
idea on the safety of these links that's being provided by mod creators. Also, mod creators
should include a scan link to help with this process."
}, },
{ {
question: "Why are you quoting 'account'?", question: "Why are you quoting 'account'?",
answer: answer:
"Because technically you aren't creating an 'account', you're generating/creating/obtaining an address/key-pair. Check the next question/answer to get more details." "Because technically you aren't creating an 'account', you're generating/creating/obtaining
an address/key-pair. Check the next question/answer to get more details."
}, },
{ {
question: "You 'can't' remove mods or ban accounts? How does that work?", question: "You 'can't' remove mods or ban accounts? How does that work?",
answer: answer:
"I'll try my best to simplify the technicalities of this answer... Because of the nature of Nostr, the 'account' creation process involves the generation/obtaining two cryptographic key pairs, one private (think of that as your password that you cannot change), and one public (think of that as your username that you cannot change). These keypairs are coming from the Nostr protocol itself, and nobody controls Nostr, it's just there. Considering that, we can't 'ban' anyone directly. We might have a mute-list with public address that won't show their posts/submissions on this site, but they are still there and accessible by anyone. It's the same with someone's posts, we can't touch those as well. Gist: If someone put a gun to your / the team's head, will you censor or ban anyone? No, because we can't." "I'll try my best to simplify the technicalities of this answer. Because of the nature of Nostr,
the 'account' creation process involves the generation of two cryptographic key pairs, one
private (think of that as your password that you cannot change), and one public (think of that as
your username that you cannot change). These keypairs are coming from the Nostr protocol itself,
and nobody controls Nostr, it's just there. Considering that, we can't 'ban' anyone directly.
We might have a mute-list with a public address that won't show their posts/submissions on this
site, but they are still there and accessible by anyone. It's the same with someone's posts,
we can't touch those as well. Gist: If someone put a gun to our heads, will we be able to
censor or ban anyone? No, because we can't."
}, },
{ {
question: question:
"You can't do anything about any mod or person? Nothing at all? What about the illegal stuff?", "You can't do anything about any mod or person? Nothing at all? What about the illegal stuff?",
answer: answer:
"Directly removing the content can't be done, and directly 'banning' someone also can't be done. At most, pages/posts and people can be filtered out / hidden from the website, but people can still see the content with a quick copy/paste." "Directly removing the content can't be done, and directly 'banning' someone also can't be done.
At most, pages/posts and people can be filtered out / hidden from the website, but people can
still see the content with a quick copy/paste."
}, },
{ {
question: question:
'Why did you have to add Bitcoin? Why not traditional payment methods like Visa, PayPal, etc?', 'Why did you have to add Bitcoin? Why not traditional payment methods like Visa, PayPal, etc?',
answer: answer:
"For various reasons. With traditional payment methods, not everyone has access to them, they can pressure/threaten us or mod creators or even gamers to censor or ban or not use this site by holding our funds or take them away, they can prevent you from tipping on this site or specific mod creators, and there's no privacy, among other reasons. With Bitcoin, anyone has access to it, nobody controls it so you can't be threatened with/by it, you can actually own it so you control it, and with it you're Pseudonymous." "For various reasons. With traditional payment methods, not everyone has access to them, they
can pressure/threaten us or mod creators, or even gamers, to censor or ban, or not use this site
by holding our funds or steal them. They can prevent you from tipping on this site or
specific mod creators, and there's no privacy. These are just a few reasons why we aren't using
traditional payment methods. With Bitcoin, anyone has access to it, nobody controls it so you
can't be threatened with/by it, where you can actually own it so and properly control it,
and with it you're Pseudonymousity."
}, },
{ {
question: 'Is this an open-source project?', question: 'Is this an open-source project?',
answer: "Yes. Here's the repo." answer: "Yes. Here's one source of the repo."
}, },
{ {
question: "Who's developing / maintaining DEG Mods?", question: "Who's developing / maintaining DEG Mods?",
answer: answer:
'Considering this is an open-source project, anyone can contribute to its development and maintenance. With that said, the initial idea-tor, designer, and frontend developer is Freakoverse, the initial backend developer and Nostr implementor is NAME.' 'Considering this is an open-source project, anyone can contribute to its development and maintenance.
With that said, the initial idea-tor, designer, and frontend developer is Freakoverse, the co-developer
is Nostr Dev.'
}, },
{ {
question: "Who's that character above with the orange hair?", question: "Who's that character above with the orange hair?",
@ -56,7 +80,8 @@ const FAQ_ITEMS: FAQItem[] = [
{ {
question: "Who's that character above with the purple hair?", question: "Who's that character above with the purple hair?",
answer: answer:
"That's Moda-chan. DEG Mods' mascot. She's a master game mod creator! (Yes, she was AI generated, as such her design is temporary and will be replaced with a design created by an artist (or artists) when that time comes.)" "That's Moda-chan. DEG Mods' mascot. She's a master game mod creator! (Yes, she was AI generated, as such
her design is temporary and will be replaced with a design created by an artist (or artists) when that time comes.)"
} }
] ]