PyFoxFile 0.22.2__tar.gz → 0.22.4__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.22.2 → pyfoxfile-0.22.4}/PKG-INFO +1 -1
- {pyfoxfile-0.22.2 → pyfoxfile-0.22.4}/PyFoxFile.egg-info/PKG-INFO +1 -1
- {pyfoxfile-0.22.2 → pyfoxfile-0.22.4}/foxfile.py +1 -1
- {pyfoxfile-0.22.2 → pyfoxfile-0.22.4}/pyfoxfile.py +6 -6
- {pyfoxfile-0.22.2 → pyfoxfile-0.22.4}/pyproject.toml +1 -1
- {pyfoxfile-0.22.2 → pyfoxfile-0.22.4}/LICENSE +0 -0
- {pyfoxfile-0.22.2 → pyfoxfile-0.22.4}/PyFoxFile.egg-info/SOURCES.txt +0 -0
- {pyfoxfile-0.22.2 → pyfoxfile-0.22.4}/PyFoxFile.egg-info/dependency_links.txt +0 -0
- {pyfoxfile-0.22.2 → pyfoxfile-0.22.4}/PyFoxFile.egg-info/top_level.txt +0 -0
- {pyfoxfile-0.22.2 → pyfoxfile-0.22.4}/PyFoxFile.egg-info/zip-safe +0 -0
- {pyfoxfile-0.22.2 → pyfoxfile-0.22.4}/README.md +0 -0
- {pyfoxfile-0.22.2 → pyfoxfile-0.22.4}/foxneofile.py +0 -0
- {pyfoxfile-0.22.2 → pyfoxfile-0.22.4}/neofoxfile.py +0 -0
- {pyfoxfile-0.22.2 → pyfoxfile-0.22.4}/setup.cfg +0 -0
- {pyfoxfile-0.22.2 → pyfoxfile-0.22.4}/setup.py +0 -0
|
@@ -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: foxfile.py - Last Update: 8/29/2025 Ver. 0.22.
|
|
17
|
+
$FileInfo: foxfile.py - Last Update: 8/29/2025 Ver. 0.22.4 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
|
|
@@ -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: 8/29/2025 Ver. 0.22.
|
|
17
|
+
$FileInfo: pyfoxfile.py - Last Update: 8/29/2025 Ver. 0.22.4 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
|
|
@@ -390,13 +390,13 @@ __file_format_extension__ = __file_format_multi_dict__[__file_format_default__][
|
|
|
390
390
|
__file_format_dict__ = __file_format_multi_dict__[__file_format_default__]
|
|
391
391
|
__project__ = __program_name__
|
|
392
392
|
__project_url__ = "https://github.com/GameMaker2k/PyFoxFile"
|
|
393
|
-
__version_info__ = (0, 22,
|
|
394
|
-
__version_info__ = (0, 22,
|
|
393
|
+
__version_info__ = (0, 22, 4, "RC 1", 1)
|
|
394
|
+
__version_info__ = (0, 22, 4, "RC 1", 1)
|
|
395
395
|
__version_date_info__ = (2025, 9, 29, "RC 1", 1)
|
|
396
396
|
__version_date__ = str(__version_date_info__[0]) + "." + str(
|
|
397
397
|
__version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
|
|
398
398
|
__revision__ = __version_info__[3]
|
|
399
|
-
__revision_id__ = "$Id:
|
|
399
|
+
__revision_id__ = "$Id: c5f2e77a91df1432f3fb4213ee32b80c79427e3a $"
|
|
400
400
|
if(__version_info__[4] is not None):
|
|
401
401
|
__version_date_plusrc__ = __version_date__ + \
|
|
402
402
|
"-" + str(__version_date_info__[4])
|
|
@@ -2847,7 +2847,7 @@ def ReadFileDataWithContentToArray(fp, filestart=0, seekstart=0, seekend=0, list
|
|
|
2847
2847
|
return False
|
|
2848
2848
|
formversions = re.search('(.*?)(\\d+)', formstring).groups()
|
|
2849
2849
|
fcompresstype = ""
|
|
2850
|
-
outlist = {'fnumfiles': fnumfiles, 'fformat': formversions[0], 'fcompression': fcompresstype, 'fencoding': fhencoding, 'fversion': formversions[1], 'fostype': fostype, 'fheadersize': fheadsize, 'fsize': CatSizeEnd, 'fnumfields': fnumfields + 2, 'fformatspecs': formatspecs, 'fchecksumtype': fprechecksumtype, 'fheaderchecksum': fprechecksum, 'frawheader': [formstring] + inheader, 'fextrafields': fnumextrafields, 'fextrafieldsize': fnumextrafieldsize, 'fextradata': fextrafieldslist, 'ffilelist': []}
|
|
2850
|
+
outlist = {'fnumfiles': fnumfiles, 'ffilestart': filestart, 'fformat': formversions[0], 'fcompression': fcompresstype, 'fencoding': fhencoding, 'fversion': formversions[1], 'fostype': fostype, 'fheadersize': fheadsize, 'fsize': CatSizeEnd, 'fnumfields': fnumfields + 2, 'fformatspecs': formatspecs, 'fchecksumtype': fprechecksumtype, 'fheaderchecksum': fprechecksum, 'frawheader': [formstring] + inheader, 'fextrafields': fnumextrafields, 'fextrafieldsize': fnumextrafieldsize, 'fextradata': fextrafieldslist, 'ffilelist': []}
|
|
2851
2851
|
if (seekstart < 0) or (seekstart > fnumfiles):
|
|
2852
2852
|
seekstart = 0
|
|
2853
2853
|
if (seekend == 0) or (seekend > fnumfiles) or (seekend < seekstart):
|
|
@@ -7262,7 +7262,7 @@ def FoxFileToArray(infile, fmttype="auto", filestart=0, seekstart=0, seekend=0,
|
|
|
7262
7262
|
fcompresstype = compresscheck
|
|
7263
7263
|
if(fcompresstype==formatspecs['format_magic']):
|
|
7264
7264
|
fcompresstype = ""
|
|
7265
|
-
outlist = {'fnumfiles': fnumfiles, 'fformat': formversions[0], 'fcompression': fcompresstype, 'fencoding': fhencoding, 'fversion': formversions[1], 'fostype': fostype, 'fheadersize': fheadsize, 'fsize': CatSizeEnd, 'fnumfields': fnumfields + 2, 'fformatspecs': formatspecs, 'fchecksumtype': fprechecksumtype, 'fheaderchecksum': fprechecksum, 'frawheader': [formstring] + inheader, 'fextrafields': fnumextrafields, 'fextrafieldsize': fnumextrafieldsize, 'fextradata': fextrafieldslist, 'ffilelist': []}
|
|
7265
|
+
outlist = {'fnumfiles': fnumfiles, 'ffilestart': filestart, 'fformat': formversions[0], 'fcompression': fcompresstype, 'fencoding': fhencoding, 'fversion': formversions[1], 'fostype': fostype, 'fheadersize': fheadsize, 'fsize': CatSizeEnd, 'fnumfields': fnumfields + 2, 'fformatspecs': formatspecs, 'fchecksumtype': fprechecksumtype, 'fheaderchecksum': fprechecksum, 'frawheader': [formstring] + inheader, 'fextrafields': fnumextrafields, 'fextrafieldsize': fnumextrafieldsize, 'fextradata': fextrafieldslist, 'ffilelist': []}
|
|
7266
7266
|
if (seekstart < 0) or (seekstart > fnumfiles):
|
|
7267
7267
|
seekstart = 0
|
|
7268
7268
|
if (seekend == 0) or (seekend > fnumfiles) or (seekend < seekstart):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|