Bump yt-channel-info version, fix playlist / history search bar hiding and fix text in resolution for stats modal
This commit is contained in:
parent
4ef26df7a0
commit
0806a1a0ae
|
@ -89,7 +89,7 @@
|
||||||
"vue-router": "^3.5.2",
|
"vue-router": "^3.5.2",
|
||||||
"vuex": "^3.6.2",
|
"vuex": "^3.6.2",
|
||||||
"youtube-suggest": "^1.1.2",
|
"youtube-suggest": "^1.1.2",
|
||||||
"yt-channel-info": "^3.0.2",
|
"yt-channel-info": "^3.0.3",
|
||||||
"yt-dash-manifest-generator": "1.1.0",
|
"yt-dash-manifest-generator": "1.1.0",
|
||||||
"yt-trending-scraper": "^2.0.1",
|
"yt-trending-scraper": "^2.0.1",
|
||||||
"ytdl-core": "^4.11.0",
|
"ytdl-core": "^4.11.0",
|
||||||
|
|
|
@ -16,11 +16,6 @@ export default Vue.extend({
|
||||||
required: true
|
required: true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data: function () {
|
|
||||||
return {
|
|
||||||
test: 'hello'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
computed: {
|
computed: {
|
||||||
listType: function () {
|
listType: function () {
|
||||||
return this.$store.getters.getListType
|
return this.$store.getters.getListType
|
||||||
|
|
|
@ -1449,7 +1449,7 @@ export default Vue.extend({
|
||||||
const droppedFrames = this.playerStats.videoPlaybackQuality.droppedVideoFrames
|
const droppedFrames = this.playerStats.videoPlaybackQuality.droppedVideoFrames
|
||||||
const totalFrames = this.playerStats.videoPlaybackQuality.totalVideoFrames
|
const totalFrames = this.playerStats.videoPlaybackQuality.totalVideoFrames
|
||||||
const frames = `${droppedFrames} / ${totalFrames}`
|
const frames = `${droppedFrames} / ${totalFrames}`
|
||||||
const resolution = `${this.selectedResolution}@${this.selectedFPS}fps`
|
const resolution = this.selectedResolution === 'auto' ? 'auto' : `${this.selectedResolution}@${this.selectedFPS}fps`
|
||||||
const playerDimensions = `${this.playerStats.playerDimensions.width}x${this.playerStats.playerDimensions.height}`
|
const playerDimensions = `${this.playerStats.playerDimensions.width}x${this.playerStats.playerDimensions.height}`
|
||||||
const statsArray = [
|
const statsArray = [
|
||||||
[this.$t('Video.Stats.Video ID'), this.videoId],
|
[this.$t('Video.Stats.Video ID'), this.videoId],
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
>
|
>
|
||||||
<h3>{{ $t("History.History") }}</h3>
|
<h3>{{ $t("History.History") }}</h3>
|
||||||
<ft-input
|
<ft-input
|
||||||
v-show="activeData.length > 0"
|
v-show="fullData.length > 0"
|
||||||
ref="searchBar"
|
ref="searchBar"
|
||||||
:placeholder="$t('History.Search bar placeholder')"
|
:placeholder="$t('History.Search bar placeholder')"
|
||||||
:show-clear-text-button="true"
|
:show-clear-text-button="true"
|
||||||
|
@ -18,12 +18,19 @@
|
||||||
@input="(input) => query = input"
|
@input="(input) => query = input"
|
||||||
/>
|
/>
|
||||||
<ft-flex-box
|
<ft-flex-box
|
||||||
v-show="activeData.length === 0"
|
v-show="fullData.length === 0"
|
||||||
>
|
>
|
||||||
<p class="message">
|
<p class="message">
|
||||||
{{ $t("History['Your history list is currently empty.']") }}
|
{{ $t("History['Your history list is currently empty.']") }}
|
||||||
</p>
|
</p>
|
||||||
</ft-flex-box>
|
</ft-flex-box>
|
||||||
|
<ft-flex-box
|
||||||
|
v-show="activeData.length === 0 && fullData.length > 0"
|
||||||
|
>
|
||||||
|
<p class="message">
|
||||||
|
{{ $t("History['Empty Search Message']") }}
|
||||||
|
</p>
|
||||||
|
</ft-flex-box>
|
||||||
<ft-element-list
|
<ft-element-list
|
||||||
v-if="activeData.length > 0 && !isLoading"
|
v-if="activeData.length > 0 && !isLoading"
|
||||||
:data="activeData"
|
:data="activeData"
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
/>
|
/>
|
||||||
</h3>
|
</h3>
|
||||||
<ft-input
|
<ft-input
|
||||||
v-show="activeData.length > 0"
|
v-show="fullData.length > 0"
|
||||||
ref="searchBar"
|
ref="searchBar"
|
||||||
:placeholder="$t('User Playlists.Search bar placeholder')"
|
:placeholder="$t('User Playlists.Search bar placeholder')"
|
||||||
:show-clear-text-button="true"
|
:show-clear-text-button="true"
|
||||||
|
@ -25,12 +25,19 @@
|
||||||
@input="(input) => query = input"
|
@input="(input) => query = input"
|
||||||
/>
|
/>
|
||||||
<ft-flex-box
|
<ft-flex-box
|
||||||
v-show="activeData.length === 0"
|
v-show="fullData.length === 0"
|
||||||
>
|
>
|
||||||
<p class="message">
|
<p class="message">
|
||||||
{{ $t("User Playlists['Your saved videos are empty. Click on the save button on the corner of a video to have it listed here']") }}
|
{{ $t("User Playlists['Your saved videos are empty. Click on the save button on the corner of a video to have it listed here']") }}
|
||||||
</p>
|
</p>
|
||||||
</ft-flex-box>
|
</ft-flex-box>
|
||||||
|
<ft-flex-box
|
||||||
|
v-show="activeData.length === 0 && fullData.length > 0"
|
||||||
|
>
|
||||||
|
<p class="message">
|
||||||
|
{{ $t("User Playlists['Empty Search Message']") }}
|
||||||
|
</p>
|
||||||
|
</ft-flex-box>
|
||||||
<ft-element-list
|
<ft-element-list
|
||||||
v-if="activeData.length > 0 && !isLoading"
|
v-if="activeData.length > 0 && !isLoading"
|
||||||
:data="activeData"
|
:data="activeData"
|
||||||
|
|
|
@ -103,12 +103,14 @@ User Playlists:
|
||||||
videos currently here will be migrated to a 'Favorites' playlist.
|
videos currently here will be migrated to a 'Favorites' playlist.
|
||||||
Your saved videos are empty. Click on the save button on the corner of a video to have it listed here: Your saved videos are empty. Click on the save button on the corner of a video to have
|
Your saved videos are empty. Click on the save button on the corner of a video to have it listed here: Your saved videos are empty. Click on the save button on the corner of a video to have
|
||||||
it listed here
|
it listed here
|
||||||
|
Empty Search Message: There are no videos in this playlist that matches your search
|
||||||
Search bar placeholder: Search in Playlist
|
Search bar placeholder: Search in Playlist
|
||||||
History:
|
History:
|
||||||
# On History Page
|
# On History Page
|
||||||
History: History
|
History: History
|
||||||
Watch History: Watch History
|
Watch History: Watch History
|
||||||
Your history list is currently empty.: Your history list is currently empty.
|
Your history list is currently empty.: Your history list is currently empty.
|
||||||
|
Empty Search Message: There are no videos in your history that matches your search
|
||||||
Search bar placeholder: "Search in History"
|
Search bar placeholder: "Search in History"
|
||||||
Settings:
|
Settings:
|
||||||
# On Settings Page
|
# On Settings Page
|
||||||
|
|
|
@ -9049,10 +9049,10 @@ youtube-suggest@^1.1.2:
|
||||||
node-fetch "^2.6.0"
|
node-fetch "^2.6.0"
|
||||||
smol-jsonp "^1.0.0"
|
smol-jsonp "^1.0.0"
|
||||||
|
|
||||||
yt-channel-info@^3.0.2:
|
yt-channel-info@^3.0.3:
|
||||||
version "3.0.2"
|
version "3.0.3"
|
||||||
resolved "https://registry.yarnpkg.com/yt-channel-info/-/yt-channel-info-3.0.2.tgz#8a481a3a11bd8c8e80db983692ede15e5f273ceb"
|
resolved "https://registry.yarnpkg.com/yt-channel-info/-/yt-channel-info-3.0.3.tgz#3113aa505ca7511d52c02c4a7fbd16dc7c248a5d"
|
||||||
integrity sha512-c00T9Zs09F9InmLemk2hXt4gA7GYohGvPahLHllNaW1kSMVXJeaWbPd2P5/VBiMIf9b4zSXuTqLvsrjFjN1JVw==
|
integrity sha512-M7JTFLWE+bA1t+s+H3sZ+FFV8VTaslhRFVB49I+ilBsemqAKa19EH+70uWdJrYgJQWSM5/hCSU26yBhsA8/evQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
axios "^0.26.1"
|
axios "^0.26.1"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue