Skip to content

Commit

Permalink
AU: 4 updated - chromium notepadplusplus notepadplusplus.commandline …
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Oct 1, 2020
1 parent 1deb974 commit 2384b9f
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion automatic/chromium/chromium.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"snapshots": "87.0.4279.0-snapshots",
"snapshots": "87.0.4280.0-snapshots",
"stable": "85.0.4183.121"
}
2 changes: 1 addition & 1 deletion automatic/chromium/chromium.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>chromium</id>
<version>87.0.4279.0-snapshots</version>
<version>87.0.4280.0-snapshots</version>
<title>Chromium Snapshots</title>
<owners>chocolatey-community</owners>
<authors>The Chromium Authors</authors>
Expand Down
8 changes: 4 additions & 4 deletions automatic/chromium/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ location on <https://github.com/henrypp/chromium/releases/> (the listed mirrors
and can be verified by doing the following:

1. Download the following:
32-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win/811926/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/811959/mini_installer.exe>
32-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win/812553/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/812552/mini_installer.exe>
2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
- Use chocolatey utility 'checksum.exe'
3. The checksums should match the following:

checksum type: sha256
checksum32: 1C7D7055F7810FB4CFD37C0088D579D5430A7E00FDBAE6F2E1B3A542BA49F14A
checksum64: 3186AD1C3EBC15419BADEAB40DE2EF027BCD9BA342E5F1CC16ACDA4B41323516
checksum32: F0FADB1492D551028836D4D5D2E47264067F7E6C4F239FDF8137CB6870FA5E48
checksum64: 6F05C0D5ED88DAAC74EE0398822610D6D125C6E89F68539D482C220AE4F8F12C

The file 'LICENSE.txt' has been obtained from <https://chromium.googlesource.com/chromium/src.git/+/master/LICENSE>
2 changes: 1 addition & 1 deletion automatic/chromium/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$scriptDir=$toolsDir = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
. (Join-Path $scriptDir 'helper.ps1')

$version = "87.0.4279.0-snapshots"
$version = "87.0.4280.0-snapshots"
$hive = "hkcu"
$chromium_string = "\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Chromium"
$Chromium = $hive + ":" + $chromium_string
Expand Down
8 changes: 4 additions & 4 deletions automatic/notepadplusplus.commandline/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ location on <>
and can be verified by doing the following:

1. Download the following:
32-Bit software: <http://download.notepad-plus-plus.org/repository/7.x/7.8.9/npp.7.8.9.bin.7z>
64-Bit software: <http://download.notepad-plus-plus.org/repository/7.x/7.8.9/npp.7.8.9.bin.x64.7z>
32-Bit software: <https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v7.9/npp.7.9.portable.7z>
64-Bit software: <https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v7.9/npp.7.9.portable.x64.7z>
2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
- Use chocolatey utility 'checksum.exe'
3. The checksums should match the following:

checksum type: sha256
checksum32: 3EB9B47AF471C0250010E4BC5D47D71161F7116310F072472F71CA97476744C8
checksum64: C6B437980CE8424FE61FE991D473FA16C354208ADDC3188B28917A02243BB56D
checksum32: 98B7DE202A8046BE4F44BC149EBDB952CC76430AC2BD5511F84A2AA746E10E79
checksum64: 50DE93F2EA36EA68C4C561889EC21EE89F59B5628BC104F8138D74C3FEFA0387

The file 'LICENSE.txt' has been obtained from <https://github.com/notepad-plus-plus/notepad-plus-plus/blob/f7ade4739ba8d53e87b5cc50bbed1bb472f5e68c/LICENSE>
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>notepadplusplus.commandline</id>
<title>Notepad++ (Portable, CommandLine)</title>
<version>7.8.9</version>
<version>7.9</version>
<authors>Don Ho</authors>
<owners>chocolatey-community</owners>
<summary>Notepad++ is a free (as in "free speech" and also as in "free beer") source code editor and Notepad replacement that supports several languages.</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ $toolsPath = Split-Path -parent $MyInvocation.MyCommand.Definition

