diff --git a/src/assets/GitHub-Mark-120px-plus.png b/src/assets/GitHub-Mark-120px-plus.png new file mode 100644 index 0000000..ea6ff54 Binary files /dev/null and b/src/assets/GitHub-Mark-120px-plus.png differ diff --git a/src/assets/GitHub-Mark-Light-120px-plus.png b/src/assets/GitHub-Mark-Light-120px-plus.png new file mode 100644 index 0000000..192846a Binary files /dev/null and b/src/assets/GitHub-Mark-Light-120px-plus.png differ diff --git a/src/assets/reddit_logo_horizontal_on_orangered.png b/src/assets/reddit_logo_horizontal_on_orangered.png new file mode 100644 index 0000000..7196dc2 Binary files /dev/null and b/src/assets/reddit_logo_horizontal_on_orangered.png differ diff --git a/src/components/dialogs/AboutApp.vue b/src/components/dialogs/AboutApp.vue index c4fdaf3..56305ad 100644 --- a/src/components/dialogs/AboutApp.vue +++ b/src/components/dialogs/AboutApp.vue @@ -21,17 +21,40 @@ -
-
- Join our Discord! -
-
- -
-
+
+
Support Fantasia Archive on Patreon!
+ +
+
+ +
+
+ Discord +
+
+ +
+
+
+ +
+
+ Website +
+
+ +
+
+ GitHub +
+
+ +
+
+ @@ -73,25 +96,47 @@ export default class AboutApp extends DialogBase { appVersion = remote.app.getVersion() /** - * Opens Discord link via browser + * Open Discord invite link in thw default browser window */ openDiscordInviteLink () { shell.openExternal("https://discord.gg/JQDBvsN9Te").catch(e => console.log(e)) } /** - * Opens Patreon link via browser + * Open Patreon link in thw default browser window */ openPatreonLink () { shell.openExternal("https://www.patreon.com/elvanos").catch(e => console.log(e)) } + + /** + * Open Reddit link in thw default browser window + */ + openRedditLink () { + shell.openExternal("https://www.reddit.com/r/FantasiaArchive/").catch(e => console.log(e)) + } + + /** + * Open Website link in thw default browser window + */ + openWebsiteLink () { + shell.openExternal("http://fantasiaarchive.com/").catch(e => console.log(e)) + } + + /** + * Open GitHub link in thw default browser window + */ + openGithubLink () { + shell.openExternal("https://github.com/Elvanos/fantasia-archive").catch(e => console.log(e)) + } }