Skip to content

Commit

Permalink
Update Lime3DS repo. (#1379)
Browse files Browse the repository at this point in the history
* fixes dolphin control issues

* Revert "fixes dolphin control issues"

This reverts commit 32945b9.

* dolphin for real

* versions

* forced citra

* Fix Cemu - No DSU

* GreemDev

* path fix

* Update emuDeckXenia.sh

* Update install.sh (#1369)

* fixes dolphin control issues

* Revert "fixes dolphin control issues"

This reverts commit 32945b9.

* dolphin for real

* versions

* forced citra

* Fix Cemu - No DSU

* GreemDev

* path fix

* Update install.sh

On Ubuntu 24.04.1 LTS is getting this error:

installing EmuDeck
[36436:1215/124135.236209:FATAL:setuid_sandbox_host.cc(157)] The SUID sandbox helper binary was found, but is not configured correctly. Rather than run without sandboxing I'm aborting now. You need to make sure that /tmp/.mount_EmuDecSYLXPs/chrome-sandbox is owned by root and has mode 4755.

bash, linha 111: 36436 Trace/breakpoint trap   (imagem do núcleo gravada) ~/Applications/EmuDeck.AppImage $sandbox
Something went wrong!
Error at 111 NULL: ~/Applications/EmuDeck.AppImage $sandbox

I just add an verification for set sandbox to "--no-sandbox" and it works!

* Update install.sh

Update

---------

Co-authored-by: Dragoon Dorise <[email protected]>
# Conflicts:
#	install.sh

* fix prerequisites installation

# Conflicts:
#	install-early.sh
#	install-unstable.sh

* Revert "GreemDev"

This reverts commit be0a81b.

* Reapply "GreemDev"

This reverts commit 3b8193f.

* new Ryu url

* Update Lime3DS repo.

Sadly Lime3DS was archived on Nov 17, 2024. But the binaries still available here: https://github.com/Lime3DS/lime3ds-archive/releases

* Update android Lime3DS repo

---------

Co-authored-by: Dragoon Dorise <[email protected]>
Co-authored-by: Gabriel Cruz <[email protected]>
  • Loading branch information
3 people committed Dec 30, 2024
1 parent f1a3bbc commit 19bb019
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions android/functions/EmuScripts/Android_Lime3DS.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

function Android_Lime3DS_install(){
setMSG "Installing Citra"
temp_url="$(getLatestReleaseURLGH "Lime3DS/Lime3DS" ".apk")"
temp_url="$(getLatestReleaseURLGH "Lime3DS/lime3ds-archive" ".apk")"
temp_emu="citra"
Android_ADB_dl_installAPK $temp_emu $temp_url
}
Expand All @@ -22,4 +22,4 @@ function Android_Lime3DS_setup(){
function Android_Lime3DS_IsInstalled(){
package="org.citra.emu"
Android_ADB_appInstalled $package
}
}
2 changes: 1 addition & 1 deletion functions/EmuScripts/emuDeckLime3DS.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Lime3DS_texturesPath="$HOME/.config/lime3ds-emu/load/textures"
Lime3DS_install(){
echo "Begin $Lime3DS_emuName Install"
local showProgress="$1"
if installEmuAI "$Lime3DS_emuName" "" "$(getReleaseURLGH "Lime3DS/Lime3DS" "tar.gz" "")" "lime3ds" "tar.gz" "emulator" "$showProgress"; then #lime3ds-gui.AppImage
if installEmuAI "$Lime3DS_emuName" "" "$(getReleaseURLGH "Lime3DS/lime3ds-archive" "tar.gz" "")" "lime3ds" "tar.gz" "emulator" "$showProgress"; then #lime3ds-gui.AppImage
mkdir "$HOME/Applications/lime3ds-temp"
tar -xvzf "$HOME/Applications/lime3ds.tar.gz" -C "$HOME/Applications/lime3ds-temp" --strip-components 1
if [ -f "$HOME/Applications/lime3ds-temp/lime3ds-gui.AppImage" ]; then
Expand Down
2 changes: 2 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

linuxID=$(lsb_release -si)
sandbox=""

if [ $linuxID = "Ubuntu" ]; then
sandbox="--no-sandbox"
fi
clear

if [ "$linuxID" == "SteamOS" ]; then
echo "Installing EmuDeck"
else
Expand Down

0 comments on commit 19bb019

Please sign in to comment.