diff --git a/package.json b/package.json index 549d782..4b333c2 100644 --- a/package.json +++ b/package.json @@ -12,15 +12,15 @@ "dependencies": { "@babel/polyfill": "^7.8.7", "@gridsome/plugin-google-analytics": "^0.1.0", - "core-js": "^3.6.4", - "gridsome": "^0.7.13", - "vuetify": "^2.2.18" + "core-js": "^3.6.5", + "gridsome": "^0.7.17", + "vuetify": "^2.3.0" }, "devDependencies": { "@babel/cli": "^7.8.4", "@babel/core": "^7.9.0", "@babel/preset-env": "^7.9.0", - "@gridsome/cli": "^0.3.1", + "@gridsome/cli": "^0.3.3", "@gridsome/plugin-sitemap": "^0.2.3", "babel-preset-minify": "^0.5.1", "deepmerge": "^4.2.2", diff --git a/src/layouts/Default.vue b/src/layouts/Default.vue index fb06dad..e7530ee 100644 --- a/src/layouts/Default.vue +++ b/src/layouts/Default.vue @@ -60,9 +60,9 @@ - + - + diff --git a/src/main.js b/src/main.js index a25b910..7986798 100644 --- a/src/main.js +++ b/src/main.js @@ -30,12 +30,12 @@ export default function (Vue, { appOptions, head }) { theme: { themes: { light: { - ryu_blue: '#00C4E1', - ryu_orange: '#FF5E5B', + ryu_blue: '#02C5E5', + ryu_orange: '#FF5F55', }, dark: { - ryu_blue: '#00C4E1', - ryu_orange: '#FF5E5B', + ryu_blue: '#02C5E5', + ryu_orange: '#FF5F55', } } }, diff --git a/src/pages/Build.vue b/src/pages/Build.vue index c63465f..0014d16 100644 --- a/src/pages/Build.vue +++ b/src/pages/Build.vue @@ -42,13 +42,6 @@ The build directory is "root/bin/release/etc/etc."

- -

Step four:

-

- In order to run a game or homebrew; simply drag the file onto the Executable. The app will launch, and the homebrew/game will begin emulation. - Do keep in mind, that emulation is finicky, and will most likely crash at some point. -

-
diff --git a/src/pages/Download.vue b/src/pages/Download.vue index 6c4489c..ae2ed22 100644 --- a/src/pages/Download.vue +++ b/src/pages/Download.vue @@ -8,17 +8,28 @@

Building Ryujinx and latest downloads

- Shell - + + - -

Building methods

- - fas fa-code.NET Core - -
- -

Automatically compiled builds

+ +
+ Automatically compiled builds +
+

+ + + +

-
- - - - - -

- Profiled builds -
- (If you're not a developer, these builds aren't for you.) +

+ + Changelog +

- -
-
- - - - - -
-
- I know what I'm doing -
-
-
+ + +

Building methods

+ + fas fa-code.NET Core + +
+
+
@@ -137,7 +99,6 @@ export default { data() { return { downloadURL: "", - downloadURL_profiled: "", isLoading: true, version: "Loading ...", showProfiledBuilds: false, @@ -157,10 +118,8 @@ export default { this.version = json.build.version; const jobId = json.build.jobs[0].jobId; - const jobIdProfiled = json.build.jobs[1].jobId; this.downloadURL = `https://ci.appveyor.com/api/buildjobs/${jobId}/artifacts/ryujinx-${this.version}`; - this.downloadURL_profiled = `https://ci.appveyor.com/api/buildjobs/${jobIdProfiled}/artifacts/ryujinx-profiled-${this.version}`; this.isLoading = false; },