Update Premiere Logic
This commit is contained in:
parent
9cbbfb78ef
commit
4240bf9e35
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "freetube",
|
||||
"version": "0.8.0",
|
||||
"version": "0.9.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -20568,9 +20568,9 @@
|
|||
}
|
||||
},
|
||||
"yt-channel-info": {
|
||||
"version": "1.1.3",
|
||||
"resolved": "https://registry.npmjs.org/yt-channel-info/-/yt-channel-info-1.1.3.tgz",
|
||||
"integrity": "sha512-qQ286btTvqBPL2VFHJa0WpKiHp62Jil5cwskGj8fSVeKjynr4QHDL24OmcZxQlqfP2WiB4Cz9DeK3JkN1KsVTw==",
|
||||
"version": "1.1.4",
|
||||
"resolved": "https://registry.npmjs.org/yt-channel-info/-/yt-channel-info-1.1.4.tgz",
|
||||
"integrity": "sha512-FQfttLEWMlVH4qXEkSxPQBkcg6RUquXeckoJtpJP8uMhv2HSRMQ6qND1kf/kQf6eThd8UaYTvXrsgWnIAOG44w==",
|
||||
"requires": {
|
||||
"axios": "^0.19.2",
|
||||
"querystring": "^0.2.0"
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
"xml2json": "^0.12.0",
|
||||
"youtube-chat": "^1.1.0",
|
||||
"youtube-suggest": "^1.1.0",
|
||||
"yt-channel-info": "^1.1.3",
|
||||
"yt-channel-info": "^1.1.4",
|
||||
"yt-comment-scraper": "^1.3.4",
|
||||
"yt-dash-manifest-generator": "^1.1.0",
|
||||
"yt-trending-scraper": "^1.0.3",
|
||||
|
|
|
@ -110,12 +110,10 @@ export default Vue.extend({
|
|||
textDecode.pop()
|
||||
textDecode = textDecode.map(data => JSON.parse(data))
|
||||
|
||||
let importingOldFormat = false
|
||||
const firstEntry = textDecode[0]
|
||||
if (firstEntry.channelId && firstEntry.channelName && firstEntry.channelThumbnail && firstEntry._id && firstEntry.profile) {
|
||||
// Old FreeTube subscriptions format detected, so convert it to the new one:
|
||||
textDecode = await this.convertOldFreeTubeFormatToNew(textDecode)
|
||||
importingOldFormat = true
|
||||
}
|
||||
|
||||
const primaryProfile = JSON.parse(JSON.stringify(this.profileList[0]))
|
||||
|
|
|
@ -41,6 +41,7 @@ export default Vue.extend({
|
|||
publishedText: '',
|
||||
isLive: false,
|
||||
isFavorited: false,
|
||||
isUpcoming: false,
|
||||
hideViews: false,
|
||||
optionsValues: [
|
||||
'history',
|
||||
|
@ -254,18 +255,25 @@ export default Vue.extend({
|
|||
this.duration = this.calculateVideoDuration(this.data.lengthSeconds)
|
||||
this.description = this.data.description
|
||||
this.isLive = this.data.liveNow
|
||||
this.isUpcoming = this.data.isUpcoming || this.data.premiere
|
||||
this.viewCount = this.data.viewCount
|
||||
|
||||
if (typeof (this.data.premiereTimestamp) !== 'undefined') {
|
||||
this.publishedText = new Date(this.data.premiereTimestamp * 1000).toLocaleString()
|
||||
} else {
|
||||
this.publishedText = this.data.publishedText
|
||||
}
|
||||
|
||||
if (typeof (this.data.publishedText) !== 'undefined' && this.data.publishedText !== null && !this.isLive) {
|
||||
// produces a string according to the template in the locales string
|
||||
this.toLocalePublicationString({
|
||||
publishText: this.data.publishedText,
|
||||
publishText: this.publishedText,
|
||||
templateString: this.$t('Video.Publicationtemplate'),
|
||||
timeStrings: this.$t('Video.Published'),
|
||||
liveStreamString: this.$t('Video.Watching'),
|
||||
upcomingString: this.$t('Video.Published.Upcoming'),
|
||||
isLive: this.isLive,
|
||||
isUpcoming: this.data.isUpcoming,
|
||||
isUpcoming: this.isUpcoming,
|
||||
isRSS: this.data.isRSS
|
||||
}).then((data) => {
|
||||
this.uploadedTime = data
|
||||
|
|
|
@ -78,7 +78,7 @@
|
|||
>
|
||||
<span>{{ channelName }}</span>
|
||||
</router-link>
|
||||
<template v-if="!isLive && !hideViews">
|
||||
<template v-if="!isLive && !isUpcoming && !hideViews">
|
||||
<span class="viewCount">• {{ parsedViewCount }}</span>
|
||||
<span v-if="viewCount === 1">{{ $t("Video.View").toLowerCase() }}</span>
|
||||
<span v-else>{{ $t("Video.Views").toLowerCase() }}</span>
|
||||
|
|
|
@ -278,7 +278,7 @@ const actions = {
|
|||
return '0' + payload.liveStreamString
|
||||
} else if (payload.isUpcoming || payload.publishText === null) {
|
||||
// the check for null is currently just an inferring of knowledge, because there is no other possibility left
|
||||
return payload.upcomingString
|
||||
return `${payload.upcomingString}: ${payload.publishText}`
|
||||
} else if (payload.isRSS) {
|
||||
return payload.publishText
|
||||
}
|
||||
|
|
|
@ -445,7 +445,7 @@ Video:
|
|||
Year: Year
|
||||
Years: Years
|
||||
Ago: Ago
|
||||
Upcoming: Premieres soon
|
||||
Upcoming: Premieres on
|
||||
Published on: Published on
|
||||
# $ is replaced with the number and % with the unit (days, hours, minutes...)
|
||||
Publicationtemplate: $ % ago
|
||||
|
|
Loading…
Reference in New Issue