Kopano DeskApp nightly 2.1.16, closes #5079
This commit is contained in:
parent
8eaa7a0502
commit
03c3d2f159
@ -2,7 +2,7 @@
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>kopano-deskapp-nightly</id>
|
||||
<version>2.1.7</version>
|
||||
<version>2.1.16</version>
|
||||
<title>Kopano DeskApp</title>
|
||||
<authors>Kopano</authors>
|
||||
<owners>foo.li systeme + software</owners>
|
||||
@ -14,12 +14,18 @@
|
||||
|
||||
DeskApp is designed to be the bridge between WebApp and the desktop. DeskApp adds features a web application in a browser can’t, such as being set as the default email client, integrate with the file system to send any file as an attachment. Or even with the operating system so you can send emails from any office application.</description>
|
||||
<summary>Kopano DeskApp</summary>
|
||||
<releaseNotes>release 2.1.7 (2018-12-10)</releaseNotes>
|
||||
<copyright>2018 Kopano</copyright>
|
||||
<releaseNotes>release 2.1.16 (2019-01-21)</releaseNotes>
|
||||
<copyright>2019 Kopano</copyright>
|
||||
<language />
|
||||
<tags>groupware kopano deskapp nightly admin</tags>
|
||||
<dependencies>
|
||||
<dependency id="vcredist2015" version="14.0.24215.20170201" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<!-- building package on gnu/linux with
|
||||
nuget (https://packages.debian.org/stretch/nuget)
|
||||
requires adding the tools path -->
|
||||
<files>
|
||||
<file src="tools/*" target="Content/tools"/>
|
||||
</files>
|
||||
</package>
|
||||
|
@ -1,20 +1,20 @@
|
||||
# Kopano DeskApp
|
||||
# 2017-2018 foo.li systeme + software
|
||||
# 2017-2019 foo.li systeme + software
|
||||
# https://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
$packageName = 'kopano-deskapp-nightly'
|
||||
$packageSearch = 'Kopano DeskApp'
|
||||
$installerType = 'msi'
|
||||
$silentArgs = '/qb'
|
||||
$version = '2.1.7'
|
||||
$version = '2.1.16'
|
||||
$url = 'https://download.kopano.io/community/deskapp:/Windows/kopano-deskapp-' + $version + '-x86.msi'
|
||||
$url64 = 'https://download.kopano.io/community/deskapp:/Windows/kopano-deskapp-' + $version + '-x64.msi'
|
||||
$checksum = '0D3392628D81FC0A2DDAE49CD7BA115A43C8C454'
|
||||
$checksum = 'c9e4fa3fb75281b651d9eb1ccd0da2c7a2da406f'
|
||||
$checksumType = 'sha1'
|
||||
$checksum64 = 'BBB68A7F727BD91BE14B410387DE23E39B9AAB2A'
|
||||
$checksum64 = 'afd22d4c5e385306c693512e0293b48fef7986db'
|
||||
$checksumType64 = $checksumType
|
||||
|
||||
try {
|
||||
try {
|
||||
$app = Get-ItemProperty -Path @('HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*',
|
||||
'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*') `
|
||||
-ErrorAction:SilentlyContinue | Where-Object { $_.DisplayName -like $packageSearch }
|
||||
@ -28,7 +28,7 @@ try {
|
||||
Install-ChocolateyPackage $packageName $installerType $silentArgs $url $url64 `
|
||||
-checksum $checksum -checksumType $checksumType `
|
||||
-checksum64 $checksum64 -checksumType64 $checksumType64
|
||||
}
|
||||
}
|
||||
} catch {
|
||||
throw $_.Exception
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user