PyArchiveFile 0.19.10__tar.gz → 0.20.2__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.
- {pyarchivefile-0.19.10 → pyarchivefile-0.20.2}/PKG-INFO +1 -1
- {pyarchivefile-0.19.10 → pyarchivefile-0.20.2}/PyArchiveFile.egg-info/PKG-INFO +1 -1
- {pyarchivefile-0.19.10 → pyarchivefile-0.20.2}/archivefile.py +1 -1
- {pyarchivefile-0.19.10 → pyarchivefile-0.20.2}/pyarchivefile.py +6 -4
- {pyarchivefile-0.19.10 → pyarchivefile-0.20.2}/pyproject.toml +1 -1
- {pyarchivefile-0.19.10 → pyarchivefile-0.20.2}/LICENSE +0 -0
- {pyarchivefile-0.19.10 → pyarchivefile-0.20.2}/PyArchiveFile.egg-info/SOURCES.txt +0 -0
- {pyarchivefile-0.19.10 → pyarchivefile-0.20.2}/PyArchiveFile.egg-info/dependency_links.txt +0 -0
- {pyarchivefile-0.19.10 → pyarchivefile-0.20.2}/PyArchiveFile.egg-info/top_level.txt +0 -0
- {pyarchivefile-0.19.10 → pyarchivefile-0.20.2}/PyArchiveFile.egg-info/zip-safe +0 -0
- {pyarchivefile-0.19.10 → pyarchivefile-0.20.2}/README.md +0 -0
- {pyarchivefile-0.19.10 → pyarchivefile-0.20.2}/neoarchivefile.py +0 -0
- {pyarchivefile-0.19.10 → pyarchivefile-0.20.2}/setup.cfg +0 -0
- {pyarchivefile-0.19.10 → pyarchivefile-0.20.2}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyArchiveFile
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.20.2
|
|
4
4
|
Summary: A tar like file format name archivefile.
|
|
5
5
|
Home-page: https://github.com/GameMaker2k/PyArchiveFile
|
|
6
6
|
Download-URL: https://github.com/GameMaker2k/PyArchiveFile/archive/master.tar.gz
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyArchiveFile
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.20.2
|
|
4
4
|
Summary: A tar like file format name archivefile.
|
|
5
5
|
Home-page: https://github.com/GameMaker2k/PyArchiveFile
|
|
6
6
|
Download-URL: https://github.com/GameMaker2k/PyArchiveFile/archive/master.tar.gz
|
|
@@ -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: archivefile.py - Last Update:
|
|
17
|
+
$FileInfo: archivefile.py - Last Update: 8/20/2025 Ver. 0.20.2 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: pyarchivefile.py - Last Update: 8/
|
|
17
|
+
$FileInfo: pyarchivefile.py - Last Update: 8/20/2025 Ver. 0.20.2 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
|
|
@@ -324,6 +324,8 @@ if not __use_ini_file__ and not __include_defaults__:
|
|
|
324
324
|
if(__include_defaults__):
|
|
325
325
|
if("ArchiveFile" not in __file_format_multi_dict__):
|
|
326
326
|
__file_format_multi_dict__.update( { 'ArchiveFile': {'format_name': "ArchiveFile", 'format_magic': "ArchiveFile", 'format_len': 11, 'format_hex': "4172636869766546696c65", 'format_delimiter': "\x00", 'format_ver': "001", 'new_style': True, 'use_advanced_list': True, 'use_alt_inode': False, 'format_extension': ".arc" } } )
|
|
327
|
+
if("NeoFile" not in __file_format_multi_dict__):
|
|
328
|
+
__file_format_multi_dict__.update( { 'NeoFile': {'format_name': "NeoFile", 'format_magic': "NeoFile", 'format_len': 7, 'format_hex': "4e656f46696c65", 'format_delimiter': "\x00", 'format_ver': "001", 'new_style': True, 'use_advanced_list': True, 'use_alt_inode': False, 'format_extension': ".neo" } } )
|
|
327
329
|
if(__file_format_default__ not in __file_format_multi_dict__):
|
|
328
330
|
__file_format_default__ = next(iter(__file_format_multi_dict__))
|
|
329
331
|
__file_format_name__ = __file_format_multi_dict__[__file_format_default__]['format_name']
|
|
@@ -339,12 +341,12 @@ __file_format_extension__ = __file_format_multi_dict__[__file_format_default__][
|
|
|
339
341
|
__file_format_dict__ = __file_format_multi_dict__[__file_format_default__]
|
|
340
342
|
__project__ = __program_name__
|
|
341
343
|
__project_url__ = "https://github.com/GameMaker2k/PyArchiveFile"
|
|
342
|
-
__version_info__ = (0,
|
|
343
|
-
__version_date_info__ = (2025, 8,
|
|
344
|
+
__version_info__ = (0, 20, 2, "RC 1", 1)
|
|
345
|
+
__version_date_info__ = (2025, 8, 20, "RC 1", 1)
|
|
344
346
|
__version_date__ = str(__version_date_info__[0]) + "." + str(
|
|
345
347
|
__version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
|
|
346
348
|
__revision__ = __version_info__[3]
|
|
347
|
-
__revision_id__ = "$Id:
|
|
349
|
+
__revision_id__ = "$Id: 6baa06f5620d5e2d672deb340db3c05202ab1ee9 $"
|
|
348
350
|
if(__version_info__[4] is not None):
|
|
349
351
|
__version_date_plusrc__ = __version_date__ + \
|
|
350
352
|
"-" + str(__version_date_info__[4])
|
|
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
|