Skip to content

Commit

Permalink
Version 0.3.9
Browse files Browse the repository at this point in the history
Fix Windows build
Clean up
  • Loading branch information
mos9527 committed Sep 16, 2024
1 parent d7a811d commit e46cb67
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
python -m pip install --upgrade pip
python -m pip install setuptools wheel build twine
python -m pip install Pyinstaller
python -m pip install -e .
python setup.py install
- name: Build package
run: python -m build --no-isolation
Expand Down
2 changes: 1 addition & 1 deletion sssekai/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__VERSION_MAJOR__ = 0
__VERSION_MINOR__ = 3
__VERSION_PATCH__ = 8
__VERSION_PATCH__ = 9

__version__ = '%s.%s.%s' % (__VERSION_MAJOR__,__VERSION_MINOR__,__VERSION_PATCH__)
6 changes: 2 additions & 4 deletions sssekai/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,12 @@ def write(__s):
apidecrypt_parser = subparsers.add_parser('apidecrypt', help='''API crypto dumper
This crypto applies to:
- API request/response body dumped by packet sniffer (mitmproxy, wireshark, etc.)
- AssetBundleInfo (can be found at /sdcard/Android/data/com.hermes.mk.asia/files/data/AssetBundleInfo,or see sssekai.abcache)''')
- AssetBundleInfo (see sssekai.abcache)''')
apidecrypt_parser.add_argument('infile', type=str, help='input dump file')
apidecrypt_parser.add_argument('outfile', type=str, help='output json file')
apidecrypt_parser.set_defaults(func=main_apidecrypt)
# abdecrypt
abdecrypt_parser = subparsers.add_parser('abdecrypt', help='''Decrypt Sekai AssetBundle
These can be found at /sdcard/Android/data/com.hermes.mk.asia/files/data/
''')
abdecrypt_parser = subparsers.add_parser('abdecrypt', help='''Decrypt Sekai AssetBundle''')
abdecrypt_parser.add_argument('indir', type=str, help='input directory')
abdecrypt_parser.add_argument('outdir', type=str, help='output directory')
abdecrypt_parser.set_defaults(func=main_abdecrypt)
Expand Down

0 comments on commit e46cb67

Please sign in to comment.