Skip to content

Commit 132decc

Browse files
author
Kazuki Suzuki Przyborowski
committed
Small update
1 parent ba9f997 commit 132decc

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

pyneofile.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes
44

55
"""
6-
pyneofile.py — Alternate ArchiveFile core with Py2/3 compatible logic.
6+
pyneofile.py — Alternate NeoFile core with Py2/3 compatible logic.
77
88
Features:
99
- Pack / unpack / repack / archive_to_array
@@ -56,12 +56,12 @@
5656
__program_name__ = "PyNeoFile"
5757
__project__ = __program_name__
5858
__project_url__ = "https://github.com/GameMaker2k/PyNeoFile"
59-
__version_info__ = (0, 19, 10, "RC 1", 1)
60-
__version_date_info__ = (2025, 8, 15, "RC 1", 1)
59+
__version_info__ = (0, 20, 0, "RC 1", 1)
60+
__version_date_info__ = (2025, 8, 18, "RC 1", 1)
6161
__version_date__ = str(__version_date_info__[0]) + "." + str(
6262
__version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
6363
__revision__ = __version_info__[3]
64-
__revision_id__ = "$Id: f223ede8510b87bcffab7721f8b0f0171431dd4f $"
64+
__revision_id__ = "$Id$"
6565
if(__version_info__[4] is not None):
6666
__version_date_plusrc__ = __version_date__ + \
6767
"-" + str(__version_date_info__[4])
@@ -1122,7 +1122,7 @@ def _read_record_raw(fp, formatspecs):
11221122
return headersize_hex, fields_len_hex, vals, json_bytes, content_stored
11231123

11241124
def archivefilevalidate_neo(infile, formatspecs=None, verbose=False, return_details=False):
1125-
"""Validate an ArchiveFile using the alt parser."""
1125+
"""Validate an NeoFile using the alt parser."""
11261126
fs = _ensure_formatspecs(formatspecs)
11271127
details = []
11281128
ok_all = True
@@ -1483,7 +1483,7 @@ def convert_foreign_to_neo(infile, outfile=None, formatspecs=None,
14831483
compression="auto",
14841484
compression_level=None):
14851485
"""
1486-
Convert a foreign archive (zip/tar/rar/7z) into the alt ArchiveFile format.
1486+
Convert a foreign archive (zip/tar/rar/7z) into the alt NeoFile format.
14871487
Uses stdlib for zip/tar; requires 'rarfile' for RAR and 'py7zr' for 7z.
14881488
Returns bytes when outfile is None/'-'; otherwise writes a file.
14891489
"""

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "PyNeoFile"
3-
version = "0.19.10"
3+
version = "0.20.0"
44
readme = "README.md"
55
license = { text = "BSD-3-Clause" }
66
keywords = []

0 commit comments

Comments
 (0)