PyFoxFile 0.28.2__tar.gz → 0.28.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyfoxfile-0.28.2 → pyfoxfile-0.28.6}/PKG-INFO +1 -1
- {pyfoxfile-0.28.2 → pyfoxfile-0.28.6}/PyFoxFile.egg-info/PKG-INFO +1 -1
- {pyfoxfile-0.28.2 → pyfoxfile-0.28.6}/foxfile.py +2 -2
- {pyfoxfile-0.28.2 → pyfoxfile-0.28.6}/foxfile_py3.py +3 -2
- {pyfoxfile-0.28.2 → pyfoxfile-0.28.6}/pyfoxfile.py +277 -227
- {pyfoxfile-0.28.2 → pyfoxfile-0.28.6}/pyfoxfile_py3.py +815 -405
- {pyfoxfile-0.28.2 → pyfoxfile-0.28.6}/pyproject.toml +1 -1
- {pyfoxfile-0.28.2 → pyfoxfile-0.28.6}/setup.py +1 -1
- {pyfoxfile-0.28.2 → pyfoxfile-0.28.6}/LICENSE +0 -0
- {pyfoxfile-0.28.2 → pyfoxfile-0.28.6}/PyFoxFile.egg-info/SOURCES.txt +0 -0
- {pyfoxfile-0.28.2 → pyfoxfile-0.28.6}/PyFoxFile.egg-info/dependency_links.txt +0 -0
- {pyfoxfile-0.28.2 → pyfoxfile-0.28.6}/PyFoxFile.egg-info/top_level.txt +0 -0
- {pyfoxfile-0.28.2 → pyfoxfile-0.28.6}/PyFoxFile.egg-info/zip-safe +0 -0
- {pyfoxfile-0.28.2 → pyfoxfile-0.28.6}/README.md +0 -0
- {pyfoxfile-0.28.2 → pyfoxfile-0.28.6}/setup.cfg +0 -0
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
Copyright 2018-2026 Game Maker 2k - http://intdb.sourceforge.net/
|
|
15
15
|
Copyright 2018-2026 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
|
|
16
16
|
|
|
17
|
-
$FileInfo: foxfile.py - Last Update: 2/
|
|
17
|
+
$FileInfo: foxfile.py - Last Update: 2/6/2026 Ver. 0.28.6 RC 1 - Author: cooldude2k $
|
|
18
18
|
'''
|
|
19
19
|
|
|
20
20
|
from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes
|
|
@@ -203,7 +203,7 @@ if active_action:
|
|
|
203
203
|
sys.exit(1)
|
|
204
204
|
input_file = tempout
|
|
205
205
|
pyfoxfile.UnPackFoxFile(input_file, getargs.output, False, getargs.filestart, 0, 0, getargs.skipchecksum,
|
|
206
|
-
fnamedict, getargs.
|
|
206
|
+
fnamedict, getargs.insecretkey, getargs.preserve, getargs.preserve, False, getargs.verbose, False)
|
|
207
207
|
elif active_action == 'list':
|
|
208
208
|
if getargs.convert:
|
|
209
209
|
checkcompressfile = pyfoxfile.CheckCompressionSubType(
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
Copyright 2018-2026 Game Maker 2k - http://intdb.sourceforge.net/
|
|
14
14
|
Copyright 2018-2026 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
|
|
15
15
|
|
|
16
|
-
$FileInfo: foxfile_py3.py - Last Update: 2/
|
|
16
|
+
$FileInfo: foxfile_py3.py - Last Update: 2/6/2026 Ver. 0.28.6 RC 1 - Author: cooldude2k $
|
|
17
17
|
'''
|
|
18
18
|
|
|
19
19
|
from __future__ import annotations
|
|
@@ -378,10 +378,11 @@ def main(argv: Optional[list[str]] = None) -> int:
|
|
|
378
378
|
0,
|
|
379
379
|
getargs.skipchecksum,
|
|
380
380
|
fnamedict,
|
|
381
|
-
getargs.
|
|
381
|
+
getargs.insecretkey,
|
|
382
382
|
getargs.preserve,
|
|
383
383
|
getargs.preserve,
|
|
384
384
|
False,
|
|
385
|
+
getargs.verbose,
|
|
385
386
|
False,
|
|
386
387
|
)
|
|
387
388
|
|