Skip to content

Commit a8779e0

Browse files
Add files via upload
1 parent ce24f89 commit a8779e0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

neofile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
Copyright 2018-2024 Game Maker 2k - http://intdb.sourceforge.net/
1515
Copyright 2018-2024 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
1616
17-
$FileInfo: neofile.py - Last Update: 11/15/2025 Ver. 0.27.2 RC 1 - Author: cooldude2k $
17+
$FileInfo: neofile.py - Last Update: 11/16/2025 Ver. 0.27.4 RC 1 - Author: cooldude2k $
1818
'''
1919

2020
from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes

pyneofile.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
Copyright 2018-2024 Game Maker 2k - http://intdb.sourceforge.net/
1515
Copyright 2018-2024 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
1616

17-
$FileInfo: pyneofile.py - Last Update: 11/15/2025 Ver. 0.27.2 RC 1 - Author: cooldude2k $
17+
$FileInfo: pyneofile.py - Last Update: 11/16/2025 Ver. 0.27.4 RC 1 - Author: cooldude2k $
1818
'''
1919

2020
from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes
@@ -655,12 +655,12 @@ def _get(section_dict, key, default=None):
655655
__program_alt_name__ = __program_name__
656656
__project_url__ = "https://github.com/GameMaker2k/PyNeoFile"
657657
__project_release_url__ = __project_url__+"/releases/latest"
658-
__version_info__ = (0, 27, 2, "RC 1", 1)
659-
__version_date_info__ = (2025, 11, 15, "RC 1", 1)
658+
__version_info__ = (0, 27, 4, "RC 1", 1)
659+
__version_date_info__ = (2025, 11, 16, "RC 1", 1)
660660
__version_date__ = str(__version_date_info__[0]) + "." + str(
661661
__version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
662662
__revision__ = __version_info__[3]
663-
__revision_id__ = "$Id$"
663+
__revision_id__ = "$Id: 466ec9714fb68d2bff146a8d7b570345b3ba6eb0 $"
664664
if(__version_info__[4] is not None):
665665
__version_date_plusrc__ = __version_date__ + \
666666
"-" + str(__version_date_info__[4])

0 commit comments

Comments
 (0)