-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Functionality updates and bugfixes for release 1.2.0 (#18)
* Fix incorrect nfo actress entry due to casing * Add Javinizer update check * Remove verbose message on video success * Update actress image download functionality * Add new function to multisort * Update for release 1.2.0
- Loading branch information
Showing
8 changed files
with
88 additions
and
53 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
function Update-Javinizer { | ||
$currentVer = (Get-InstalledModule -Name Javinizer).Version | ||
$latestVer = (Find-Module -Name Javinizer).Version | ||
|
||
if ($currentVer -ne $latestVer) { | ||
Write-Host "[$(Get-TimeStamp)][$($MyInvocation.MyCommand.Name)] There is a newer version of Javinizer available: [$currentVer --> $latestVer]" | ||
} | ||
} | ||
|
||
|
||
<# | ||
function Update-Javinizer { | ||
param ( | ||
[string]$ScriptRoot, | ||
[object]$Settings | ||
) | ||
$currentVer = (Get-InstalledModule -Name Javinizer).Version | ||
$latestVer = (Find-Module -Name Javinizer).Version | ||
Update-Module -Name Javinizer -AcceptLicense -Confirm:$false -Force | ||
$modulePaths = (Get-Module -ListAvailable).Path | Where-Object { $_ -match 'Javinizer' } | ||
$currentVerPath = (Get-Item ($modulePaths | Where-Object { $_ -match "$currentVer" })).DirectoryName | ||
$latestVerPath = (Get-Item ($modulePaths | Where-Object { $_ -match "$latestVer" })).DirectoryName | ||
} | ||
#> |
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