Bladeren bron

cherry pick #541

clean up unnecessary commented code

Show changelog only on installation

fixes #534

add changelog button in popup
sy-b 3 jaren geleden
bovenliggende
commit
a99410ae13
3 gewijzigde bestanden met toevoegingen van 55 en 52 verwijderingen
  1. 47 47
      Extensions/combined/popup.html
  2. 2 0
      Extensions/combined/popup.js
  3. 6 5
      Extensions/combined/ryd.background.js

+ 47 - 47
Extensions/combined/popup.html

@@ -12,54 +12,54 @@
   />
 </head>
 <body>
-<center>
-  <svg width="48" viewBox="0 0 24 24">
-    <path
-      d="M14.9 3H6c-.9 0-1.6.5-1.9 1.2l-3 7c-.1.3-.1.5-.1.7v2c0 1.1.9 2 2 2h6.3l-.9 4.5c-.1.5 0 1 .4 1.4l1.1 1.1 6.5-6.6c.4-.4.6-.9.6-1.4V5c-.1-1.1-1-2-2.1-2zm7.4 12.8h-2.9c-.4 0-.7-.3-.7-.7V3.9c0-.4.3-.7.7-.7h2.9c.4 0 .7.3.7.7V15c0 .4-.3.8-.7.8z"
-      fill="red"
+  <center>
+    <svg width="48" viewBox="0 0 24 24">
+      <path
+        d="M14.9 3H6c-.9 0-1.6.5-1.9 1.2l-3 7c-.1.3-.1.5-.1.7v2c0 1.1.9 2 2 2h6.3l-.9 4.5c-.1.5 0 1 .4 1.4l1.1 1.1 6.5-6.6c.4-.4.6-.9.6-1.4V5c-.1-1.1-1-2-2.1-2zm7.4 12.8h-2.9c-.4 0-.7-.3-.7-.7V3.9c0-.4.3-.7.7-.7h2.9c.4 0 .7.3.7.7V15c0 .4-.3.8-.7.8z"
+        fill="red"
+      />
+      <path d="m8 12.5 5.1-2.9L8 6.7v5.8z" fill="#fff"/>
+    </svg>
+    <h1 style="margin-bottom: 0.75rem" title="__MSG_extensionName__">
+      __MSG_extensionName__
+    </h1>
+    <p style="color: var(--lightGrey)" title="__MSG_textDeveloper__">
+      __MSG_textDeveloper__
+    </p>
+  
+    <button id="link_website" title="__MSG_linkWebsite__">
+      __MSG_linkWebsite__
+    </button>
+    <button style="margin-top: 0.3em; background: #ff0000" id="link_donate" title="__MSG_linkDonate__">
+      __MSG_linkDonate__
+    </button>
+    <button id="link_discord">Discord</button>
+    <br/>
+    <button style="margin-top: 0.3rem" id="link_faq" title="__MSG_linkFAQ__">
+      __MSG_linkFAQ__
+    </button>
+    <button id="link_github">GitHub</button>
+    <button style="margin-top: 0.3em" id="link_help" title="__MSG_linkHelp__">
+      __MSG_linkHelp__
+    </button>
+    <br>
+    <button style="margin-top: 0.3em" id="link_changelog" title="__MSG_linkChangelog__">
+      Change Log
+    </button>
+  
+    <br/>
+    <br/>
+    <p style="display: none">API Status: <b id="status"></b></p>
+    <img
+      id="server-status"
+      style="display: none; width: 0.75rem; height: 0.75rem"
+      src="./icons/server.svg"
+      alt=""
     />
-    <path d="m8 12.5 5.1-2.9L8 6.7v5.8z" fill="#fff"/>
-  </svg>
-  <h1 style="margin-bottom: 0.75rem" title="__MSG_extensionName__">
-    __MSG_extensionName__
-  </h1>
-  <p style="color: var(--lightGrey)" title="__MSG_textDeveloper__">
-    __MSG_textDeveloper__
-  </p>
-
-  <button id="link_website" title="__MSG_linkWebsite__">
-    __MSG_linkWebsite__
-  </button>
-  <button
-    style="margin-top: 0.3em; background: #ff0000"
-    id="link_donate"
-    title="__MSG_linkDonate__"
-  >
-    __MSG_linkDonate__
-  </button>
-  <button id="link_discord">Discord</button>
-  <br/>
-  <button style="margin-top: 0.3rem" id="link_faq" title="__MSG_linkFAQ__">
-    __MSG_linkFAQ__
-  </button>
-  <button id="link_github">GitHub</button>
-  <button style="margin-top: 0.3em" id="link_help" title="__MSG_linkHelp__">
-    __MSG_linkHelp__
-  </button>
-
-  <br/>
-  <br/>
-  <p style="display: none">API Status: <b id="status"></b></p>
-  <img
-    id="server-status"
-    style="display: none; width: 0.75rem; height: 0.75rem"
-    src="./icons/server.svg"
-    alt=""
-  />
-
-  <br/>
-  <br/>
-</center>
+  
+    <br/>
+    <br/>
+  </center>
 
 <!-- top-right -->
 <button id="advancedToggle">

+ 2 - 0
Extensions/combined/popup.js

@@ -19,6 +19,7 @@ const config = {
     donate: "https://returnyoutubedislike.com/donate",
     faq: "https://returnyoutubedislike.com/faq",
     help: "https://returnyoutubedislike.com/help",
+    changelog: "/changelog/3/changelog_3.0.html"
   },
 };
 
@@ -49,6 +50,7 @@ createLink(config.links.discord, "link_discord");
 createLink(config.links.faq, "link_faq");
 createLink(config.links.donate, "link_donate");
 createLink(config.links.help, "link_help");
+createLink(config.links.changelog, "link_changelog");
 
 function createLink(url, id) {
   document.getElementById(id).addEventListener("click", () => {

+ 6 - 5
Extensions/combined/ryd.background.js

@@ -9,8 +9,6 @@ let extConfig = {
   coloredThumbs: false,
   coloredBar: false,
   colorTheme: "classic", // classic, accessible, neon
-  // coloredThumbs: false,
-  // coloredBar: false,
   numberDisplayFormat: "compactShort", // compactShort, compactLong, standard
   numberDisplayRoundDown: true, // locale 'de' shows exact numbers by default
 };
@@ -74,9 +72,12 @@ api.runtime.onMessage.addListener((request, sender, sendResponse) => {
   }
 });
 
-api.runtime.onInstalled.addListener(() => {
-  api.tabs.create({url: api.runtime.getURL("/changelog/3/changelog_3.0.html")});
-})
+api.storage.sync.get(['newInstallation'], (result) => {
+  if (result.newInstallation !== false) {
+    api.tabs.create({url: api.runtime.getURL("/changelog/3/changelog_3.0.html")});
+  }
+});
+api.storage.sync.set({'newInstallation': false});
 
 async function sendVote(videoId, vote) {
   api.storage.sync.get(null, async (storageResult) => {