Skip to content

Commit

Permalink
Fixed several issues (#353) (#350) (#349) (#346)
Browse files Browse the repository at this point in the history
Signed-off-by: Seeyabye <seeyabye91@gmail.com>
  • Loading branch information
seeyabye committed Feb 15, 2023
1 parent 26fc17b commit 3398317
Show file tree
Hide file tree
Showing 15 changed files with 2,395 additions and 2,539 deletions.
9 changes: 9 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [2.5.11]

### Fixed

- Fixed missing `sort.renamefolderinplace` in GUI (#353)
- Removed R18 support (#350)
- Fixed javbus screenshot not being recognized (#349)
- Fixed jav321 screenshots not being grabbed correctly (#346)

## [2.5.10]

### Fixed
Expand Down
3,440 changes: 1,718 additions & 1,722 deletions dashboard/pages/1.0 sort.ps1

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion dashboard/pages/2.0 settings.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ New-UDPage -Name "Settings" -Content {
'JavlibraryZh',
'MGStageJa',
'R18',
'R18Zh',
'Javbus',
'JavbusJa',
'JavbusZh',
Expand Down
4 changes: 1 addition & 3 deletions src/Javinizer/Javinizer.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

# Version number of this module.

ModuleVersion = '2.5.10'
ModuleVersion = '2.5.11'

# Supported PSEditions
# CompatiblePSEditions = @('Core')
Expand Down Expand Up @@ -100,8 +100,6 @@
'Get-MaleActors',
'Get-MgstageData',
'Get-MgstageUrl',
'Get-R18Data',
'Get-R18Url',
'Install-JVGui',
'Set-JavlibraryOwned',
'Set-JVEmbyThumbs',
Expand Down
14 changes: 1 addition & 13 deletions src/Javinizer/Private/Get-JVUrlLocation.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,7 @@ function Get-JVUrlLocation {
process {
$testUrlObject = @()
foreach ($link in $Url) {
if ($link -match 'r18.com') {
if ($link -match 'lg=zh') {
$testUrlObject += [PSCustomObject]@{
Url = $link
Source = 'r18zh'
}
} else {
$testUrlObject += [PSCustomObject]@{
Url = $link
Source = 'r18'
}
}
} elseif ($link -match 'javlibrary.com' -or $link -match 'g46e.com' -or $link -match 'm45e.com' -or $link -match ($Settings.'javlibrary.baseurl' -replace 'http(s)?:\/\/')) {
if ($link -match 'javlibrary.com' -or $link -match 'g46e.com' -or $link -match 'm45e.com' -or $link -match ($Settings.'javlibrary.baseurl' -replace 'http(s)?:\/\/')) {
if ($link -match '/ja/') {
$testUrlObject += [PSCustomObject]@{
Url = $link
Expand Down
Loading

0 comments on commit 3398317

Please sign in to comment.