Skip to content

Commit

Permalink
Merge pull request #311 from jvlflame/dev
Browse files Browse the repository at this point in the history
2.5.9
  • Loading branch information
jvlflame authored Oct 20, 2021
2 parents f66c7c8 + 096b113 commit e5abb2e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.9]

### Fixed

- Fixed R18/DMM URL scraper due to changed R18 search HTML

## [2.5.8]

### Added
Expand Down
2 changes: 1 addition & 1 deletion 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.8'
ModuleVersion = '2.5.9'

# Supported PSEditions
# CompatiblePSEditions = @('Core')
Expand Down
4 changes: 2 additions & 2 deletions src/Javinizer/Public/Get-R18Url.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function Get-R18Url {
[PSCustomObject]@{
Id = (($_ -split '<img alt="')[1] -split '"')[0]
Title = (($_ -split '<dt>')[1] -split '<\/dt>')[0]
Url = (($_ -split '<a href="')[1] -split '">')[0]
Url = (($_ -split '<a class="i3NLink" href="')[1] -split '"')[0]
}
}
}
Expand All @@ -77,7 +77,7 @@ function Get-R18Url {
[PSCustomObject]@{
Id = (($_ -split '<img alt="')[1] -split '"')[0]
Title = (($_ -split '<dt>')[1] -split '<\/dt>')[0]
Url = (($_ -split '<a href="')[1] -split '">')[0]
Url = (($_ -split '<a class="i3NLink" href="')[1] -split '"')[0]
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/Javinizer/Universal/Repository/javinizergui.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$cache:guiVersion = '2.5.8-1'
$cache:guiVersion = '2.5.9-1'

# Define Javinizer module file paths
$cache:modulePath = (Get-InstalledModule -Name Javinizer).InstalledLocation
Expand Down

0 comments on commit e5abb2e

Please sign in to comment.