From 7ec9c38b846cc5cbc401a1c77e5fc3fbd4a7daa9 Mon Sep 17 00:00:00 2001 From: Lordmau5 Date: Fri, 25 May 2018 02:29:25 +0200 Subject: [PATCH] Add Game Compatibility page --- src/App.vue | 1 + src/components/Build.Net_Core.vue | 2 +- src/components/Compatibility.vue | 120 ++++++++++++++++++++++++++++++ src/components/Home.vue | 2 +- src/router/index.js | 6 ++ 5 files changed, 129 insertions(+), 2 deletions(-) create mode 100644 src/components/Compatibility.vue diff --git a/src/App.vue b/src/App.vue index 840c676..824a30f 100644 --- a/src/App.vue +++ b/src/App.vue @@ -40,6 +40,7 @@ Wiki Build Contribute + Compatibility fab fa-githubGitHub fab fa-discordDiscord diff --git a/src/components/Build.Net_Core.vue b/src/components/Build.Net_Core.vue index 3ae2569..e9767a6 100644 --- a/src/components/Build.Net_Core.vue +++ b/src/components/Build.Net_Core.vue @@ -13,7 +13,7 @@

Building RyujiNX (Windows only for now):

- Support for OSX and Linux is limited and not really recommended for use as of late.
+ Support for OSX and Linux is limited and not really recommended for use as of late.
To get started; you will need the .NET Core 2.0 or greater runtime installed.

diff --git a/src/components/Compatibility.vue b/src/components/Compatibility.vue new file mode 100644 index 0000000..bcd831d --- /dev/null +++ b/src/components/Compatibility.vue @@ -0,0 +1,120 @@ + + + diff --git a/src/components/Home.vue b/src/components/Home.vue index e6a6d69..8e1edf4 100644 --- a/src/components/Home.vue +++ b/src/components/Home.vue @@ -41,7 +41,7 @@ Please consider reporting it via our Discord server.

- + fas fa-list Game compatibility list diff --git a/src/router/index.js b/src/router/index.js index 8efb51c..f58a57b 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -5,6 +5,7 @@ import News from '@/components/News'; import Contribute from '@/components/Contribute'; import Build from '@/components/Build'; import BuildNetCore from '@/components/Build.Net_Core'; +import Compatibility from '@/components/Compatibility'; Vue.use(Router); @@ -34,6 +35,11 @@ export default new Router({ path: '/Build/NetCore', name: 'BuildNetCore', component: BuildNetCore + }, + { + path: '/Compatibility', + name: 'Compatibility', + component: Compatibility } ] });