$packageArgs = @{
packageName = $env:ChocolateyPackageName
file = "$toolsPath\npp.7.8.9.bin.7z"
file64 = "$toolsPath\npp.7.8.9.bin.x64.7z"
file = "$toolsPath\npp.7.9.portable.7z"
file64 = "$toolsPath\npp.7.9.portable.x64.7z"
destination = $toolsPath
}

Expand Down
8 changes: 4 additions & 4 deletions automatic/notepadplusplus.install/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ location on <>
and can be verified by doing the following:

1. Download the following:
32-Bit software: <http://download.notepad-plus-plus.org/repository/7.x/7.8.9/npp.7.8.9.Installer.exe>
64-Bit software: <http://download.notepad-plus-plus.org/repository/7.x/7.8.9/npp.7.8.9.Installer.x64.exe>
32-Bit software: <https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v7.9/npp.7.9.Installer.exe>
64-Bit software: <https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v7.9/npp.7.9.Installer.x64.exe>
2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
- Use chocolatey utility 'checksum.exe'
3. The checksums should match the following:

checksum type: sha256
checksum32: E7585DF965054954D8D786F62F316C06739A44E7DD6BFE0EFF79596E3979A790
checksum64: E8E866ACA5672E91446CE9D965250317E95D2A3D238EA32FA2C378CD315CB85F
checksum32: 4747B67F7E2CA69B3EE829FA22B01FC61F500FBA530FF928E31A3D5C62BE7FFA
checksum64: D5F578C41CA34862FC7F1628CF166F2D5843EB15FDC83DA6CFC0909CB437E6FE

The file 'LICENSE.txt' has been obtained from <https://github.com/notepad-plus-plus/notepad-plus-plus/blob/f7ade4739ba8d53e87b5cc50bbed1bb472f5e68c/LICENSE>
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>notepadplusplus.install</id>
<title>Notepad++ (Install)</title>
<version>7.8.9</version>
<version>7.9</version>
<authors>Don Ho</authors>
<owners>chocolatey-community</owners>
<summary>Notepad++ is a free (as in "free speech" and also as in "free beer") source code editor and Notepad replacement that supports several languages.</summary>
Expand Down
4 changes: 2 additions & 2 deletions automatic/notepadplusplus.install/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ $toolsPath = Split-Path -parent $MyInvocation.MyCommand.Definition
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
file = "$toolsPath\npp.7.8.9.Installer.exe"
file64 = "$toolsPath\npp.7.8.9.Installer.x64.exe"
file = "$toolsPath\npp.7.9.Installer.exe"
file64 = "$toolsPath\npp.7.9.Installer.x64.exe"
softwareName = 'Notepad\+\+*'
silentArgs = '/S'
validExitCodes = @(0)
Expand Down
4 changes: 2 additions & 2 deletions automatic/notepadplusplus/notepadplusplus.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>notepadplusplus</id>
<title>Notepad++</title>
<version>7.8.9</version>
<version>7.9</version>
<authors>Don Ho</authors>
<owners>chocolatey-community</owners>
<summary>Notepad++ is a free (as in "free speech" and also as in "free beer") source code editor and Notepad replacement that supports several languages.</summary>
Expand Down Expand Up @@ -44,7 +44,7 @@ Based on the powerful editing component Scintilla, Notepad++ is written in C++ a
<mailingListUrl>https://notepad-plus-plus.org/community/</mailingListUrl>
<bugTrackerUrl>https://github.com/notepad-plus-plus/notepad-plus-plus/issues</bugTrackerUrl>
<dependencies>
<dependency id="notepadplusplus.install" version="[7.8.9]" />
<dependency id="notepadplusplus.install" version="[7.9]" />
</dependencies>
<licenseUrl>https://github.com/notepad-plus-plus/notepad-plus-plus/blob/master/LICENSE</licenseUrl>
</metadata>
Expand Down

0 comments on commit 2384b9f

Please sign in to comment.