Ver código fonte

ref: remove dismissPopup feature

Sven 1 ano atrás
pai
commit
22f24a2bef
4 arquivos alterados com 1 adições e 18 exclusões
  1. 0 1
      README.md
  2. 1 8
      dist/BetterYTM.user.js
  3. 0 7
      src/features/index.ts
  4. 0 2
      src/types.d.ts

+ 0 - 1
README.md

@@ -12,7 +12,6 @@ All of these features can be toggled and configured!
 - Input:
     - Use arrow keys to skip forward or backward by 10 seconds
     - Switch between YouTube and YouTube Music on a video by pressing a hotkey (F9 by default) <!-- TODO: make configurable -->
-    - TODO: Automatically dismiss "are you still there" popup
 - Layout:
     - Open any song's lyrics on genius.com which generally has higher quality than YouTube's providers
     - TODO: Quick actions on songs in a queue, to open their lyrics or remove them from the queue

+ 1 - 8
dist/BetterYTM.user.js

@@ -486,7 +486,7 @@ const scriptInfo = Object.freeze({
     name: GM.info.script.name,
     version: GM.info.script.version,
     namespace: GM.info.script.namespace,
-    lastCommit: "df39e39", // assert as generic string instead of union
+    lastCommit: "fab275d", // assert as generic string instead of union
 });
 
 
@@ -611,13 +611,6 @@ const featInfo = {
         default: true,
         visible: false,
     },
-    dismissPopup: {
-        desc: "TODO: Automatically dismisses the \"are you still there\" popup",
-        type: "toggle",
-        category: "layout",
-        default: true,
-        visible: false,
-    },
     //#SECTION lyrics
     geniusLyrics: {
         desc: "Add a button to the media controls to open the current song's lyrics on genius.com in a new tab",

+ 0 - 7
src/features/index.ts

@@ -87,13 +87,6 @@ export const featInfo = {
     default: true,
     visible: false,
   },
-  dismissPopup: {
-    desc: "TODO: Automatically dismisses the \"are you still there\" popup",
-    type: "toggle",
-    category: "layout",
-    default: true,
-    visible: false,
-  },
 
   //#SECTION lyrics
   geniusLyrics: {

+ 0 - 2
src/types.d.ts

@@ -34,8 +34,6 @@ export interface FeatureConfig {
   watermarkEnabled: boolean;
   /** TODO: Add buttons while hovering over a song in a queue to quickly remove it or open its lyrics */
   queueButtons: boolean;
-  /** TODO: Automatically dismisses the "are you still there" popup */
-  dismissPopup: boolean;
 
   //#SECTION lyrics
   /** Add a button to the media controls to open the current song's lyrics on genius.com in a new tab */