diff --git a/dist/BetterYTM.user.js b/dist/BetterYTM.user.js
index ccb9f8f3a3..1e45d105a1 100644
--- a/dist/BetterYTM.user.js
+++ b/dist/BetterYTM.user.js
@@ -1,7 +1,7 @@
// ==UserScript==
// @name BetterYTM
// @namespace https://github.com/Sv443/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
// @homepageURL https://github.com/Sv443/BetterYTM#readme
@@ -469,7 +469,7 @@ const constants_scriptInfo = {
name: GM.info.script.name,
version: GM.info.script.version,
namespace: GM.info.script.namespace,
- buildNumber: "8d02f2a", // assert as generic string instead of literal
+ buildNumber: "ea97e21", // assert as generic string instead of literal
};
;// CONCATENATED MODULE: ./src/utils.ts
@@ -682,7 +682,7 @@ function initSiteEvents() {
;// CONCATENATED MODULE: ./changelog.md
// Module
-var code = "
1.0.0
- 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
- Use number keys to skip to a specific point in the song
- Added feature to make volume slider bigger and volume control finer
- Added percentage label next to the volume slider & title on hover
- Improvements to link hitboxes & more links in general
- Permanent toast notifications can be automatically closed now
- Remove tracking parameter
&si=...
from links in the share menu - 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:
- Now the lyrics button will directly link to the lyrics (using my API geniURL)
- Video time is now kept when switching site on regular YT too
- Fixed compatibility with the new site design
- A loading indicator is shown while the lyrics are loading
- Images are now smaller and cached by the userscript extension
- Song names with hyphens are now resolved better for lyrics lookup
- Site switch with F9 will now keep the video time
- Moved lots of utility code to my new library UserUtils
0.2.0
- 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
0.1.0
- Added support for arrow keys to skip forward or backward (currently only by fixed 10 second interval)
";
+var code = "1.0.1
- Changes:
- Added a greasyfork link to the configuration menu
1.0.0
- 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
- Use number keys to skip to a specific point in the song
- Added feature to make volume slider bigger and volume control finer
- Added percentage label next to the volume slider & title on hover
- Improvements to link hitboxes & more links in general
- Permanent toast notifications can be automatically closed now
- Remove tracking parameter
&si=...
from links in the share menu - 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:
- Now the lyrics button will directly link to the lyrics (using my API geniURL)
- Video time is now kept when switching site on regular YT too
- Fixed compatibility with the new site design
- A loading indicator is shown while the lyrics are loading
- Images are now smaller and cached by the userscript extension
- Song names with hyphens are now resolved better for lyrics lookup
- Site switch with F9 will now keep the video time
- Moved lots of utility code to my new library UserUtils
0.2.0
- 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
0.1.0
- Added support for arrow keys to skip forward or backward (currently only by fixed 10 second interval)
";
// Exports
/* harmony default export */ var changelog = (code);
;// CONCATENATED MODULE: ./src/menu/menu_old.ts
@@ -752,8 +752,7 @@ function addMenu() {
linksCont.appendChild(anchorElem);
};
addLink(yield getResourceUrl("github"), constants_scriptInfo.namespace, `Open ${constants_scriptInfo.name} on GitHub`);
- // TODO:
- // addLink(await getResourceUrl("greasyfork"), "https://greasyfork.org/en/users/184165-sv443", `Open ${scriptInfo.name} on GreasyFork`);
+ addLink(yield getResourceUrl("greasyfork"), "https://greasyfork.org/en/scripts/475682-betterytm", `Open ${constants_scriptInfo.name} on GreasyFork`);
const closeElem = document.createElement("img");
closeElem.classList.add("bytm-menu-close");
closeElem.src = yield getResourceUrl("close");