forked from FreeTubeApp/FreeTube
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' into feature/playlist-2023-05
* development: Add button to pause playlist after current video (FreeTubeApp#3938) Translated using Weblate (Greek) Translated using Weblate (Lithuanian) Translated using Weblate (Swedish) Translated using Weblate (Catalan) Make ft-channel-bubble an actual link when it is being used as one (FreeTubeApp#3980) Translated using Weblate (Catalan) Translated using Weblate (Catalan) Translated using Weblate (French) Bump lefthook from 1.4.9 to 1.4.10 (FreeTubeApp#4003) Bump the babel group with 3 updates (FreeTubeApp#4000) Bump actions/checkout from 3 to 4 (FreeTubeApp#3999) Group dependabot created updates for some packages in fewer PRs (FreeTubeApp#3968) Chore: Update vscode configurations (FreeTubeApp#3986) Bump youtubei.js from 6.1.0 to 6.3.0 (FreeTubeApp#3994) Bump postcss from 8.4.28 to 8.4.29 (FreeTubeApp#3995) Bump @babel/preset-env from 7.22.10 to 7.22.14 (FreeTubeApp#3996) Bump marked from 7.0.5 to 8.0.0 (FreeTubeApp#3993) Bump electron-builder from 24.6.3 to 24.6.4 (FreeTubeApp#3992) # Conflicts: # src/renderer/views/Watch/Watch.js
- Loading branch information
Showing
32 changed files
with
541 additions
and
371 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "dev-runner (Electron)", | ||
"type": "node", | ||
"request": "launch", | ||
"program": "${workspaceFolder}/_scripts/dev-runner.js", | ||
"args": ["--remote-debug"] | ||
}, | ||
{ | ||
"name": "Attach to renderer process (Electron)", | ||
"type": "chrome", | ||
"request": "attach", | ||
"port": 9223, | ||
"webRoot": "http://localhost:9080", | ||
"sourceMapPathOverrides": { | ||
"webpack://freetube/./~/*": "${workspaceFolder}/node_modules/*", | ||
"webpack://freetube/./*": "${workspaceFolder}/*" | ||
} | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/renderer/components/ft-channel-bubble/ft-channel-bubble.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,8 @@ | |
} | ||
|
||
.playlistIcon { | ||
height: 20px; | ||
width: 20px; | ||
font-size: 20px; | ||
padding: 10px; | ||
margin-top: -25px; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.