Skip to content

Commit

Permalink
AU: 6 updated - chromium dropbox GoogleChrome smartftp typescript vim
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed May 25, 2022
1 parent 80dc5a0 commit 1612228
Show file tree
Hide file tree
Showing 16 changed files with 32 additions and 28 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": "104.0.5082.0-snapshots",
"snapshots": "104.0.5083.0-snapshots",
"stable": "101.0.4951.67"
}
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>104.0.5082.0-snapshots</version>
<version>104.0.5083.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/1006802/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1006812/mini_installer.exe>
32-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win/1007043/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1007011/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: 50DFA9FC567E1B3CB88330A07EA5C5023B9F5B3F6BE6A808F821F65259729266
checksum64: 9D287D29FA1BE0817BDFA3AD6ED40F3B946D2ABED2B5A3801DB65315C918073D
checksum32: 1DF1AA7E7C8EF497D11ABDE266B5EDB574624238D56E7391BAEC224C7F95E681
checksum64: 5BB7BDBBD947C0DC4C3E762BA5DEA47469632EE2D45F24F958E952CE1D7C42F3

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 = "104.0.5082.0-snapshots"
$version = "104.0.5083.0-snapshots"
$hive = "hkcu"
$chromium_string = "\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Chromium"
$Chromium = $hive + ":" + $chromium_string
Expand Down
2 changes: 1 addition & 1 deletion automatic/dropbox/dropbox.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"beta": "149.3.4562-beta",
"beta": "150.3.4929-beta",
"stable": "149.4.4568"
}
2 changes: 1 addition & 1 deletion automatic/dropbox/dropbox.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>dropbox</id>
<version>149.4.4568</version>
<version>150.3.4929-beta</version>
<title>Dropbox</title>
<authors>Dropbox</authors>
<owners>chocolatey-community,ferventcoder,the-running-dev</owners>
Expand Down
6 changes: 3 additions & 3 deletions automatic/dropbox/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if (!$PSScriptRoot) {
}
. "$PSScriptRoot\helper.ps1"

$version = '149.4.4568'
$version = '150.3.4929'

