Skip to content

Commit

Permalink
AU: 2 updated - exiftool opera-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
mkevenaar committed Feb 9, 2023
1 parent 6d12035 commit 91ccdf9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion automatic/exiftool/exiftool.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<!-- version should MATCH as closely as possible with the underlying software -->
<!-- Is the version a prerelease of a version? https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
<!-- Note that unstable versions like 0.0.1 can be considered a released version, but it's possible that one can release a 0.0.1-beta before you release a 0.0.1 version. If the version number is final, that is considered a released version and not a prerelease. -->
<version>12.55.0.20230121</version>
<version>12.56</version>
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
<owners>Maurice Kevenaar</owners>
<!-- ============================== -->
Expand Down
4 changes: 2 additions & 2 deletions automatic/exiftool/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
$ErrorActionPreference = 'Stop';

$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = 'https://exiftool.org/exiftool-12.55.zip'
$checksum = '9503b78fc9cdf1c4b142f9c6bbeebb21964f0acbbe4064dc28eca2390e450da4'
$url = 'https://exiftool.org/exiftool-12.56.zip'
$checksum = '9f714ef976f63536e3ee29f31caf4d201a37324418ab93180a053173e92e23a7'
$checksumType = 'sha256'

$packageArgs = @{
Expand Down
4 changes: 2 additions & 2 deletions automatic/opera-beta/opera-beta.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<!-- version should MATCH as closely as possible with the underlying software -->
<!-- Is the version a prerelease of a version? https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
<!-- Note that unstable versions like 0.0.1 can be considered a released version, but it's possible that one can release a 0.0.1-beta before you release a 0.0.1 version. If the version number is final, that is considered a released version and not a prerelease. -->
<version>95.0.4635.28-beta</version>
<version>96.0.4693.12-beta</version>
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
<owners>Maurice Kevenaar</owners>
<!-- ============================== -->
Expand All @@ -41,7 +41,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<!-- copyright is usually years and software vendor, but not required for internal feeds -->
<copyright>Opera Software</copyright>
<tags>browser opera beta cross-platform internet admin</tags>
<releaseNotes>https://blogs.opera.com/desktop/changelog-for-95/#b4635.28</releaseNotes>
<releaseNotes>https://blogs.opera.com/desktop/changelog-for-96/#b4693.12</releaseNotes>
<licenseUrl>http://www.operasoftware.com/eula/browser</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<packageSourceUrl>https://github.com/mkevenaar/chocolatey-packages/tree/master/automatic/opera-beta</packageSourceUrl>
Expand Down
10 changes: 5 additions & 5 deletions automatic/opera-beta/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ $parameters += if ($pp.NoTaskbarShortcut) { " /pintotaskbar 0"; Write-Host "
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
url = 'https://get.geo.opera.com/pub/opera-beta/95.0.4635.28/win/Opera_beta_95.0.4635.28_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera-beta/95.0.4635.28/win/Opera_beta_95.0.4635.28_Setup_x64.exe'
checksum = 'a01554eb932f45686dcd5d6ef6ee443068851105a18a70c21e48d0cdcd474767'
checksum64 = '59d55894901d69e601f3be25b3b36bcbd84a6a4d4a409f4429f3b8bbb44b3e7d'
url = 'https://get.geo.opera.com/pub/opera-beta/96.0.4693.12/win/Opera_beta_96.0.4693.12_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera-beta/96.0.4693.12/win/Opera_beta_96.0.4693.12_Setup_x64.exe'
checksum = '56391ec95ebe023c10d9f779d77dfd851a68e3c396b244323e3ced62c81f6910'
checksum64 = '1793b2c488a4de65725c29aa45c08ee6cbec3f3508941847975ce63cc59ff729'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/install /silent /launchopera 0 /setdefaultbrowser 0' + $parameters
validExitCodes = @(0)
}

$version = '95.0.4635.28'
$version = '96.0.4693.12'
if (!$Env:ChocolateyForce -and (IsVersionAlreadyInstalled $version)) {
Write-Output "Opera $version is already installed. Skipping download and installation."
} else {
Expand Down

0 comments on commit 91ccdf9

Please sign in to comment.