Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFront <27463495+Frontesque@users.noreply.github.com>2022-01-11 02:21:43 +0300
committerFront <27463495+Frontesque@users.noreply.github.com>2022-01-11 02:21:43 +0300
commit1a4631a11e10a6b773bfb164c80d8e3bf9e9db54 (patch)
tree1716697fac11bdd547377a17283623ad8c9821aa
parent128c3a56548938a3615ef5e60657ac15ba6e7865 (diff)
finish debug
-rw-r--r--Website/pages/debug.vue20
1 files changed, 5 insertions, 15 deletions
diff --git a/Website/pages/debug.vue b/Website/pages/debug.vue
index 1f4d327..8a3b48f 100644
--- a/Website/pages/debug.vue
+++ b/Website/pages/debug.vue
@@ -58,9 +58,8 @@
<v-divider style="transform: translateY(1.5em)" />
</div>
<v-alert dense outlined v-text="notices.extension.text" :type="notices.extension.type" />
- <span><b>RUNNING-</b> {{ userInformation.extension.running ? "Yes" : "Failed to connect"}}</span><br>
- <span><b>VERSION-</b> {{ userInformation.extension.version || "Failed to connect"}} </span><br>
- <span><b>SERVER CONNECTION-</b>{{ userInformation.extension.serverConnection ? "Working" : "Failed to connect" }}</span><br>
+ <span><b>LATEST EXTENSION VERSION-</b> {{ userInformation.extension.latestExtensionVersion || "Failed to lookup data" }}</span><br>
+ <span><b>SERVER CONNECTION-</b> {{ userInformation.extension.serverConnection ? "Working" : "Failed to connect" }}</span><br>
</v-stepper-content>
</v-stepper>
@@ -103,8 +102,6 @@
type: this.$ua._parsed.category
},
extension: {
- running: null,
- version: null,
serverConnection: null,
latestExtensionVersion: null,
},
@@ -129,9 +126,7 @@
},
mounted() {
- const vm = this;
-
- //--- Wait ---//
+ //--- Init Stuff ---//
setTimeout(() => {
this.$axios.$get('https://raw.githubusercontent.com/Anarios/return-youtube-dislike/main/Extensions/combined/manifest-chrome.json')
@@ -174,13 +169,8 @@
//--- Parse Extension Data ---//
- this.notices.extension.text = `Everything is running normally!`;
- this.notices.extension.type = "success";
-
- if (this.userInformation.extension.running != true) {
- this.notices.extension.text = `The extension doesn't appear to be running!`;
- this.notices.extension.type = "error";
- }
+ this.notices.extension.text = `We are unable to automatically check that your extension is up to date. Please check that the number below matches your extension version.`;
+ this.notices.extension.type = "warning";
if (this.userInformation.extension.serverConnection != true) {
this.notices.extension.text = `Failed to connect to the server!`;