PyFoxFile 0.24.4__py3-none-any.whl → 0.24.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.24.4.data → pyfoxfile-0.24.6.data}/scripts/foxfile.py +1 -1
- {pyfoxfile-0.24.4.dist-info → pyfoxfile-0.24.6.dist-info}/METADATA +1 -1
- pyfoxfile-0.24.6.dist-info/RECORD +10 -0
- pyfoxfile.py +3 -3
- pyfoxfile-0.24.4.dist-info/RECORD +0 -10
- {pyfoxfile-0.24.4.data → pyfoxfile-0.24.6.data}/scripts/foxneofile.py +0 -0
- {pyfoxfile-0.24.4.data → pyfoxfile-0.24.6.data}/scripts/neofoxfile.py +0 -0
- {pyfoxfile-0.24.4.dist-info → pyfoxfile-0.24.6.dist-info}/WHEEL +0 -0
- {pyfoxfile-0.24.4.dist-info → pyfoxfile-0.24.6.dist-info}/licenses/LICENSE +0 -0
- {pyfoxfile-0.24.4.dist-info → pyfoxfile-0.24.6.dist-info}/top_level.txt +0 -0
- {pyfoxfile-0.24.4.dist-info → pyfoxfile-0.24.6.dist-info}/zip-safe +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: 11/3/2025 Ver. 0.24.
|
|
17
|
+
$FileInfo: foxfile.py - Last Update: 11/3/2025 Ver. 0.24.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
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
pyfoxfile.py,sha256=CqnqeRqY4ditpbTBiuxuNMN95fiik_2Q7O6Hvgx0v34,602524
|
|
2
|
+
pyfoxfile-0.24.6.data/scripts/foxfile.py,sha256=oLJG9FTZ3Qj81-HPW2jeKd94bMgqAt-c0smTqNGP4eY,13975
|
|
3
|
+
pyfoxfile-0.24.6.data/scripts/foxneofile.py,sha256=vrQsZFkSyq5TqQmakzz3AtvxAqQTECTcb9JTzWYDzng,5128
|
|
4
|
+
pyfoxfile-0.24.6.data/scripts/neofoxfile.py,sha256=axk89rmrILol-ZNoTVj0wtTVvt8E_ovrq1oojSQKUj8,7114
|
|
5
|
+
pyfoxfile-0.24.6.dist-info/licenses/LICENSE,sha256=WM1VWxTUVrQbvEa-LC7cKTaBHXiqSTyYPoJvsZSbd7E,1513
|
|
6
|
+
pyfoxfile-0.24.6.dist-info/METADATA,sha256=o_429ls1JffYHJhH5V3cpkR-Eif1QD55SDDKfH0fi6Y,853
|
|
7
|
+
pyfoxfile-0.24.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
8
|
+
pyfoxfile-0.24.6.dist-info/top_level.txt,sha256=VTOkpGfBWHNht7FKfnbccd32n_Jgk8Df5NKKfzaliTc,10
|
|
9
|
+
pyfoxfile-0.24.6.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
10
|
+
pyfoxfile-0.24.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: 11/3/2025 Ver. 0.24.
|
|
17
|
+
$FileInfo: pyfoxfile.py - Last Update: 11/3/2025 Ver. 0.24.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
|
|
@@ -640,12 +640,12 @@ __project__ = __program_name__
|
|
|
640
640
|
__program_alt_name__ = __program_name__
|
|
641
641
|
__project_url__ = "https://github.com/GameMaker2k/PyFoxFile"
|
|
642
642
|
__project_release_url__ = __project_url__+"/releases/latest"
|
|
643
|
-
__version_info__ = (0, 24,
|
|
643
|
+
__version_info__ = (0, 24, 6, "RC 1", 1)
|
|
644
644
|
__version_date_info__ = (2025, 11, 3, "RC 1", 1)
|
|
645
645
|
__version_date__ = str(__version_date_info__[0]) + "." + str(
|
|
646
646
|
__version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
|
|
647
647
|
__revision__ = __version_info__[3]
|
|
648
|
-
__revision_id__ = "$Id:
|
|
648
|
+
__revision_id__ = "$Id: 05c7600a19a0abcabf9ecc0656c3a8d7fdee6a32 $"
|
|
649
649
|
if(__version_info__[4] is not None):
|
|
650
650
|
__version_date_plusrc__ = __version_date__ + \
|
|
651
651
|
"-" + str(__version_date_info__[4])
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
pyfoxfile.py,sha256=CoQpY5H0oK70fGDBRQYnbKV5871WFIKlIaAvddVDm-E,602524
|
|
2
|
-
pyfoxfile-0.24.4.data/scripts/foxfile.py,sha256=8runm28_u16tta8D1ufgGuwLKlDOLog5oQxe32zb00s,13975
|
|
3
|
-
pyfoxfile-0.24.4.data/scripts/foxneofile.py,sha256=vrQsZFkSyq5TqQmakzz3AtvxAqQTECTcb9JTzWYDzng,5128
|
|
4
|
-
pyfoxfile-0.24.4.data/scripts/neofoxfile.py,sha256=axk89rmrILol-ZNoTVj0wtTVvt8E_ovrq1oojSQKUj8,7114
|
|
5
|
-
pyfoxfile-0.24.4.dist-info/licenses/LICENSE,sha256=WM1VWxTUVrQbvEa-LC7cKTaBHXiqSTyYPoJvsZSbd7E,1513
|
|
6
|
-
pyfoxfile-0.24.4.dist-info/METADATA,sha256=6HVDXJfdDUahCnYaWFTcCuzvPnadgVLfH7qFRli4o8o,853
|
|
7
|
-
pyfoxfile-0.24.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
8
|
-
pyfoxfile-0.24.4.dist-info/top_level.txt,sha256=VTOkpGfBWHNht7FKfnbccd32n_Jgk8Df5NKKfzaliTc,10
|
|
9
|
-
pyfoxfile-0.24.4.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
10
|
-
pyfoxfile-0.24.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|