Add Copy / Open Channel URL to video dropdown
This commit is contained in:
parent
45093859eb
commit
4113ebb6bb
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "freetube",
|
"name": "freetube",
|
||||||
"version": "0.9.0",
|
"version": "0.9.1",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -50,7 +50,9 @@ export default Vue.extend({
|
||||||
'openYoutubeEmbed',
|
'openYoutubeEmbed',
|
||||||
'copyYoutubeEmbed',
|
'copyYoutubeEmbed',
|
||||||
'openInvidious',
|
'openInvidious',
|
||||||
'copyInvidious'
|
'copyInvidious',
|
||||||
|
'openYoutubeChannel',
|
||||||
|
'copyYoutubeChannel'
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -97,6 +99,10 @@ export default Vue.extend({
|
||||||
return `https://youtu.be/${this.id}`
|
return `https://youtu.be/${this.id}`
|
||||||
},
|
},
|
||||||
|
|
||||||
|
youtubeChannelUrl: function () {
|
||||||
|
return `https://youtube.com/channel/${this.channelId}`
|
||||||
|
},
|
||||||
|
|
||||||
youtubeEmbedUrl: function () {
|
youtubeEmbedUrl: function () {
|
||||||
return `https://www.youtube-nocookie.com/embed/${this.id}`
|
return `https://www.youtube-nocookie.com/embed/${this.id}`
|
||||||
},
|
},
|
||||||
|
@ -112,7 +118,9 @@ export default Vue.extend({
|
||||||
this.$t('Video.Open YouTube Embedded Player'),
|
this.$t('Video.Open YouTube Embedded Player'),
|
||||||
this.$t('Video.Copy YouTube Embedded Player Link'),
|
this.$t('Video.Copy YouTube Embedded Player Link'),
|
||||||
this.$t('Video.Open in Invidious'),
|
this.$t('Video.Open in Invidious'),
|
||||||
this.$t('Video.Copy Invidious Link')
|
this.$t('Video.Copy Invidious Link'),
|
||||||
|
this.$t('Video.Open Channel in YouTube'),
|
||||||
|
this.$t('Video.Copy YouTube Channel Link')
|
||||||
]
|
]
|
||||||
|
|
||||||
if (this.watched) {
|
if (this.watched) {
|
||||||
|
@ -208,6 +216,18 @@ export default Vue.extend({
|
||||||
shell.openExternal(this.invidiousUrl)
|
shell.openExternal(this.invidiousUrl)
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
|
case 'copyYoutubeChannel':
|
||||||
|
navigator.clipboard.writeText(this.youtubeChannelUrl)
|
||||||
|
this.showToast({
|
||||||
|
message: this.$t('Share.YouTube Channel URL copied to clipboard')
|
||||||
|
})
|
||||||
|
break
|
||||||
|
case 'openYoutubeChannel':
|
||||||
|
if (this.usingElectron) {
|
||||||
|
const shell = require('electron').shell
|
||||||
|
shell.openExternal(this.youtubeChannelUrl)
|
||||||
|
}
|
||||||
|
break
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -394,6 +394,8 @@ Video:
|
||||||
Copy YouTube Embedded Player Link: Copy YouTube Embedded Player Link
|
Copy YouTube Embedded Player Link: Copy YouTube Embedded Player Link
|
||||||
Open in Invidious: Open in Invidious
|
Open in Invidious: Open in Invidious
|
||||||
Copy Invidious Link: Copy Invidious Link
|
Copy Invidious Link: Copy Invidious Link
|
||||||
|
Open Channel in YouTube: Open Channel in YouTube
|
||||||
|
Copy YouTube Channel Link: Copy YouTube Channel Link
|
||||||
View: View
|
View: View
|
||||||
Views: Views
|
Views: Views
|
||||||
Loop Playlist: Loop Playlist
|
Loop Playlist: Loop Playlist
|
||||||
|
@ -508,6 +510,8 @@ Share:
|
||||||
Invidious Embed URL copied to clipboard: Invidious Embed URL copied to clipboard
|
Invidious Embed URL copied to clipboard: Invidious Embed URL copied to clipboard
|
||||||
YouTube URL copied to clipboard: YouTube URL copied to clipboard
|
YouTube URL copied to clipboard: YouTube URL copied to clipboard
|
||||||
YouTube Embed URL copied to clipboard: YouTube Embed URL copied to clipboard
|
YouTube Embed URL copied to clipboard: YouTube Embed URL copied to clipboard
|
||||||
|
YouTube Channel URL copied to clipboard: YouTube Channel URL copied to clipboard
|
||||||
|
|
||||||
Mini Player: Mini Player
|
Mini Player: Mini Player
|
||||||
Comments:
|
Comments:
|
||||||
Comments: Comments
|
Comments: Comments
|
||||||
|
|
Loading…
Reference in New Issue