Skip to content

Commit

Permalink
AU: 5 updated - dropbox qbittorrent typescript vim zotero
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Mar 25, 2022
1 parent af3ff30 commit b882b17
Show file tree
Hide file tree
Showing 14 changed files with 26 additions and 26 deletions.
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": "145.3.4888-beta",
"beta": "145.3.4915-beta",
"stable": "144.4.4491"
}
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>145.3.4888-beta</version>
<version>145.3.4915-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 = '145.3.4888'
$version = '145.3.4915'

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%20145.3.4888%20Offline%20Installer.exe'
checksum = '0ecf2f59ad7ab07fca63159fb72bc917659c508021853a942eade109f55ffc28'
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20145.3.4915%20Offline%20Installer.exe'
checksum = '981f72b3d8aa6cc5d7d2d3d96276e9d9637657d86316560507c30777a50c6c18'
fileType = 'exe'
checksumType = 'sha256'
silentArgs = '/s'
Expand Down
2 changes: 1 addition & 1 deletion automatic/qbittorrent/qbittorrent.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>qbittorrent</id>
<title>qBittorrent</title>
<version>4.4.1</version>
<version>4.4.2</version>
<authors>Christophe Dumez</authors>
<owners>chocolatey-community,nconrads</owners>
<summary>qBittorrent is a free software cross-platform BitTorrent client GUI written with Qt4.</summary>
Expand Down
8 changes: 4 additions & 4 deletions automatic/qbittorrent/tools/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ The installer have been downloaded from the alternative sourceforge mirror liste
and can be verified like this:

1. Download the following installers:
32-Bit: <https://sourceforge.net/projects/qbittorrent/files/qbittorrent-win32/qbittorrent-4.4.1/qbittorrent_4.4.1_setup.exe/download>
64-Bit: <https://sourceforge.net/projects/qbittorrent/files/qbittorrent-win32/qbittorrent-4.4.1/qbittorrent_4.4.1_x64_setup.exe/download>
32-Bit: <https://sourceforge.net/projects/qbittorrent/files/qbittorrent-win32/qbittorrent-4.4.2/qbittorrent_4.4.2_setup.exe/download>
64-Bit: <https://sourceforge.net/projects/qbittorrent/files/qbittorrent-win32/qbittorrent-4.4.2/qbittorrent_4.4.2_x64_setup.exe/download>
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: 5A03DD0B65F84BC7FF11A36361D043016531DC3A4FE395EA89873ED2B5E17C0D
checksum64: D75395193AFCD161281A24B01EF523AA012B8CB2C116579081D7C6664425ACFE
checksum32: F1D93CE8857BD6C85EEB2E65F1A68E5BEB8BE47743BB3FC1FD4B3BC9DDAFA946
checksum64: 05CBCC72E6E2CCEE0B6CFA2DD508C3B9A2C1EAC0568D51F042C59612E72EC1D9

File 'LICENSE.txt' is obtained from <https://github.com/qbittorrent/qBittorrent/blob/0070dcf5509e43c2c3457c4e3f1ed0b1ae087e36/COPYING>
4 changes: 2 additions & 2 deletions automatic/qbittorrent/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ $packageArgs = @{
packageName = 'qbittorrent'
fileType = 'exe'
softwareName = 'qBittorrent*'
file = "$toolsDir\qbittorrent_4.4.1_setup.exe"
file64 = "$toolsDir\qbittorrent_4.4.1_x64_setup.exe"
file = "$toolsDir\qbittorrent_4.4.2_setup.exe"
file64 = "$toolsDir\qbittorrent_4.4.2_x64_setup.exe"
silentArgs = '/S'
validExitCodes = @(0, 1223)
}
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.2"
Start-ChocolateyProcessAsAdmin $npmPath -statements install,"-g","typescript@4.6.3"
4 changes: 2 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.2</version>
<version>4.6.3</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/typescript</packageSourceUrl>
<owners>chocolatey-community, Microsoft</owners>
<title>TypeScript</title>
Expand All @@ -23,7 +23,7 @@
This package installs the command-line TypeScript compiler as a Node.js package.
]]></description>
<releaseNotes>https://github.com/Microsoft/TypeScript/issues?q=is%3Aissue+milestone%3A%22TypeScript+4.6.2%22+label%3A%22fixed%22+</releaseNotes>
<releaseNotes>https://github.com/Microsoft/TypeScript/issues?q=is%3Aissue+milestone%3A%22TypeScript+4.6.3%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.4616/gvim_8.2.4616_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.4616/gvim_8.2.4616_x64.zip>
32-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.4621/gvim_8.2.4621_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.4621/gvim_8.2.4621_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: 0121729161B6B30E0BF72B219B23ED294606FEF5886F126193B38741D4311784
checksum64: 8F971819FBDD85AC0D988B342493E37846482426296F5B9C43875AC22F40199F
checksum32: 7715DC1FBCB2B7CD6A32F849AD900ED3847CDD1CC93817A8451D3878A0B490D0
checksum64: EEF3A8A3A2382C05FCABBA28DC3F51D5C55583321E6E30392FB6817B08B56FA7
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.4616_x86.zip"
file64 = "$toolsDir\gvim_8.2.4616_x64.zip"
file = "$toolsDir\gvim_8.2.4621_x86.zip"
file64 = "$toolsDir\gvim_8.2.4621_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.4616</version>
<version>8.2.4621</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
4 changes: 2 additions & 2 deletions automatic/zotero/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ The embedded software have been downloaded from the listed download
location on <https://www.zotero.org/download/> (The listed url gets redirected to another one)
and can be verified by doing the following:

1. Download the following <https://download.zotero.org/client/release/6.0.2/Zotero-6.0.2_setup.exe>
1. Download the following <https://download.zotero.org/client/release/6.0.3/Zotero-6.0.3_setup.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
checksum: CD1DE31554C0F13B052A803DDC13D7E53ED6CE64617C4D47DDF00DCD4C33A558
checksum: 5FFE268DE4BC06615601AB70F68837FB8BBC61440E9A879912EDCE3D836EFE8B

The file 'LICENSE.txt' has been obtained from <https://github.com/zotero/zotero/blob/929288f9811a5026053ae154ca08cc4a9da13c52/COPYING>
2 changes: 1 addition & 1 deletion automatic/zotero/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ $packageArgs = @{
silentArgs = '/S'
validExitCodes = @(0)
softwareName = 'Zotero'
file = "$toolsPath\Zotero-6.0.2_setup.exe"
file = "$toolsPath\Zotero-6.0.3_setup.exe"
}

Install-ChocolateyInstallPackage @packageArgs
Expand Down
2 changes: 1 addition & 1 deletion automatic/zotero/zotero.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<id>zotero</id>
<title>Zotero</title>
<owners>chocolatey-community</owners>
<version>6.0.2</version>
<version>6.0.3</version>
<authors>Center for History and New Media, et. al.</authors>
<summary>Zotero [zoh-TAIR-oh] is a free, easy-to-use tool to help you collect, organize, cite, and share your research sources. </summary>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-packages@53607633ce049d5d75ac668f4408faaeced36bc3/icons/zotero.png</iconUrl>
Expand Down

0 comments on commit b882b17

Please sign in to comment.