From 0148e46113cfc0fcb03994a9b641476f31441ea5 Mon Sep 17 00:00:00 2001 From: traffic-lane <67981836+traffic-lane@users.noreply.github.com> Date: Sat, 1 Aug 2020 22:20:11 -0700 Subject: [PATCH 1/3] grammatical fixes --- README.md | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 4df0f16..42bc129 100644 --- a/README.md +++ b/README.md @@ -9,27 +9,28 @@ ***Disclaimer: I am not held responsible for any damage done to your device.***
***Note: you must have a computer to launch the script via SSH, you cannot use NewTerm.***
***Note: I recommend that you know what you're doing***
-1) You don't need to restore rootfs anymore Tweaks/Apps Are saved
+1) You don't need to restore rootfs anymore, Tweaks/Apps are saved
2) Refresh sources in Cydia and install `OpenSSH` and `Curl`
3) Find the IP of your iDevice and connect to it via SSH on your computer. Don't know what SSH is or how to use it? Refer to: https://www.hostinger.com/tutorials/ssh-tutorial-how-does-ssh-work
4) Use the following command in your SSH session for installation:
`/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Yaya48/Uncursus/new/installuncursus.sh)"`
5) Once your device resprings, launch Sileo and you're good to go.
-***For All Users Cannot Have A Pc I Made a Non-Computer Version***
-***Note: Disclimer This still in beta***
-1) You don't need to restore rootfs anymore Tweaks/Apps Are saved +***For all users that don't have a PC, I made a Non-Computer version.***
+***Disclaimer: This is still in beta***
+1) You don't need to restore rootfs anymore, Tweaks/Apps are saved 2) Add https://repo.yaya48.gq in cydia -3) Install Uncursus Installer -4) Enter In Terminal And Log In As Root With Default Passworld Type: su after alpine -5) Run uncursus-installer and wait -6) When Is Finished Your Device Will Respring After Open Sileo Do Update And Enjoy +3) Install `Uncursus Installer` as well as `NewTerm (iOS 10-13)` if you don't have it already +4) Open NewTerm and login as root with your password. Type `su`, then `alpine` (or your root password) +5) Type `uncursus-installer`, then run it and wait +6) When finished, your device will respring. +7) Open Sileo, update your packages and enjoy ### Questions & Support: - Discord: Yaya4#1989 - Twitter: [@Yaya4_4](https://twitter.com/Yaya4_4) -***Note: The support is not made for install help but for bug reports or ask questions all install steps is here***
+***Note: Support is not for installation help, but for bug reports or asking questions. All installation steps are here***
### Credits: [Procursus Team](https://github.com/ProcursusTeam/) - for the bootstrap
-- 2.45.2 From 725d3be73dcf266060dab8a2f7323ad8fcbb9a74 Mon Sep 17 00:00:00 2001 From: traffic-lane <67981836+traffic-lane@users.noreply.github.com> Date: Sat, 1 Aug 2020 22:31:09 -0700 Subject: [PATCH 2/3] grammatical fixes --- installuncursus.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/installuncursus.sh b/installuncursus.sh index 1a4d08f..71332d0 100644 --- a/installuncursus.sh +++ b/installuncursus.sh @@ -9,28 +9,28 @@ command -v curl >/dev/null 2>&1 || need+="curl " command -v wget >/dev/null 2>&1 || need+="wget " clear echo -e "\e[31mWelcome to Uncursus Installation Script V2.0.2 (Stable) By @Yaya4_4 on Twitter.\e[0m" -echo "Checking if This Script Is Run On ARM Darwin" +echo "Checking if this script is running on ARM Darwin" if [ $(uname) = "Linux" ]; then if [ $(uname -p) = "x86_64" ]; then PC=yes fi fi if [[ "${PC}" = yes ]]; then -echo "Use This On SSH Over IP Session Thanks On Your Idevice" +echo "Use this script with SSH over an IP session on your iDevice. Thanks." exit 1 else - echo "ARM Darwin Dectected Running ..." -echo "Checking If Is A Clean Install Of Unc0ver..." + echo "ARM Darwin detected, running..." +echo "Checking if you're using a clean install of unc0ver..." if [[ -f "/.installed_unc0ver" ]]; then u0=yes else u0=no fi if [[ "${u0}" = no ]]; then -echo "Use Unc0ver Thanks" +echo "Use unc0ver, thanks" exit 1 else -echo "Unc0ver Dectected" +echo "unc0ver detected" echo "WARNING: I'M NOT RESPONSIBLE IF ANYTHING GOES WRONG" echo "If you've found any bugs, please create an issue in GitHub." echo "Checking Dependencies..." -- 2.45.2 From c4cd8d067afbf0dc25b573194ebb738275601adc Mon Sep 17 00:00:00 2001 From: traffic-lane <67981836+traffic-lane@users.noreply.github.com> Date: Sat, 1 Aug 2020 22:33:49 -0700 Subject: [PATCH 3/3] grammatical fixes --- procursus-migration.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/procursus-migration.sh b/procursus-migration.sh index b209f59..02201ff 100644 --- a/procursus-migration.sh +++ b/procursus-migration.sh @@ -7,18 +7,18 @@ echo -e "\e[31mUncursus 2.0 Migration Part By Yaya4_4 1.0 (Sbtale)\e[0m" echo "Checking iOS Version" VER=$(/usr/bin/plutil -key ProductVersion /System/Library/CoreServices/SystemVersion.plist) if [[ "${VER%.*}" -ge 12 ]] && [[ "${VER%.*}" -lt 13 ]]; then -echo "iOS 12 Dectected Set The CFVER To 1500" +echo "iOS 12 detected, setting the CFVER to 1500" CFVER=1500 elif [[ "${VER%.*}" -ge 13 ]]; then -echo "iOS 13 Dectected Set The CFVER To 1600" +echo "iOS 13 detected, setting the CFVER to 1600" CFVER=1600 else if [[ "${VER%.*.*}" -ge 13 ]]; then -echo "iOS 13 Dectected Set The CFVER To 1600" +echo "iOS 13 detected, setting the CFVER to 1600" CFVER=1600 else if [[ "${VER%.*.*}" -ge 12 ]]; then -echo "iOS 12 Dectected Set The CFVER To 1500" +echo "iOS 12 detected, setting the CFVER to 1500" CFVER=1500 fi fi @@ -51,5 +51,5 @@ echo "URIs: https://apt.procurs.us/" >> /etc/apt/sources.list.d/procursus.source echo "Suites: iphoneos-arm64/${CFVER}" >> /etc/apt/sources.list.d/procursus.sources echo "Components: main" >> /etc/apt/sources.list.d/procursus.sources echo -e "\e[32mMigration Finished!\e[0m" -echo -e "\e[32mBack To Uncursus Script...\e[0m" +echo -e "\e[32mBack to Uncursus Script...\e[0m" fi -- 2.45.2