This repository was archived by the owner on Sep 26, 2024. It is now read-only.
File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
+ * 3.7.2
3
+ - Fix #178 .
4
+ - Make AppImage default install.
5
+ - Add options to ` -D|--debug ` .
2
6
* 3.7.1
3
7
- Add installer ` -V|--verbose ` . Fix #165 . [ T. H. Wright]
4
8
- Add installer ` -k|--make_skel ` and ` -b|--custom-binary-path ` . Resolve TODOs. Fix #166 . [ T. H. Wright]
Original file line number Diff line number Diff line change 2
2
# shellcheck disable=SC2317
3
3
export LOGOS_SCRIPT_TITLE=" Logos Linux Installer" # From https://github.com/ferion11/LogosLinuxInstaller
4
4
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
6
6
7
7
# ####
8
8
# Originally written by Ferion11.
@@ -741,8 +741,8 @@ chooseInstallMethod() {
741
741
if [[ " ${DIALOG} " == " whiptail" ]] || [[ " ${DIALOG} " == " dialog" ]]; then
742
742
installationChoice=$( $DIALOG --backtitle " ${BACKTITLE} " --title " ${TITLE} " --radiolist " ${QUESTION_TEXT} " 0 0 " ${WINEBIN_OPTIONS_LENGTH} " " ${WINEBIN_OPTIONS[@]} " 3>&1 1>&2 2>&3 3>& - )
743
743
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
746
746
elif [[ " ${DIALOG} " == " zenity" ]]; then
747
747
column_names=(--column " Choice" --column " Code" --column " Description" --column " Path" )
748
748
installationChoice=$( zenity --width=1024 --height=480 \
You can’t perform that action at this time.
0 commit comments