if (!(IsVersionAlreadyInstalled $version)) {
$stop_dropbox = if (Get-Process -Name Dropbox -ErrorAction SilentlyContinue) { $false } else { $true }
Expand All @@ -13,8 +13,8 @@ if (!(IsVersionAlreadyInstalled $version)) {
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = "Dropbox"
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20149.4.4568%20Offline%20Installer.exe'
checksum = '981d145deb395498bc6b80fb161f40f421b3d117140350afc0f56d6408b524ef'
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20150.3.4929%20Offline%20Installer.exe'
checksum = '91c07c0684d3f792597dbb100405f34c0ada9fa17a10c238fb3cf8b44b88072c'
fileType = 'exe'
checksumType = 'sha256'
silentArgs = '/s'
Expand Down
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>101.0.4951.67</version>
<version>102.0.5005.63</version>
<title>Google Chrome</title>
<owners>chocolatey-community</owners>
<authors>Google Inc.</authors>
Expand Down
6 changes: 3 additions & 3 deletions 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 = '101.0.4951.67'
$version = '102.0.5005.63'
if ($version -eq (Get-ChromeVersion)) {
Write-Host "Google Chrome $version is already installed."
return
Expand All @@ -12,8 +12,8 @@ $packageArgs = @{
fileType = 'MSI'
url = 'https://dl.google.com/tag/s/dl/chrome/install/googlechromestandaloneenterprise.msi'
url64bit = 'https://dl.google.com/tag/s/dl/chrome/install/googlechromestandaloneenterprise64.msi'
checksum = 'fd8052f4119d8709154f3f4becde664a7f7a60d9a9b5d12bb57acb026009d762'
checksum64 = 'bbfbe464ee43a9e5b0214f0f777550e684b9ee6e8257898f899092d9aef2bd5e'
checksum = 'fcdc66fd0f6d5eb9f9110aa6ea45b87dfc32e6ffb3f3672d959ddf97819e7630'
checksum64 = '654582e2156a037e83ab9eddf72f6b7c132cadb81bb4aecdddb071cfdea8bccf'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = "/quiet /norestart /l*v `"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
Expand Down
2 changes: 1 addition & 1 deletion automatic/smartftp/smartftp.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<id>smartftp</id>
<title>SmartFTP</title>
<owners>chocolatey-community</owners>
<version>10.0.2972.0</version>
<version>10.0.2973.0</version>
<authors>SmartSoft</authors>
<summary>FTP, FTPS, SFTP, HTTP, Amazon S3, WebDAV, Google Drive, Google Cloud Storage, Microsoft OneDrive, Telnet, Terminal client.</summary>
<description><![CDATA[SmartFTP is a fast and reliable FTP, FTPS, SFTP, HTTP, Amazon S3, WebDAV, Google Drive, Google Cloud Storage, Microsoft OneDrive, Backblaze B2, Telnet, Terminal client with lots of features and a modern user interface.
Expand Down
2 changes: 1 addition & 1 deletion automatic/smartftp/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ $packageArgs = @{
url = 'https://www.smartftp.com/get/SmartFTP86.msi'
url64bit = 'https://www.smartftp.com/get/SmartFTP64.msi'
checksum = '46365c1e6634e5327f06a663199ca587e3a5f547ee2d45f35708bc956e4d2a03'
checksum64 = '257b966f70bd3538426a12d510855f5a931c9db157ddac1b5cc18fb01d76f807'
checksum64 = '3ce8879002b8a4e50970e5b2690b6c23f8804e4c2907e232749785c95a4e970f'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/quiet'
Expand Down
2 changes: 1 addition & 1 deletion automatic/typescript/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Update-SessionEnvironment

$npmPath = Get-Command npm | ForEach-Object { $_.Path }
"Installing $env:chocolateyPackageName using nodejs..."
Start-ChocolateyProcessAsAdmin $npmPath -statements install,"-g","typescript@4.6.4"
Start-ChocolateyProcessAsAdmin $npmPath -statements install,"-g","typescript@4.7.2"
8 changes: 6 additions & 2 deletions automatic/typescript/typescript.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>typescript</id>
<version>4.6.4</version>
<version>4.7.2</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/typescript</packageSourceUrl>
<owners>chocolatey-community, Microsoft</owners>
<title>TypeScript</title>
Expand All @@ -22,8 +22,12 @@
<description><![CDATA[[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript.
This package installs the command-line TypeScript compiler as a Node.js package.
## Notes
- **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>
<releaseNotes>https://github.com/Microsoft/TypeScript/issues?q=is%3Aissue+milestone%3A%22TypeScript+4.6.4%22+label%3A%22fixed%22+</releaseNotes>
<releaseNotes>https://github.com/Microsoft/TypeScript/issues?q=is%3Aissue+milestone%3A%22TypeScript+4.7.2%22+label%3A%22fixed%22+</releaseNotes>
<dependencies>
<dependency id="nodejs-lts" version="6.9.2" />
</dependencies>
Expand Down
8 changes: 4 additions & 4 deletions automatic/vim/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ in verifying that this package's contents are trustworthy.
The embedded software have been downloaded from GitHub and can be verified like this:

1. Download the following zips:
32-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.5010/gvim_8.2.5010_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.5010/gvim_8.2.5010_x64.zip>
32-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.5014/gvim_8.2.5014_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.5014/gvim_8.2.5014_x64.zip>
2. You can use one of the following methods to obtain the SHA256 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'

checksum32: E015DB1452BBE514E5C545150281BE33570C83CEB11F55241D7AAADA0B87D672
checksum64: 185B674A9E8E7FB98E306D1990EDF2E7370453FC52331598318761019E56430D
checksum32: 2DCEABDE1FBEA22A65A3FC498F885B1B47AE64B0A94A1B38D04D65EA6AA6585B
checksum64: D24C759EA3B65FBA767B7CAE7BAC3444B3307F1A718CA2D455045AEBA311EAC4
4 changes: 2 additions & 2 deletions automatic/vim/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ $installDir = Get-InstallDir
$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $installDir
file = "$toolsDir\gvim_8.2.5010_x86.zip"
file64 = "$toolsDir\gvim_8.2.5010_x64.zip"
file = "$toolsDir\gvim_8.2.5014_x86.zip"
file64 = "$toolsDir\gvim_8.2.5014_x64.zip"
}

$installArgs = @{
Expand Down
2 changes: 1 addition & 1 deletion automatic/vim/vim.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>vim</id>
<title>Vim</title>
<version>8.2.5010</version>
<version>8.2.5014</version>
<authors>Bram Moolenaar, Vim Community</authors>
<owners>chocolatey-community, Rob Reynolds, matsuhav</owners>
<summary>Vim is an advanced text editor that seeks to provide the power of the de-facto Unix editor 'Vi', with a more complete feature set. It's useful whether you're already using vi or using a different editor.</summary>
Expand Down

0 comments on commit 1612228

Please sign in to comment.