PyFoxFile 0.20.4__py3-none-any.whl → 0.20.6__py3-none-any.whl
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.20.4.dist-info → pyfoxfile-0.20.6.dist-info}/METADATA +1 -1
- pyfoxfile-0.20.6.dist-info/RECORD +9 -0
- pyfoxfile.py +13 -13
- pyfoxfile-0.20.4.dist-info/RECORD +0 -9
- {pyfoxfile-0.20.4.data → pyfoxfile-0.20.6.data}/scripts/foxfile.py +0 -0
- {pyfoxfile-0.20.4.data → pyfoxfile-0.20.6.data}/scripts/neofoxfile.py +0 -0
- {pyfoxfile-0.20.4.dist-info → pyfoxfile-0.20.6.dist-info}/WHEEL +0 -0
- {pyfoxfile-0.20.4.dist-info → pyfoxfile-0.20.6.dist-info}/licenses/LICENSE +0 -0
- {pyfoxfile-0.20.4.dist-info → pyfoxfile-0.20.6.dist-info}/top_level.txt +0 -0
- {pyfoxfile-0.20.4.dist-info → pyfoxfile-0.20.6.dist-info}/zip-safe +0 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
pyfoxfile.py,sha256=dyaSTejqYj0i6iCrZwswVDOPPqYtQjkvNFeRKduWt5I,433417
|
|
2
|
+
pyfoxfile-0.20.6.data/scripts/foxfile.py,sha256=jVbflioQQRu6dy85bt8QW9OfXr5rzfmmQ75qM-Q31u4,13994
|
|
3
|
+
pyfoxfile-0.20.6.data/scripts/neofoxfile.py,sha256=5_A2OgXuV7Yj0SAb5F2PysPneIBrqfuM8REjClRquN4,7113
|
|
4
|
+
pyfoxfile-0.20.6.dist-info/licenses/LICENSE,sha256=WM1VWxTUVrQbvEa-LC7cKTaBHXiqSTyYPoJvsZSbd7E,1513
|
|
5
|
+
pyfoxfile-0.20.6.dist-info/METADATA,sha256=cPsIlItH9U24bRbWdMhNd0WSE4Tlz3aPQuOxEmwX-Wk,715
|
|
6
|
+
pyfoxfile-0.20.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
7
|
+
pyfoxfile-0.20.6.dist-info/top_level.txt,sha256=VTOkpGfBWHNht7FKfnbccd32n_Jgk8Df5NKKfzaliTc,10
|
|
8
|
+
pyfoxfile-0.20.6.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
9
|
+
pyfoxfile-0.20.6.dist-info/RECORD,,
|
pyfoxfile.py
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
Copyright 2018-2024 Game Maker 2k - http://intdb.sourceforge.net/
|
|
15
15
|
Copyright 2018-2024 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
|
|
16
16
|
|
|
17
|
-
$FileInfo: pyfoxfile.py - Last Update: 9/
|
|
17
|
+
$FileInfo: pyfoxfile.py - Last Update: 9/15/2025 Ver. 0.20.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
|
|
@@ -381,12 +381,12 @@ __file_format_extension__ = __file_format_multi_dict__[__file_format_default__][
|
|
|
381
381
|
__file_format_dict__ = __file_format_multi_dict__[__file_format_default__]
|
|
382
382
|
__project__ = __program_name__
|
|
383
383
|
__project_url__ = "https://github.com/GameMaker2k/PyFoxFile"
|
|
384
|
-
__version_info__ = (0, 20,
|
|
385
|
-
__version_date_info__ = (2025, 9,
|
|
384
|
+
__version_info__ = (0, 20, 6, "RC 1", 1)
|
|
385
|
+
__version_date_info__ = (2025, 9, 15, "RC 1", 1)
|
|
386
386
|
__version_date__ = str(__version_date_info__[0]) + "." + str(
|
|
387
387
|
__version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
|
|
388
388
|
__revision__ = __version_info__[3]
|
|
389
|
-
__revision_id__ = "$Id:
|
|
389
|
+
__revision_id__ = "$Id: f6f2d05056de001652427c05b6fb802078d5db1c $"
|
|
390
390
|
if(__version_info__[4] is not None):
|
|
391
391
|
__version_date_plusrc__ = __version_date__ + \
|
|
392
392
|
"-" + str(__version_date_info__[4])
|
|
@@ -8600,15 +8600,15 @@ def UnPackFoxFileString(instr, outdir=None, followlink=False, seekstart=0, seeke
|
|
|
8600
8600
|
|
|
8601
8601
|
def ftype_to_str(ftype):
|
|
8602
8602
|
mapping = {
|
|
8603
|
-
0: "file",
|
|
8604
|
-
1: "link",
|
|
8605
|
-
2: "
|
|
8606
|
-
3: "char device
|
|
8607
|
-
4: "block device
|
|
8608
|
-
5: "
|
|
8609
|
-
6: "fifo",
|
|
8610
|
-
12: "
|
|
8611
|
-
14: "
|
|
8603
|
+
0: "file", # file
|
|
8604
|
+
1: "link", # link
|
|
8605
|
+
2: "sym", # symlink
|
|
8606
|
+
3: "cdev", # char device
|
|
8607
|
+
4: "bdev", # block device
|
|
8608
|
+
5: "dir", # directory
|
|
8609
|
+
6: "fifo", # fifo
|
|
8610
|
+
12: "spar", # sparse
|
|
8611
|
+
14: "dev", # generic device
|
|
8612
8612
|
}
|
|
8613
8613
|
# Default to "file" if unknown
|
|
8614
8614
|
return mapping.get(ftype, "file")
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
pyfoxfile.py,sha256=ZsoTrEjOhCOjul8wifJYbQ7idgGslv08yx-7KXcIvHQ,433330
|
|
2
|
-
pyfoxfile-0.20.4.data/scripts/foxfile.py,sha256=jVbflioQQRu6dy85bt8QW9OfXr5rzfmmQ75qM-Q31u4,13994
|
|
3
|
-
pyfoxfile-0.20.4.data/scripts/neofoxfile.py,sha256=5_A2OgXuV7Yj0SAb5F2PysPneIBrqfuM8REjClRquN4,7113
|
|
4
|
-
pyfoxfile-0.20.4.dist-info/licenses/LICENSE,sha256=WM1VWxTUVrQbvEa-LC7cKTaBHXiqSTyYPoJvsZSbd7E,1513
|
|
5
|
-
pyfoxfile-0.20.4.dist-info/METADATA,sha256=2LqRCvhtYU_8Y6q8y6VU5YmoO9cu2Ua1arR1ihzHa0o,715
|
|
6
|
-
pyfoxfile-0.20.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
7
|
-
pyfoxfile-0.20.4.dist-info/top_level.txt,sha256=VTOkpGfBWHNht7FKfnbccd32n_Jgk8Df5NKKfzaliTc,10
|
|
8
|
-
pyfoxfile-0.20.4.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
9
|
-
pyfoxfile-0.20.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|