diff --git a/README.md b/README.md index d3982dc..2e10d45 100755 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ This script will build and compile Suyu for macOS on Apple Silicon. Get it from here! -[![Download](https://img.shields.io/badge/Download-v0.0.8-brightgreen)](https://github.com/mavethee/suyu-macos-builds-script/releases/download/0.0.8/build_suyu.sh) +[![Download](https://img.shields.io/badge/Download-v0.0.9-brightgreen)](https://github.com/mavethee/suyu-macos-builds-script/releases/download/0.0.9/build_suyu.sh) ## Usage: diff --git a/README_pl_PL.md b/README_pl_PL.md index fcfe1ce..6686d70 100755 --- a/README_pl_PL.md +++ b/README_pl_PL.md @@ -8,7 +8,7 @@ Ten skrypt pobierze wszystkie potrzebne rzeczy dla portu Suyu na macOS. Weź pod uwagę, żeby nie nastawiać się na wiele, w obecnym stanie nie jest to w pełni funkcjonalny port. -[![Pobierz](https://img.shields.io/badge/Download-v0.0.8-brightgreen)](https://github.com/mavethee/suyu-macos-builds-script/releases/download/0.0.8/build_suyu.sh) +[![Pobierz](https://img.shields.io/badge/Download-v0.0.9-brightgreen)](https://github.com/mavethee/suyu-macos-builds-script/releases/download/0.0.9/build_suyu.sh) ## Użytkowanie: diff --git a/build_suyu.sh b/build_suyu.sh index f1038bb..0352e0c 100755 --- a/build_suyu.sh +++ b/build_suyu.sh @@ -70,7 +70,7 @@ done # Clone the Suyu repository if not already cloned if [ ! -d "suyu" ]; then echo -e "${PURPLE}Cloning Suyu repository...${NC}" - git clone --recursive https://gitlab.com/suyu-emu/suyu.git/ + git clone --recursive https://git.suyu.dev/suyu/suyu cd suyu else echo -e "${PURPLE}Suyu repository already exists. Updating...${NC}" @@ -106,7 +106,8 @@ cmake .. -GNinja \ -DSDL_ARMNEON=ON \ -DENABLE_QT6=ON \ -DENABLE_QT_TRANSLATION=ON \ - -DSUYU_USE_EXTERNAL_VULKAN_HEADERS=OFF + -DSUYU_USE_EXTERNAL_VULKAN_HEADERS=OFF \ + -DUSE_SYSTEM_MOLTENVK=OFF echo -e "${PURPLE}Building suyu...${NC}"