From 3bbf8d847242ce970585bd69d97f914ae417732c Mon Sep 17 00:00:00 2001 From: Anton Gilgur Date: Sun, 22 Dec 2024 16:52:40 -0500 Subject: [PATCH 1/4] perf: `--depth=1` shallow clones for end users - rather than cloning the entire history of repos, can do a shallow clone with a [depth](https://git-scm.com/docs/git-clone#Documentation/git-clone.txt-code--depthcodeemltdepthgtem) of 1 - this should make it more efficient, particularly when there are many commits or many large commits - since the history is unused by regular end users, there is no need to fetch/download it - could alternatively do a [bare](https://git-scm.com/docs/git-clone#Documentation/git-clone.txt-code--barecode) clone to be even more efficient - but I thought a shallow clone is a bit less intrusive for now - and is reversible, if needed (i.e. a local shallow clone can fetch the rest of the depth) - also add syntax highlighting to the first code block, matching the second one --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 98efc48..4e8cf74 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,8 @@ Script to add GApps and other stuff to Waydroid! ## Interactive terminal interface -``` -git clone https://github.com/casualsnek/waydroid_script +```bash +git clone --depth=1 https://github.com/casualsnek/waydroid_script cd waydroid_script python3 -m venv venv venv/bin/pip install -r requirements.txt @@ -25,7 +25,7 @@ sudo venv/bin/python3 main.py ## Command Line ```bash -git clone https://github.com/casualsnek/waydroid_script +git clone --depth=1 https://github.com/casualsnek/waydroid_script cd waydroid_script python3 -m venv venv venv/bin/pip install -r requirements.txt From 29cf41d886a1e5075f4cc241ed328c5d844dd952 Mon Sep 17 00:00:00 2001 From: aspect19 Date: Sat, 18 Jan 2025 13:16:08 +0300 Subject: [PATCH 2/4] Correct a typo in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 98efc48..ade3c13 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ Magisk will be installed on next boot! Zygisk and modules like LSPosed should work now. -If you want to update Magisk, Please use `Direct Install into system partition` or run this sript again. +If you want to update Magisk, Please use `Direct Install into system partition` or run this script again. This script only focuses on Magisk installation, if you need more management, please check https://github.com/nitanmarcel/waydroid-magisk From 1cb16fe91b837dde30c09f0b96e46e830842edca Mon Sep 17 00:00:00 2001 From: Alessandro Astone Date: Mon, 24 Mar 2025 18:31:58 +0100 Subject: [PATCH 3/4] A13 houdini --- main.py | 4 ++-- stuff/houdini.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/main.py b/main.py index 600ff8d..d76f415 100755 --- a/main.py +++ b/main.py @@ -229,10 +229,10 @@ def interact(): if not action: exit() - install_choices = ["gapps", "microg", "libndk", "magisk", "smartdock", "fdroidpriv",] + install_choices = ["gapps", "microg", "libndk", "libhoudini", "magisk", "smartdock", "fdroidpriv",] hack_choices = [] if android_version=="11": - install_choices.extend(["libhoudini", "widevine"]) + install_choices.extend(["widevine"]) hack_choices.extend(["nodataperm", "hidestatusbar"]) if action == "Install": diff --git a/stuff/houdini.py b/stuff/houdini.py index da29f9c..b3f5814 100644 --- a/stuff/houdini.py +++ b/stuff/houdini.py @@ -10,7 +10,7 @@ class Houdini(General): partition = "system" dl_links = { "11": ["https://github.com/supremegamers/vendor_intel_proprietary_houdini/archive/81f2a51ef539a35aead396ab7fce2adf89f46e88.zip", "fbff756612b4144797fbc99eadcb6653"], - # "13": ["https://github.com/supremegamers/vendor_intel_proprietary_houdini/archive/978d8cba061a08837b7e520cd03b635af643ba08.zip", "1e139054c05034648fae58a1810573b4"] + "13": ["https://github.com/supremegamers/vendor_intel_proprietary_houdini/archive/5643480a2c504bd0ee4739a6354fefc70d032ad4.zip", "9085a6ec5d0ec5b7b715981676ffee18"] } act_md5 = ... dl_link = ... From d507168bead89be7f4bcbd33f24be3b2064a490f Mon Sep 17 00:00:00 2001 From: Alessandro Astone Date: Mon, 24 Mar 2025 18:57:32 +0100 Subject: [PATCH 4/4] A13 ndk_translation --- stuff/ndk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stuff/ndk.py b/stuff/ndk.py index 727b351..f0cbd63 100644 --- a/stuff/ndk.py +++ b/stuff/ndk.py @@ -9,7 +9,7 @@ class Ndk(General): partition = "system" dl_links = { "11": ["https://github.com/supremegamers/vendor_google_proprietary_ndk_translation-prebuilt/archive/9324a8914b649b885dad6f2bfd14a67e5d1520bf.zip", "c9572672d1045594448068079b34c350"], - "13": ["https://github.com/supremegamers/vendor_google_proprietary_ndk_translation-prebuilt/archive/a090003c60df53a9eadb2df09bd4fd2fa86ea629.zip", "e6f0d9fc28ebc427b59a3942a9a4ffc0"] + "13": ["https://github.com/supremegamers/vendor_google_proprietary_ndk_translation-prebuilt/archive/faece8cc787a520193545116501cad40534063fc.zip", "f7605b31e51eaa69f13b508b20e74d10"] } dl_file_name = "libndktranslation.zip" extract_to = "/tmp/libndkunpack"