Skip to content

Commit

Permalink
drop using web gui, move zstd block validator
Browse files Browse the repository at this point in the history
  • Loading branch information
seiya-git committed Oct 7, 2023
1 parent 13fa465 commit b384527
Show file tree
Hide file tree
Showing 32 changed files with 7 additions and 31,732 deletions.
1,449 changes: 0 additions & 1,449 deletions py/Fs/ChromeNacp.py

This file was deleted.

2,670 changes: 0 additions & 2,670 deletions py/Fs/ChromeNca.py

This file was deleted.

9,195 changes: 0 additions & 9,195 deletions py/Fs/ChromeNsp.py

This file was deleted.

8,886 changes: 0 additions & 8,886 deletions py/Fs/ChromeXci.py

This file was deleted.

2 changes: 1 addition & 1 deletion py/Fs/Xci.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import os
import Print

from Fs import Header, BlockDecompressorReader
from ZstdBlock import Header, BlockDecompressorReader

import Keys
import aes128
Expand Down
13 changes: 5 additions & 8 deletions py/Fs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,31 +10,28 @@
from Fs.Hfs0 import Hfs0
from Fs.Ticket import Ticket
from Fs.File import File
from Fs.ChromeNsp import ChromeNsp
from Fs.ChromeXci import ChromeXci
from Fs.ChromeNacp import ChromeNacp

def factory(name):
if name.endswith('.xci'):
f = Xci()
elif name.endswith('.xcz'):
f = Xci()
f = Xci()
elif name.endswith('.nsp'):
f = Nsp()
elif name.endswith('.nsz'):
f = Nsp()
f = Nsp()
elif name.endswith('.nsx'):
f = Nsp()
elif name.endswith('.nca'):
f = Nca()
elif name.endswith('.ncz'):
f = File()
f = File()
elif name.endswith('.nacp'):
f = Nacp()
elif name.endswith('.tik'):
f = Ticket()
elif name.endswith('.hfs0'):
f = Hfs0()
f = Hfs0()
else:
f = File()
return f
return f
File renamed without changes.
File renamed without changes.
File renamed without changes.
21 changes: 0 additions & 21 deletions py/_EEL_/EEL LICENSE

This file was deleted.

Loading

0 comments on commit b384527

Please sign in to comment.