Browse Source

feat: add greasyfork url to cfg menu

Sv443 1 year ago
parent
commit
ea97e218f2
4 changed files with 12 additions and 7 deletions
  1. 9 3
      changelog.md
  2. 1 1
      package-lock.json
  3. 1 1
      package.json
  4. 1 2
      src/menu/menu_old.ts

+ 9 - 3
changelog.md

@@ -1,5 +1,11 @@
+## 1.0.1
+- **Changes:**
+  - Added a greasyfork link to the configuration menu
+
+<br>
+
 ## 1.0.0
-- Added Features:
+- **Added Features:**
   - Added configuration menu to toggle and configure all features
   - Added lyrics button to each song in the queue
   - Added "remove from queue" button to each song in the queue
@@ -12,7 +18,7 @@
   - Fix spacing issues throughout the site
   - Added a button to scroll to the currently active song in the queue
   - Added an easter egg to the watermark and config menu option :)
-- Changes & Fixes:
+- **Changes & Fixes:**
   - Now the lyrics button will directly link to the lyrics (using my API [geniURL](https://github.com/Sv443/geniURL))
   - Video time is now kept when switching site on regular YT too
   - Fixed compatibility with the new site design
@@ -26,7 +32,7 @@
 
 ## 0.2.0
 
-- Added Features:
+- **Added Features:**
   - Switch between YouTube and YT Music (with <kbd>F9</kbd> by default)
   - Search for song lyrics with new button in media controls
   - Remove "Upgrade to YTM Premium" tab

+ 1 - 1
package-lock.json

@@ -1,6 +1,6 @@
 {
   "name": "betterytm",
-  "version": "1.0.0",
+  "version": "1.0.1",
   "lockfileVersion": 3,
   "requires": true,
   "packages": {

+ 1 - 1
package.json

@@ -1,7 +1,7 @@
 {
   "name": "betterytm",
   "userscriptName": "BetterYTM",
-  "version": "1.0.0",
+  "version": "1.0.1",
   "description": "Configurable layout and UX improvements for YouTube Music",
   "description:de": "Konfigurierbares Layout und UX-Verbesserungen für YouTube Music",
   "homepage": "https://github.com/Sv443/BetterYTM",

+ 1 - 2
src/menu/menu_old.ts

@@ -79,8 +79,7 @@ export async function addMenu() {
   };
 
   addLink(await getResourceUrl("github"), scriptInfo.namespace, `Open ${scriptInfo.name} on GitHub`);
-  // TODO:
-  // addLink(await getResourceUrl("greasyfork"), "https://greasyfork.org/en/users/184165-sv443", `Open ${scriptInfo.name} on GreasyFork`);
+  addLink(await getResourceUrl("greasyfork"), "https://greasyfork.org/en/scripts/475682-betterytm", `Open ${scriptInfo.name} on GreasyFork`);
 
   const closeElem = document.createElement("img");
   closeElem.classList.add("bytm-menu-close");