From 1f376f0842fb0112c587cccae255856311574cae Mon Sep 17 00:00:00 2001 From: seiya-git Date: Wed, 25 Oct 2023 21:26:01 +0300 Subject: [PATCH] update --- .gitignore | 93 +++----------------------------- README.md | 4 ++ bat/000-install-dependencies.bat | 10 ++++ 3 files changed, 20 insertions(+), 87 deletions(-) create mode 100644 bat/000-install-dependencies.bat diff --git a/.gitignore b/.gitignore index 35b66ced..0a3647c5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,90 +1,9 @@ +__pycache__ + +*.xci +*.xcz *.nsp *.nsz -*.nsx -*.xcz -*.xci -*.ns* -*.xc* -*.nca -*.ncz -00 -0* -*.7z -*.zip -*.lnk -*.pdf -*.cnmt -*.dshlv -*.bak -*.zip -*.pyc -*.cs -*.chm -*.csv -*.log -py/zconfig/*.json -py/ztools/*.exe -py/zconfig/*.pem -py/ztools/web/_debug_/ -py/ztools/web/_cache_/ -py/ztools/.net_code/ -py/zconfig/remote_lib_cache/ -py/ztools/keys.txt -py/ztools/install_server/ -py/install_dependencies - alt.bat -py/INFO -py/NSCB_output -py/NSCB_extracted -py/extract -py/list.txt -py/advlist.txt -py/ztools/dbwork -py/badfiles.txt -py/mlist.txt -py/splist.txt -py/zconfig/DB/ -py/DBL.txt -py/ztools/test.py -py/ztools/Chromium/ -py/zzlist.txt -py/mnglist.txt -py/rstlist.txt -py/zconfig/api.txt -py/lists/ -py/ztools/private/ -py/ztools/cmd/ -py/zconfig/credentials -py/testurl.txt -py/ztools/Drive/Retriever.py -py/ztools/Drive/Verify.py -py/zconfig/download_libraries.txt -py/zconfig/config_urls.txt -py/zconfig/remote_libraries.txt -py/Other -py/zconfig/local_libraries.txt -py/zconfig/NUT_DB_RAW.txt -py/joinlist.txt -py/zconfig/update_dbs_options.cmd -py/update_dbs.bat -py/zconfig/remote_cache_location.txt -py/zconfig/mtp_SD_libraries.txt -py/zconfig/mtp_source_libraries.txt -py/ztools/_mtp_cache_/games_installed.txt -py/ztools/_mtp_cache_/storage.csv -py/zconfig/mtp_download_libraries.txt -py/ztools/_mtp_cache_/valid_saves.txt -py/MTP1GD.txt -py/MTP2.txt -py/ztools/_mtp_cache_/sd_xci.txt -py/MTP1.txt -py/zconfig/_playlog_/* -py/mtpxci.txt -py/MTP2GD.txt -py/ztools/dev_keys.txt -*.rar -py/ztools/lib/Install_server.py -py/ztools/lib/plaintext.py -build -dist -*.spec +*.log +keys.txt diff --git a/README.md b/README.md index 3425ed67..d6f73ab3 100644 --- a/README.md +++ b/README.md @@ -1 +1,5 @@ # Nintendo Switch Tools + +Tools for XCI, XCZ, NSP and NSZ + +Based on nut, NSC_B and nsz diff --git a/bat/000-install-dependencies.bat b/bat/000-install-dependencies.bat new file mode 100644 index 00000000..41e9b205 --- /dev/null +++ b/bat/000-install-dependencies.bat @@ -0,0 +1,10 @@ +@echo off + +set wd=%cd% +cd /d %~dp0../py + +pip install -r "requirements.txt" + +cd /d %wd% + +pause