Joplin 1.0.106

This commit is contained in:
Peter V. Beck 2018-09-11 00:19:43 +02:00
parent ec97908991
commit 0e90f95387
2 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>joplin</id>
<version>1.0.104</version>
<version>1.0.106</version>
<title>Joplin</title>
<authors>Laurent Cozic</authors>
<owners>foo.li systeme + software</owners>
@ -12,8 +12,8 @@
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>a note taking and to-do application with synchronization capabilities for Windows, macOS, Linux, Android and iOS. </description>
<summary>Joplin Notes and To-Do</summary>
<releaseNotes>https://github.com/laurent22/joplin/releases/tag/v1.0.104</releaseNotes>
<copyright>https://github.com/laurent22/joplin/blob/master/LICENSE</copyright>
<releaseNotes>https://github.com/laurent22/joplin/releases/tag/v1.0.106</releaseNotes>
<copyright>Copyright (c) 2016-2018 Laurent Cozic</copyright>
<language />
<tags>notes todo admin</tags>
</metadata>

View File

@ -5,9 +5,9 @@ $packageName = 'joplin'
$packageSearch = 'Joplin*'
$installerType = 'exe'
$silentArgs = '/ALLUSERS=1 /S'
$version = '1.0.104'
$version = '1.0.106'
$url = 'https://github.com/laurent22/joplin/releases/download/v' + $version + '/Joplin-Setup-' + $version + '.exe'
$checksum = '1D8C3F34734723A366C2A779B7722F4934E79373'
$checksum = '4B29C616F20A4827865F085DED8A8ABE7EECA5A9'
$checksumType = 'sha1'
Install-ChocolateyPackage $packageName $installerType $silentArgs $url `