Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Output to NSZ? #253

Open
wants to merge 18 commits into
base: Beta
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Nintendo Switch Cleaner and Builder (NSC_Builder)
![DeviceTag](https://img.shields.io/badge/Device-SWITCH-e60012.svg) ![LanguageTag](https://img.shields.io/badge/languages-python_batch_html5_javascript-blue.svg)

**Temporarly archived:** Currently i don't have the time to work on this repository, i will reopen it and reactivate issues if i have something to commit or time to work regularly on the project. The titledb fork will still continue to update and i will probably compile a new version including the latest master, don't think it had much changes since the last release i did but i'd probably compile it to include the latest keygeneration changes.

**Update:** Leaving it open for commits.

## 1. Description

**Nintendo Switch Cleaner and Builder**: A multi-purpose tool for interacting with Switch game files - a "Switch-Army Knife". Written in Python, Batch, and HTML. Originally developed to remove titlerights and create multicontent NSP/XCI files, though over time has expanded to have significantly more features, specializing in batch processing and file information.
Expand Down
3 changes: 2 additions & 1 deletion py/ztools/squirrel.py
Original file line number Diff line number Diff line change
Expand Up @@ -5830,7 +5830,8 @@
if args.patchversion:
for input in args.patchversion:
try:
number = input
number = int(input)
break
except BaseException as e:
Print.error('Exception: ' + str(e))
else:
Expand Down