Skip to content

Commit

Permalink
AU: 1 updated - gom-player
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Jun 22, 2023
1 parent bfab6be commit ba3a94a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion automatic/gom-player/gom-player.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>gom-player</id>
<version>2.3.87</version>
<version>2.3.88</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/gom-player</packageSourceUrl>
<owners>chocolatey-community, AdmiringWorm</owners>
<title>GOM Player (Install)</title>
Expand Down
2 changes: 1 addition & 1 deletion automatic/gom-player/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $packageArgs = @{
fileType = 'exe'
url = 'https://cdn.gomlab.com/gretech/player/GOMPLAYERGLOBALSETUP_NEW.EXE'
softwareName = 'GOM Player'
checksum = '72bd06109a92b733ccccc6431d042633271d762d9efa0ee471f2eef6c601e0cf'
checksum = '7565b444fd20b3d9a634560fbaa0bf9ab66b18a73a66835b496ead9e14868ffa'
checksumType = 'sha256'
silentArgs = '/S'
validExitCodes = @(0)
Expand Down
2 changes: 1 addition & 1 deletion automatic/gom-player/update.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function global:au_GetLatest {
$download_page = Invoke-WebRequest -Uri $releases -UseBasicParsing

$re = '\.exe$'
$url32 = $download_page.Links | ? href -match $re | select -first 1 -expand href
$url32 = $download_page.Links | Where-Object href -match $re | Select-Object -first 1 -expand href

$verRe = '((?:\d+\.){2,3}\d+)'
$version_page = Invoke-WebRequest -Uri $versions -UseBasicParsing
Expand Down

0 comments on commit ba3a94a

Please sign in to comment.