Skip to content

Commit

Permalink
AU: 2 updated - opera-developer zettlr
Browse files Browse the repository at this point in the history
  • Loading branch information
mkevenaar committed Oct 18, 2023
1 parent 83b4ddc commit afb5a65
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions automatic/opera-developer/opera-developer.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>105.0.4950.0</version>
<version>105.0.4957.0</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 developer cross-platform internet admin</tags>
<releaseNotes>https://blogs.opera.com/desktop/changelog-for-105/#b4950.0</releaseNotes>
<releaseNotes>https://blogs.opera.com/desktop/changelog-for-105/#b4957.0</releaseNotes>
<licenseUrl>http://www.operasoftware.com/eula/browser</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<packageSourceUrl>https://github.com/mkevenaar/chocolatey-packages/tree/master/automatic/opera-developer</packageSourceUrl>
Expand Down
10 changes: 5 additions & 5 deletions automatic/opera-developer/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-developer/105.0.4950.0/win/Opera_Developer_105.0.4950.0_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera-developer/105.0.4950.0/win/Opera_Developer_105.0.4950.0_Setup_x64.exe'
checksum = 'cd5db08c11531e16dacef7a98822d5cbeb95582c65af1700f218e9525b591e83'
checksum64 = 'b7e4bc5f7ca282d058810f2ae2acce19c7dc92e430aeb581a8e4e1abf5c632cb'
url = 'https://get.geo.opera.com/pub/opera-developer/105.0.4957.0/win/Opera_Developer_105.0.4957.0_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera-developer/105.0.4957.0/win/Opera_Developer_105.0.4957.0_Setup_x64.exe'
checksum = '9ed08671db82f68ba7bfae42cb19d1dbf23b5f010e02ac7cbb3550102ff34ddd'
checksum64 = '07f68ba0b847bdddb5d5ef8f8c35795cc888c0d3bbfd9e6540a57128aa6222cf'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/install /silent /launchopera 0 /setdefaultbrowser 0' + $parameters
validExitCodes = @(0)
}

$version = '105.0.4950.0'
$version = '105.0.4957.0'
if (!$Env:ChocolateyForce -and (IsVersionAlreadyInstalled $version)) {
Write-Output "Opera $version is already installed. Skipping download and installation."
} else {
Expand Down
6 changes: 3 additions & 3 deletions automatic/zettlr/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

The installer have been downloaded from their official download link listed on <https://github.com/Zettlr/Zettlr/releases/latest>
The installer have been downloaded from their official download link listed on <https://api.github.com/repos/Zettlr/Zettlr/releases/latest>
and can be verified like this:

1. Download the following installers:
32-Bit: <https://github.com/Zettlr/Zettlr/releases/download/v2.3.0/Zettlr-2.3.0-x64.exe>
32-Bit: <https://github.com/Zettlr/Zettlr/releases/download/v3.0.2/Zettlr-3.0.2-x64.exe>
2. You can use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'

checksum type: sha256
checksum32: D7D6EC230F16BC2D57433325EEB2E883F541B634E1E76BAA8195E35E6B62A9CD
checksum32: 16F8AC57EA5925D0C79140D53C3FA475D045B433B1F89DD62192B9E6E82E036F

File 'LICENSE.txt' is obtained from <https://github.com/Zettlr/Zettlr/blob/master/LICENSE>
2 changes: 1 addition & 1 deletion automatic/zettlr/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
file = "$toolsDir\Zettlr-2.3.0-x64.exe"
file = "$toolsDir\Zettlr-3.0.2-x64.exe"
softwareName = 'Zettlr*'
silentArgs = "/S"
validExitCodes= @(0)
Expand Down
2 changes: 1 addition & 1 deletion automatic/zettlr/zettlr.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>2.3.0</version>
<version>3.0.2</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

0 comments on commit afb5a65

Please sign in to comment.