Skip to content

Commit

Permalink
AU: 5 updated - dropbox git git.install git.portable sourcetree
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
Chocolatey Community committed Feb 24, 2024
1 parent 1bc098f commit 181c0ec
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 24 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": "194.3.6189-beta",
"beta": "194.3.6224-beta",
"stable": "193.4.5594"
}
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>194.3.6189-beta</version>
<version>194.3.6224-beta</version>
<title>Dropbox</title>
<authors>Dropbox</authors>
<owners>chocolatey-community,ferventcoder,the-running-dev</owners>
Expand Down
10 changes: 5 additions & 5 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 = '194.3.6189'
$version = '194.3.6224'

if (!(IsVersionAlreadyInstalled $version)) {
$stop_dropbox = if (Get-Process -Name Dropbox -ErrorAction SilentlyContinue) { $false } else { $true }
Expand All @@ -13,10 +13,10 @@ if (!(IsVersionAlreadyInstalled $version)) {
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = "Dropbox"
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20194.3.6189%20Offline%20Installer.x86.exe'
url64 = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20194.3.6189%20Offline%20Installer.x64.exe'
checksum = '5b41c6b42e7e71b4b8c7ead29ca3e9a22a2708627a0f50e2a36d33f5a99c7e36'
checksum64 = 'df4462a63c7272688eab06f6678c62bd0c3e146149da9989ee64b03c9d72c0d1'
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20194.3.6224%20Offline%20Installer.x86.exe'
url64 = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20194.3.6224%20Offline%20Installer.x64.exe'
checksum = '078eaf047e2feddb75d40ba20b58392fd80d1b0fb5ff50161e4b5b8223c1db89'
checksum64 = '4f5255dec56646f4d688d37a34794c7adb93be59c5537cec9e00eb1d037a69fe'
fileType = 'exe'
checksumType = 'sha256'
checksumType64 = 'sha256'
Expand Down
2 changes: 1 addition & 1 deletion automatic/git.install/git.install.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>git.install</id>
<title>Git (Install)</title>
<version>2.43.0</version>
<version>2.44.0</version>
<authors>The Git Development Community</authors>
<owners>chocolatey-community</owners>
<summary>Git for Windows offers a native set of tools that bring the full feature set of the Git SCM to Windows</summary>
Expand Down
8 changes: 4 additions & 4 deletions automatic/git.install/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ in verifying that this package's contents are trustworthy.
The installer has been downloaded from GitHub and can be verified like this:

1. Download the following installers:
32-Bit: <https://github.com/git-for-windows/git/releases/download/v2.43.0.windows.1/Git-2.43.0-32-bit.exe>
64-Bit: <https://github.com/git-for-windows/git/releases/download/v2.43.0.windows.1/Git-2.43.0-64-bit.exe>
32-Bit: <https://github.com/git-for-windows/git/releases/download/v2.44.0.windows.1/Git-2.44.0-32-bit.exe>
64-Bit: <https://github.com/git-for-windows/git/releases/download/v2.44.0.windows.1/Git-2.44.0-64-bit.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:
checksum32: AEE1587A4004C6A57B614C81FDC2AE1FA33DE0DAAF6B650CF6467E4253E024A9
checksum64: A6058D7C4C16BFA5BCD6FDE051A92DE8C68535FD7EBADE55FC0AB1C41BE3C8D5
checksum32: 5BA23D73E861D872416175AC6A05304875D6EC420C08D0217329580CA1EA0FFF
checksum64: 914FFC96CEE0631D09049B9D87D4CD8AC9C98EAD9A9F9A094D3341348324A9EC

File 'LICENSE.txt' is obtained from <https://github.com/git-for-windows/git/blob/703601d6780c32d33dadf19b2b367f2f79e1e34c/COPYING>
4 changes: 2 additions & 2 deletions automatic/git.install/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ Stop-GitSSHAgent
# Workaround for chocolateyBeforeModify.ps1 being bypassed if upgrading via metapackage (chocolatey/choco#1092)
Stop-GitGPGAgent

$fileName32 = 'Git-2.43.0-32-bit.exe'
$fileName64 = 'Git-2.43.0-64-bit.exe'
$fileName32 = 'Git-2.44.0-32-bit.exe'
$fileName64 = 'Git-2.44.0-64-bit.exe'
$silentArgs = "/VERYSILENT", "/SUPPRESSMSGBOXES", "/NORESTART", "/NOCANCEL", "/SP-", "/LOG", (Get-InstallComponents $pp)
$silentArgs += Get-InstallOptions $pp

Expand Down
2 changes: 1 addition & 1 deletion automatic/git.portable/git.portable.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>git.portable</id>
<title>Git (Portable)</title>
<version>2.43.0</version>
<version>2.44.0</version>
<authors>The Git Development Community</authors>
<owners>chocolatey-community</owners>
<summary>Git for Windows offers a native set of tools that bring the full feature set of the Git SCM to Windows</summary>
Expand Down
8 changes: 4 additions & 4 deletions automatic/git.portable/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ in verifying that this package's contents are trustworthy.
The installer has been downloaded from GitHub and can be verified like this:

1. Download the following installers:
32-Bit: <https://github.com/git-for-windows/git/releases/download/v2.43.0.windows.1/PortableGit-2.43.0-32-bit.7z.exe>
64-Bit: <https://github.com/git-for-windows/git/releases/download/v2.43.0.windows.1/PortableGit-2.43.0-64-bit.7z.exe>
32-Bit: <https://github.com/git-for-windows/git/releases/download/v2.44.0.windows.1/PortableGit-2.44.0-32-bit.7z.exe>
64-Bit: <https://github.com/git-for-windows/git/releases/download/v2.44.0.windows.1/PortableGit-2.44.0-64-bit.7z.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:
checksum32: C33F9AA7BF9C59E24DB71B65E9D75B1E8532562175AFEF380119AA1EEE90AFD1
checksum64: C76216D032685FA972D129ECA30F8C9FB957EB9F46CCBCE954E70E07D6211961
checksum32: E70C80672069907961F6DB68B0DB5E14EA0447F39C74CFD3C385882F3B934C6F
checksum64: 1FC64CA91B9B475AB0ADA72C9F7B3ADDBE69A6C8F520BE31425CF21841CCA369

File 'LICENSE.txt' is obtained from <https://github.com/git-for-windows/git/blob/703601d6780c32d33dadf19b2b367f2f79e1e34c/COPYING>
4 changes: 2 additions & 2 deletions automatic/git/git.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>git</id>
<title>Git</title>
<version>2.43.0</version>
<version>2.44.0</version>
<authors>The Git Development Community</authors>
<owners>chocolatey-community</owners>
<summary>Git for Windows offers a native set of tools that bring the full feature set of the Git SCM to Windows</summary>
Expand Down Expand Up @@ -39,7 +39,7 @@ Example for passing in package parameters:
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-packages@10a8d98b2f320b565fa5349a4352e79666db71ff/icons/git.svg</iconUrl>
<dependencies>
<dependency id="git.install" version="[2.43.0]" />
<dependency id="git.install" version="[2.44.0]" />
</dependencies>
</metadata>
<files>
Expand Down
2 changes: 1 addition & 1 deletion automatic/sourcetree/sourcetree.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>sourcetree</id>
<title>Sourcetree for Windows Enterprise</title>
<version>3.4.16</version>
<version>3.4.17</version>
<authors>Atlassian</authors>
<owners>chocolatey-community</owners>
<projectUrl>http://www.sourcetreeapp.com</projectUrl>
Expand Down
4 changes: 2 additions & 2 deletions automatic/sourcetree/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ $packageArgs = @{
fileType = 'msi'
silentArgs = "/qn /norestart ACCEPTEULA=1 /l*v `"$env:TEMP\$env:ChocolateyPackageName.$env:ChocolateyPackageVersion.log`""
validExitCodes= @(0,1641,3010)
url = 'https://product-downloads.atlassian.com/software/sourcetree/windows/ga/SourcetreeEnterpriseSetup_3.4.16.msi'
checksum = '5cf870928372e04415ec86a573fa416f1d6af0830cd15db814cc962a93d1de9e'
url = 'https://product-downloads.atlassian.com/software/sourcetree/windows/ga/SourcetreeEnterpriseSetup_3.4.17.msi'
checksum = 'd927b4e425c6b7abc1a2b685d5dd3a110613f727038cbf172c7a6d183b4c290d'
checksumType = 'sha256'
url64bit = ''
checksum64 = ''
Expand Down

0 comments on commit 181c0ec

Please sign in to comment.