Skip to content

Commit

Permalink
AU: 2 updated - GoogleChrome Opera
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Feb 7, 2024
1 parent 49c46bb commit 53cb6f2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion automatic/googlechrome/googlechrome.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>GoogleChrome</id>
<version>120.0.6099.283</version>
<version>121.0.6167.160</version>
<title>Google Chrome</title>
<owners>chocolatey-community</owners>
<authors>Google LLC.</authors>
Expand Down
2 changes: 1 addition & 1 deletion automatic/googlechrome/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1

$version = '120.0.6099.283'
$version = '121.0.6167.160'
if ($version -eq (Get-ChromeVersion)) {
Write-Host "Google Chrome $version is already installed."
return
Expand Down
4 changes: 2 additions & 2 deletions automatic/opera/opera.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Opera</id>
<version>106.0.4998.70</version>
<version>107.0.5045.15</version>
<title>Opera</title>
<owners>chocolatey-community</owners>
<authors>Opera</authors>
Expand All @@ -28,7 +28,7 @@ For example: `--params '"/NoAutostart /NoDesktopShortcut /NoTaskbarShortcut"'`
- **If the package is out of date please check [Version History](#versionhistory) for the latest submitted version. If you have a question, please ask it in [Chocolatey Community Package Discussions](https://github.com/chocolatey-community/chocolatey-packages/discussions) or raise an issue on the [Chocolatey Community Packages Repository](https://github.com/chocolatey-community/chocolatey-packages/issues) if you have problems with the package. Disqus comments will generally not be responded to.**
]]></description>
<summary>The Opera web browser makes the Web fast and fun, giving you a better web browser experience on any computer.</summary>
<releaseNotes>https://blogs.opera.com/desktop/changelog-for-106/#b4998.70</releaseNotes>
<releaseNotes>https://blogs.opera.com/desktop/changelog-for-107/#b5045.15</releaseNotes>
<tags>browser opera cross-platform internet admin</tags>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/opera</packageSourceUrl>
<dependencies>
Expand Down
10 changes: 5 additions & 5 deletions automatic/opera/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ $parameters += if ($pp.NoTaskbarShortcut) { " /pintotaskbar=0"; Write-Host "Oper
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
url = 'https://get.geo.opera.com/pub/opera/desktop/106.0.4998.70/win/Opera_106.0.4998.70_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera/desktop/106.0.4998.70/win/Opera_106.0.4998.70_Setup_x64.exe'
checksum = '94911493fe7182edad1c67698536c9b1d2de8592a1454f1e122722cb1ef7955c'
checksum64 = 'ee4a8a9cbe842ebd1edf6d7f7bf2b2c57fb5afff3d7f89a7923d925bd247a1f2'
url = 'https://get.geo.opera.com/pub/opera/desktop/107.0.5045.15/win/Opera_107.0.5045.15_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera/desktop/107.0.5045.15/win/Opera_107.0.5045.15_Setup_x64.exe'
checksum = 'b5aa3be833d34531fa9330ab43b8e4254cedd7dc082145dca7c2ec1b24ef8926'
checksum64 = '252bea88f4c47e7a16330150cae78929f553926ab23608323f910a1da14eb56e'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/install /silent /launchopera=0 /setdefaultbrowser=0 /allusers=1' + $parameters
validExitCodes = @(0)
}

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

0 comments on commit 53cb6f2

Please sign in to comment.