Skip to content

Commit

Permalink
Add feather client faq
Browse files Browse the repository at this point in the history
  • Loading branch information
JustRed23 committed Aug 29, 2024
1 parent 3400c34 commit 79b9461
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions src/data/faq/questions.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ const questionsAndAnswers = [
answer: "When choosing a version from our <a href='/download'>downloads page</a>, click 'Get it' and follow the provided instructions.",
safe: "When choosing a version from our downloads page, click 'Get it' and follow the provided instructions."
},
{
id: "how-to-install-on-feather",
question: "How do I install Ketting on Feather Client?",
answer: "You can follow our provided <a href='%FEATHER_INSTALL_URL%' target='_blank'>YouTube tutorial</a>.",
safe: "You can follow our provided YouTube tutorial. (%FEATHER_INSTALL_URL%)"
},
{
id: "found-a-bug",
question: "I found a bug, what do I do?",
Expand Down
1 change: 1 addition & 0 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ export const createApp = ViteSSG(
launcherUrl: "https://launcher.kettingpowered.org/",
imageUrl: "https://github.com/kettingpowered.png",
downloadUrl: "https://reposilite.c0d3m4513r.com/Ketting-Server-Releases/org/kettingpowered/server/forge/maven-metadata.xml",
featherInstallUrl: "https://youtu.be/Vt0MdkmhkXA",
softwareUrl: function(version) {
if (version.startsWith("1.20")) {
return this.githubUrl + "Ketting-1-20-x/";
Expand Down
3 changes: 2 additions & 1 deletion src/views/Faq.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default {
property: 'og:description',
content: this.ogDescription
},
/*Description for Search Enginges*/
/*Description for Search Engines*/
{
name: 'description',
content: this.ogDescription
Expand Down Expand Up @@ -70,6 +70,7 @@ export default {
replacePlaceholders(str) {
let newStr = str;
newStr = newStr.replace('%GITHUB_URL%', this.global.githubUrl);
newStr = newStr.replace('%FEATHER_INSTALL_URL%', this.global.featherInstallUrl);
return newStr;
},
getQuestionById(id) {
Expand Down

0 comments on commit 79b9461

Please sign in to comment.