diff --git a/HISTORY.md b/HISTORY.md index 2ca4f32..af08001 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -6,10 +6,13 @@ - ℹ️ - Information - ♻️ - Edited -## ??/09/2022 - (**Current**) -- ℹ️ - Update to 1.19.1 client version +## 14/09/2022 - (1.19.2 Update) +- ℹ️ - Update to 1.19.2 client version +- ➕ - Added check for empty player name +- ➕ - Added laucher title +- ✔️ - Fixed Windows echo bug - ✔️ - Fixed long LIBRAIRES string variable -## 30/07/2022 - (**macOS Release**) +## 30/07/2022 - (macOS Release) - ✔️ - Update to 1.19.1 client version - ℹ️ - First macOS version diff --git a/linux/minecraft_vanilla.sh b/linux/minecraft_vanilla.sh index bcfbf3f..be04384 100755 --- a/linux/minecraft_vanilla.sh +++ b/linux/minecraft_vanilla.sh @@ -1,8 +1,15 @@ #!/bin/sh echo -ne "\033]2;Minecraft Launcher\007" +# Launcher title +echo "Minecraft Launcher by iiiypuk" +echo "=============================" + # Set username read -p "What username would you like? " player +if [ ! $player ]; then + player="Steve" +fi # A minecraft root directory MC_DIR=$HOME/.minecraft diff --git a/macos/minecraft_vanilla.sh b/macos/minecraft_vanilla.sh index 10bf96d..88e4970 100644 --- a/macos/minecraft_vanilla.sh +++ b/macos/minecraft_vanilla.sh @@ -1,8 +1,15 @@ #!/bin/sh echo -ne "\033]2;Minecraft Launcher\007" +# Launcher title +echo "Minecraft Launcher by iiiypuk" +echo "=============================" + # Set username read -p "What username would you like? " player +if [ ! $player ]; then + player="Steve" +fi # A minecraft root directory MC_DIR=$HOME/.minecraft diff --git a/windows/minecraft_vanilla.bat b/windows/minecraft_vanilla.bat index 740e5bb..b543a59 100644 --- a/windows/minecraft_vanilla.bat +++ b/windows/minecraft_vanilla.bat @@ -3,7 +3,6 @@ title Minecraft Launcher echo Minecraft Launcher by iiiypuk echo ============================= -echo Preparing... :: set username set /p PLAYER=What username would you like?