From 4ea6cb4f3b4058d22be9d0cecab16f3ceb42207e Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Wed, 31 Mar 2021 21:30:18 -0600 Subject: [PATCH] Update e-sword to v13.0.0 --- e-sword/esword.nuspec | 12 ++++-------- e-sword/tools/chocolateyinstall.ps1 | 6 +++--- 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/e-sword/esword.nuspec b/e-sword/esword.nuspec index 1843569..66c62c7 100644 --- a/e-sword/esword.nuspec +++ b/e-sword/esword.nuspec @@ -4,7 +4,7 @@ e-sword - 12.2.0 + 13.0.0 MillironX https://github.com/MillironX/chocolatey-packages @@ -15,19 +15,15 @@ Rick Meyers https://e-sword.net/ https://www.e-sword.net/images/applogo.png - 2020 Rick Meyers + 2021 Rick Meyers https://e-sword.net/training.html esword bible christianity The Sword of the LORD with an electronic edge 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. - New **Dim Light** greenish background color which may ease eye strain for - some people. + 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. - **Bible Search** improved to locate words that include accents on the first or - last character. - - User-made **Bible modules** can now include footnotes in the text and database. + All audio Bibles are generously provided by Bible.is, a ministry of Faith Comes By Hearing. diff --git a/e-sword/tools/chocolateyinstall.ps1 b/e-sword/tools/chocolateyinstall.ps1 index c26eea6..e486988 100644 --- a/e-sword/tools/chocolateyinstall.ps1 +++ b/e-sword/tools/chocolateyinstall.ps1 @@ -1,6 +1,6 @@ $ErrorActionPreference = 'Stop'; # stop on all errors $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" -$url = 'https://e-sword.net/files/e-sword_1220_setup.exe' # download url, HTTPS preferred +$url = 'https://e-sword.net/files/e-sword_1300_setup.exe' # download url, HTTPS preferred $packageArgs = @{ packageName = $env:ChocolateyPackageName @@ -8,8 +8,8 @@ $packageArgs = @{ fileType = 'EXE' url = $url softwareName = 'e-Sword' - checksum = '26aa2ae3342ae214b4598d031f1cd0c3d237bec1fb69419349c0560532e9769d' - checksumType = 'sha256' + checksum = 'd09b481a3acf7afed3cf517ff6904420' + checksumType = 'md5' validExitCodes= @(0, 3010, 1641) silentArgs = '/s /v"/qn"' }