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

Commit 015b533

Browse files
committed
Updated CHANGELOG. Release 3.7.2
1 parent a183500 commit 015b533

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Changelog
2+
* 3.7.2
3+
- Fix #178.
4+
- Make AppImage default install.
5+
- Add options to `-D|--debug`.
26
* 3.7.1
37
- Add installer `-V|--verbose`. Fix #165. [T. H. Wright]
48
- Add installer `-k|--make_skel` and `-b|--custom-binary-path`. Resolve TODOs. Fix #166. [T. H. Wright]

LogosLinuxInstaller.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# shellcheck disable=SC2317
33
export LOGOS_SCRIPT_TITLE="Logos Linux Installer" # From https://github.com/ferion11/LogosLinuxInstaller
44
export LOGOS_SCRIPT_AUTHOR="Ferion11, John Goodman, T. H. Wright"
5-
export LOGOS_SCRIPT_VERSION="3.7.1" # Script version for this Installer Script
5+
export LOGOS_SCRIPT_VERSION="3.7.2" # Script version for this Installer Script
66

77
#####
88
# Originally written by Ferion11.
@@ -741,8 +741,8 @@ chooseInstallMethod() {
741741
if [[ "${DIALOG}" == "whiptail" ]] || [[ "${DIALOG}" == "dialog" ]]; then
742742
installationChoice=$( $DIALOG --backtitle "${BACKTITLE}" --title "${TITLE}" --radiolist "${QUESTION_TEXT}" 0 0 "${WINEBIN_OPTIONS_LENGTH}" "${WINEBIN_OPTIONS[@]}" 3>&1 1>&2 2>&3 3>&- )
743743
read -r -a installArray <<< "${installationChoice}"
744-
export WINEBIN_CODE=$(echo "${installArray[0]}" | awk -F' ' '{print $1}')
745-
export WINE_EXE=$(echo "${installArray[1]}" | awk -F' ' '{print $2}')
744+
WINEBIN_CODE=$(echo "${installArray[0]}" | awk -F' ' '{print $1}'); export WINEBIN_CODE
745+
WINE_EXE=$(echo "${installArray[1]}" | awk -F' ' '{print $2}'); export WINE_EXE
746746
elif [[ "${DIALOG}" == "zenity" ]]; then
747747
column_names=(--column "Choice" --column "Code" --column "Description" --column "Path")
748748
installationChoice=$(zenity --width=1024 --height=480 \

0 commit comments

Comments
 (0)