Update e-sword to version 12.1.0

This commit is contained in:
Thomas A. Christensen II 2019-11-16 22:45:27 -08:00
parent bff67d5322
commit 42bd437a1b
5 changed files with 8 additions and 48 deletions

Binary file not shown.

Binary file not shown.

View file

@ -1,20 +1,20 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Do not remove this test for UTF-8: if “Ω” doesnt appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. --> <!-- Do not remove this test for UTF-8: if “Ω” doesnt appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd"> <package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata> <metadata>
<!-- == PACKAGE SPECIFIC SECTION == --> <!-- == PACKAGE SPECIFIC SECTION == -->
<id>e-sword</id> <id>e-sword</id>
<version>12.0.1</version> <version>12.1.0</version>
<owners>millironx</owners> <owners>MillironX</owners>
<packageSourceUrl>https://github.com/millironx/chocolatey-packages</packageSourceUrl> <packageSourceUrl>https://github.com/MillironX/chocolatey-packages</packageSourceUrl>
<!-- ============================== --> <!-- ============================== -->
<!-- == SOFTWARE SPECIFIC SECTION == --> <!-- == SOFTWARE SPECIFIC SECTION == -->
<title>e-sword</title> <title>e-Sword</title>
<authors>Rick Meyers</authors> <authors>Rick Meyers</authors>
<projectUrl>https://e-sword.net/</projectUrl> <projectUrl>https://e-sword.net/</projectUrl>
<iconUrl>https://e-sword.net/images/header-logo.png</iconUrl> <iconUrl>https://www.e-sword.net/images/applogo.png</iconUrl>
<copyright>2019 Rick Meyers</copyright> <copyright>2019 Rick Meyers</copyright>
<docsUrl>https://e-sword.net/training.html</docsUrl> <docsUrl>https://e-sword.net/training.html</docsUrl>
<tags>esword bible christianity</tags> <tags>esword bible christianity</tags>

View file

@ -1,6 +1,6 @@
$ErrorActionPreference = 'Stop'; # stop on all errors $ErrorActionPreference = 'Stop'; # stop on all errors
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = 'https://e-sword.net/files/e-sword_1201_setup.exe' # download url, HTTPS preferred $url = 'https://e-sword.net/files/e-sword_1210_setup.exe' # download url, HTTPS preferred
$packageArgs = @{ $packageArgs = @{
packageName = $env:ChocolateyPackageName packageName = $env:ChocolateyPackageName
@ -8,7 +8,7 @@ $packageArgs = @{
fileType = 'EXE' fileType = 'EXE'
url = $url url = $url
softwareName = 'e-Sword' softwareName = 'e-Sword'
checksum = 'CF4C433DA2291236A803E27648C8C0B4B88DF396D9814A24FB16478B3DBEAD50' checksum = '3D3E01C1F289D4E6F4B83D1416650CCF572B615BA799CC9764D3B6259E6CEBBF'
checksumType = 'sha256' checksumType = 'sha256'
validExitCodes= @(0, 3010, 1641) validExitCodes= @(0, 3010, 1641)
silentArgs = '/s /v"/qn"' silentArgs = '/s /v"/qn"'

View file

@ -1,40 +0,0 @@

$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = 'https://e-sword.net/files/e-sword_1201_setup.exe'
$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $toolsDir
fileType = 'EXE'
url = $url
softwareName = 'e-Sword'
checksum = 'CF4C433DA2291236A803E27648C8C0B4B88DF396D9814A24FB16478B3DBEAD50'
checksumType = 'sha256'
validExitCodes= @(0, 3010, 1641)
silentArgs = '/s /v"/qn"'
}
Install-ChocolateyPackage @packageArgs