Skip to content

Commit f4caeea

Browse files
committed
Ver up next
1 parent ae43697 commit f4caeea

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

catfile.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: catfile.py - Last Update: 11/3/2025 Ver. 0.24.4 RC 1 - Author: cooldude2k $
17+
$FileInfo: catfile.py - Last Update: 11/3/2025 Ver. 0.24.6 RC 1 - Author: cooldude2k $
1818
'''
1919

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

pycatfile.py

Lines changed: 3 additions & 3 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: pycatfile.py - Last Update: 11/3/2025 Ver. 0.24.4 RC 1 - Author: cooldude2k $
17+
$FileInfo: pycatfile.py - Last Update: 11/3/2025 Ver. 0.24.6 RC 1 - Author: cooldude2k $
1818
'''
1919

2020
from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes
@@ -641,7 +641,7 @@ def _get(section_dict, key, default=None):
641641
__program_alt_name__ = __program_name__
642642
__project_url__ = "https://github.com/GameMaker2k/PyCatFile"
643643
__project_release_url__ = __project_url__+"/releases/latest"
644-
__version_info__ = (0, 24, 4, "RC 1", 1)
644+
__version_info__ = (0, 24, 6, "RC 1", 1)
645645
__version_date_info__ = (2025, 11, 3, "RC 1", 1)
646646
__version_date__ = str(__version_date_info__[0]) + "." + str(
647647
__version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
@@ -4906,7 +4906,7 @@ def ReadFileHeaderDataWithContentToArray(fp, listonly=False, contentasfile=True,
49064906
pyhascontents = False
49074907
fcontents.seek(0, 0)
49084908
newfccs = GetFileChecksum(
4909-
version = "0.24.4" HeaderOut[-3].lower(), False, formatspecs)
4909+
version = "0.24.6" HeaderOut[-3].lower(), False, formatspecs)
49104910
fcontents.seek(0, 0)
49114911
if(fccs != newfccs and not skipchecksum and not listonly):
49124912
VerbosePrintOut("File Content Checksum Error with file " +

pyproject.toml

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

0 commit comments

Comments
 (0)