chore: Update e-sword to v14.1.0

This commit is contained in:
Thomas A. Christensen II 2024-10-03 07:37:54 -07:00
parent fcb9177909
commit 6d788e3553
4 changed files with 8 additions and 8 deletions

Binary file not shown.

Binary file not shown.

View file

@ -4,7 +4,7 @@
<metadata> <metadata>
<!-- == PACKAGE SPECIFIC SECTION == --> <!-- == PACKAGE SPECIFIC SECTION == -->
<id>e-sword</id> <id>e-sword</id>
<version>13.0.0</version> <version>14.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>
@ -15,15 +15,15 @@
<authors>Rick Meyers</authors> <authors>Rick Meyers</authors>
<projectUrl>https://e-sword.net/</projectUrl> <projectUrl>https://e-sword.net/</projectUrl>
<iconUrl>https://www.e-sword.net/images/applogo.png</iconUrl> <iconUrl>https://www.e-sword.net/images/applogo.png</iconUrl>
<copyright>2021 Rick Meyers</copyright> <copyright>2024 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>
<summary>The Sword of the LORD with an electronic edge</summary> <summary>The Sword of the LORD with an electronic edge</summary>
<description>e-Sword is a fast and effective way to study the Bible. e-Sword is feature rich and user friendly with more capabilities than you would expect in a free Bible study app.</description> <description>e-Sword is a fast and effective way to study the Bible. e-Sword is feature rich and user friendly with more capabilities than you would expect in a free Bible study app.</description>
<releaseNotes> <releaseNotes>
New **Audio Bibles** feature! Listen to the Bible being read to you in dramatic fashion. Play/Pause button is on the Bible view's toolbar. Audio is available for KJV, KJV-BRG, ESV, CEV, WEB, NRSV and Spanish PDT Bibles. New **Convert to Reference Book** feature to turn a Topic Notes collection into a Reference Book for viewing on other devices with eSword on them.
All audio Bibles are generously provided by Bible.is, a ministry of Faith Comes By Hearing. You can now bulk **Export All Notes** from any of the editors in a variety of document types. This way you can use your notes wherever you want!
</releaseNotes> </releaseNotes>
</metadata> </metadata>
<files> <files>

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_1300_setup.exe' # download url, HTTPS preferred $url = 'https://e-sword.net/files/e-sword_1410_setup.exe' # download url, HTTPS preferred
$packageArgs = @{ $packageArgs = @{
packageName = $env:ChocolateyPackageName packageName = $env:ChocolateyPackageName
@ -8,10 +8,10 @@ $packageArgs = @{
fileType = 'EXE' fileType = 'EXE'
url = $url url = $url
softwareName = 'e-Sword' softwareName = 'e-Sword'
checksum = 'd09b481a3acf7afed3cf517ff6904420' checksum = '75765957BA9EA80C11DAD2DB4CB685D5'
checksumType = 'md5' checksumType = 'md5'
validExitCodes= @(0, 3010, 1641) validExitCodes= @(0, 3010, 1641)
silentArgs = '/s /v"/qn"' silentArgs = '/s /v"/qn"'
} }
Install-ChocolateyPackage @packageArgs # https://chocolatey.org/docs/helpers-install-chocolatey-package Install-ChocolateyPackage @packageArgs # https://chocolatey.org/docs/helpers-install-chocolatey-package