Skip to content

Commit

Permalink
fix fallback column, increment version, fix trailing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
bullmoose20 committed Apr 21, 2024
1 parent aa8d40f commit f42d1f9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Module1.bas
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Sub PromptUser()
Dim currentVersion As String

' Specify the current version number
currentVersion = "1.0.3"
currentVersion = "1.0.4"

' Check for updates
CheckForUpdate currentVersion
Expand Down Expand Up @@ -115,7 +115,7 @@ Sub ImportCSVs(folderPath)
wsImageChoices.Name = "ImageChoices"
ThisWorkbook.Queries.Add Name:="ImageChoices", Formula:= _
"let" & Chr(13) & "" & Chr(10) & " Source = Csv.Document(File.Contents(""" & Filename1 & """),[Delimiter="";"", Columns=9, Encoding=65001, QuoteStyle=QuoteStyle.None])," & Chr(13) & "" & Chr(10) & " #""Promoted Headers"" = Table.PromoteHeaders(Source, [PromoteAllScalars=true])," & Chr(13) & "" & Chr(10) & " #""Changed Type"" = Table.TransformColumnTypes(#""Promoted Headers"",{{""Title"", type text}, {""Type"", t" & _
"ype text}, {""Rootfolder"", type text}, {""LibraryName"", type text}, {""Language"", type text}, {""Fallback"", type logical}, {""TextTruncated"", type logical}, {""Download Source"", type text}, {""Fav Provider Link"", type text}})" & Chr(13) & "" & Chr(10) & "in" & Chr(13) & "" & Chr(10) & " #""Changed Type"""
"ype text}, {""Rootfolder"", type text}, {""LibraryName"", type text}, {""Language"", type text}, {""Fallback"", type text}, {""TextTruncated"", type logical}, {""Download Source"", type text}, {""Fav Provider Link"", type text}})" & Chr(13) & "" & Chr(10) & "in" & Chr(13) & "" & Chr(10) & " #""Changed Type"""

With wsImageChoices.ListObjects.Add(SourceType:=0, Source:= _
"OLEDB;Provider=Microsoft.Mashup.OleDb.1;Data Source=$Workbook$;Location=ImageChoices;Extended Properties=""""", Destination:=wsImageChoices.Range("$A$1")).QueryTable
Expand Down
6 changes: 3 additions & 3 deletions Posterizarr.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -1642,7 +1642,7 @@ function GetTVDBShowPoster {
$global:TVDBAssetTextLang = $lang
}
$global:TVDBAssetChangeUrl = "https://thetvdb.com/series/$($response.data.slug)#artwork"
return $global:posterurl
return $global:posterurl
continue
}
}
Expand Down Expand Up @@ -5565,7 +5565,7 @@ Elseif ($Tautulli) {
$global:ImageMagickError = $null
$global:TMDBSeasonFallback = $null
$global:TVDBSeasonFallback = $null
$global:FANARTSeasonFallback = $null
$global:FANARTSeasonFallback = $null
if ($SeasonfontAllCaps -eq 'true') {
$global:seasonTitle = $global:seasonNames[$i].ToUpper()
}
Expand Down Expand Up @@ -8721,7 +8721,7 @@ else {
$global:ImageMagickError = $null
$global:TMDBSeasonFallback = $null
$global:TVDBSeasonFallback = $null
$global:FANARTSeasonFallback = $null
$global:FANARTSeasonFallback = $null
if ($SeasonfontAllCaps -eq 'true') {
$global:seasonTitle = $global:seasonNames[$i].ToUpper()
}
Expand Down
2 changes: 1 addition & 1 deletion ReleaseModule.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.3
1.0.4

0 comments on commit f42d1f9

Please sign in to comment.