Skip to content
This repository was archived by the owner on Sep 26, 2024. It is now read-only.

Commit 0d94ded

Browse files
authored
Merge pull request #147 from thw26/dynamic-versions
Retrieve Logos Release Version from XML Feed
2 parents 9a17ea6 + b849b0a commit 0d94ded

File tree

2 files changed

+19
-14
lines changed

2 files changed

+19
-14
lines changed

CHANGELOG.md

+13-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
2-
* 10.1.0.0056-v6
2+
* 3.6.2
3+
- Retrieve Logos release version from XML feed [T. H. Wright]
4+
- Modify the script version, and update the CHANGELOG to reflect this change.
5+
* 3.6.1
6+
- Introduce logos_error() to simplify error messages. [T. H. Wright]
7+
* 3.6.0
38
- [T. H. Wright]
49
- Move generated scripts to separate files: `Launcher-Template.sh`, `controlPanel-Template.sh`.
510
- Moved generated scripts case statements to optargs (e.g., `-i|--indexing`). Fix #108.
@@ -9,16 +14,16 @@
914
- Added `-r|--regenerate-scripts`.
1015
- Added LOGOS.sh: `-R|--check-resources`. Requires `sysstat` and `psrecord`.
1116
- Fix #129.
12-
* 10.1.0.0056-v5.1
17+
* 3.5.1
1318
- [T. H. Wright]
1419
- Fix #68.
15-
* 10.1.0.0056-v5
20+
* 3.5.0
1621
- [T. H. Wright]
1722
- Change in numbering scheme to note if Logos was updated or the script
1823
- Fix #116.
1924
- Added `-c|--config`.
2025
- Added `-F|--skip-fonts`.
21-
* v10.0-4
26+
* 3.4.0
2227
- [T. H. Wright]
2328
- Fix #36.
2429
- Fix #81.
@@ -31,19 +36,19 @@
3136
- Fix #112.
3237
- Added `-f|--force-root`.
3338
- Added `-D|--debug`.
34-
* v10.0-3
39+
* 3.3.0
3540
- [T. H. Wright]
3641
- Fix #93.
37-
* v10.0-2
42+
* 3.2.0
3843
- [T. H. Wright]
3944
- Fix #92.
40-
* v10.0-1
45+
* 3.1.0
4146
- Install DLL d3dcompiler_47 (jg00dman, thw26)
4247
- L10: Change winetricks URL
4348
- L10: allow using local winetricks (thw26)
4449
- L10: add winetricks_dll_install (thw26)
4550
- Add basic optargs: `-h|--help` and `-v|--version` (thw26)
46-
* v10.0:
51+
* 3.0.0:
4752
- Refactoring and renaming of scripts, updates to README, by T. H. Wright (thw26)
4853
- Logos 10 and Verbum 10 install scripts by John Goodman (jg00dman)
4954
- NOTE: Scripts are now numbered by Logos version.

LogosLinuxInstaller.sh

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
#!/bin/bash
22
# shellcheck disable=SC2317
3-
LOGOS_RELEASE_VERSION="23.1.0.0033"
4-
LOGOS_SCRIPT_TITLE="Logos Linux Installer" # From https://github.com/ferion11/LogosLinuxInstaller
3+
export LOGOS_SCRIPT_TITLE="Logos Linux Installer" # From https://github.com/ferion11/LogosLinuxInstaller
54
export LOGOS_SCRIPT_AUTHOR="Ferion11, John Goodman, T. H. Wright"
6-
export LOGOS_SCRIPT_VERSION="${LOGOS_RELEASE_VERSION}-v6" # Script version to match FaithLife Product version.
5+
export LOGOS_SCRIPT_VERSION="3.6.3" # Script version for this Installer Script
76

87
#####
98
# Originally written by Ferion11.
@@ -350,7 +349,7 @@ checkDependencies() {
350349
exit 1
351350
fi
352351

353-
check_commands mktemp patch lsof wget find sed grep ntlm_auth awk tr;
352+
check_commands mktemp patch lsof wget find sed grep ntlm_auth awk tr bc xmllint;
354353
}
355354

356355
checkDependenciesLogos10() {
@@ -416,12 +415,10 @@ chooseVersion() {
416415
*"10")
417416
checkDependenciesLogos10;
418417
export TARGETVERSION="10";
419-
if [ -z "${LOGOS64_URL}" ]; then export LOGOS64_URL="https://downloads.logoscdn.com/LBS10/${VERBUM_PATH}Installer/${LOGOS_RELEASE_VERSION}/${FLPRODUCT}-x64.msi" ; fi
420418
;;
421419
*"9")
422420
checkDependenciesLogos9;
423421
export TARGETVERSION="9";
424-
if [ -z "${LOGOS64_URL}" ]; then export LOGOS64_URL="https://downloads.logoscdn.com/LBS9/${VERBUM_PATH}Installer/9.17.0.0010/${FLPRODUCT}-x64.msi" ; fi
425422
;;
426423
"Exit.")
427424
exit
@@ -430,6 +427,9 @@ chooseVersion() {
430427
logos_error "Installation canceled!"
431428
esac
432429

430+
LOGOS_RELEASE_VERSION=$(curl -s "https://clientservices.logos.com/update/v1/feed/logos${TARGETVERSION}/stable.xml" | xmllint --format - | sed -e 's/ xmlns.*=".*"//g' | sed -e 's@logos:minimum-os-version@minimum-os-version@g' | sed -e 's@logos:version@version@g' | xmllint --xpath "/feed/entry[1]/version/text()" -); export LOGOS_RELEASE_VERSION;
431+
if [ -z "${LOGOS64_URL}" ]; then export LOGOS64_URL="https://downloads.logoscdn.com/LBS${TARGETVERSION}/${VERBUM_PATH}Installer/${LOGOS_RELEASE_VERSION}/${FLPRODUCT}-x64.msi" ; fi
432+
433433
if [ "${FLPRODUCT}" = "Logos" ]; then
434434
LOGOS_VERSION="$(echo "${LOGOS64_URL}" | cut -d/ -f6)";
435435
elif [ "${FLPRODUCT}" = "Verbum" ]; then

0 commit comments

Comments
 (0)