diff --git a/changelog.md b/changelog.md index 7ad0c2969d..d304edad32 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ +## 1.0.1 +- **Changes:** + - Added a greasyfork link to the configuration menu + +
+ ## 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 F9 by default) - Search for song lyrics with new button in media controls - Remove "Upgrade to YTM Premium" tab diff --git a/package-lock.json b/package-lock.json index 302354e3a3..8fda10f741 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "betterytm", - "version": "1.0.0", + "version": "1.0.1", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/package.json b/package.json index 296120bd41..5dbcbdfdae 100644 --- a/package.json +++ b/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", diff --git a/src/menu/menu_old.ts b/src/menu/menu_old.ts index 69a5f9d0f5..f6b4367c1b 100644 --- a/src/menu/menu_old.ts +++ b/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");