Skip to content

Commit 5130468

Browse files
authored
Add files via upload
1 parent 64bafa0 commit 5130468

8 files changed

Lines changed: 13 additions & 36 deletions

File tree

catfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
Copyright 2018-2026 Game Maker 2k - http://intdb.sourceforge.net/
1515
Copyright 2018-2026 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
1616
17-
$FileInfo: catfile.py - Last Update: 2/3/2026 Ver. 0.28.0 RC 1 - Author: cooldude2k $
17+
$FileInfo: catfile.py - Last Update: 2/4/2026 Ver. 0.28.2 RC 1 - Author: cooldude2k $
1818
'''
1919

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

catfile_py3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
Copyright 2018-2026 Game Maker 2k - http://intdb.sourceforge.net/
1414
Copyright 2018-2026 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
1515
16-
$FileInfo: catfile_py3.py - Last Update: 2/3/2026 Ver. 0.28.0 RC 1 - Author: cooldude2k $
16+
$FileInfo: catfile_py3.py - Last Update: 2/4/2026 Ver. 0.28.2 RC 1 - Author: cooldude2k $
1717
'''
1818

1919
from __future__ import annotations

phpcatfile.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
$info['project'] = $info['program_name'];
2222
$info['project_url'] = "https://github.com/GameMaker2k/PyCatFile";
2323
$info['version_info'] = [0, 13, 14, "RC 1", 1];
24-
$info['version_id'] = "$Id$";
24+
$info['version_id'] = "$Id: 203d6646096ff91f8656fba70255779e1f9705f8 $";
2525
$info['version_date_info'] = [2024, 7, 10, "RC 1", 1];
2626
$info['version_date'] = $info['version_date_info'][0].".".str_pad($info['version_date_info'][1], 2, "-=", STR_PAD_LEFT).".".str_pad($info['version_date_info'][2], 2, "-=", STR_PAD_LEFT);
2727
if ($info['version_info'][4] !== null) {

pycatfile.py

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

17-
$FileInfo: pycatfile.py - Last Update: 2/3/2026 Ver. 0.28.0 RC 1 - Author: cooldude2k $
17+
$FileInfo: pycatfile.py - Last Update: 2/4/2026 Ver. 0.28.2 RC 1 - Author: cooldude2k $
1818
'''
1919

2020
from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes
@@ -661,8 +661,8 @@ def _get(section_dict, key, default=None):
661661
__program_alt_name__ = __program_name__
662662
__project_url__ = "https://github.com/GameMaker2k/PyCatFile"
663663
__project_release_url__ = __project_url__+"/releases/latest"
664-
__version_info__ = (0, 28, 0, "RC 1", 1)
665-
__version_date_info__ = (2026, 2, 3, "RC 1", 1)
664+
__version_info__ = (0, 28, 2, "RC 1", 1)
665+
__version_date_info__ = (2026, 2, 4, "RC 1", 1)
666666
__version_date__ = str(__version_date_info__[0]) + "." + str(
667667
__version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
668668
__revision__ = __version_info__[3]

pycatfile_py3.py

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

17-
$FileInfo: pycatfile.py - Last Update: 2/3/2026 Ver. 0.28.0 RC 1 - Author: cooldude2k $
17+
$FileInfo: pycatfile.py - Last Update: 2/4/2026 Ver. 0.28.2 RC 1 - Author: cooldude2k $
1818
'''
1919

2020
import io
@@ -690,12 +690,12 @@ def _get(section_dict, key, default=None):
690690
__program_alt_name__ = __program_name__
691691
__project_url__ = "https://github.com/GameMaker2k/PyCatFile"
692692
__project_release_url__ = __project_url__+"/releases/latest"
693-
__version_info__ = (0, 28, 0, "RC 1", 1)
694-
__version_date_info__ = (2026, 2, 3, "RC 1", 1)
693+
__version_info__ = (0, 28, 2, "RC 1", 1)
694+
__version_date_info__ = (2026, 2, 4, "RC 1", 1)
695695
__version_date__ = str(__version_date_info__[0]) + "." + str(
696696
__version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
697697
__revision__ = __version_info__[3]
698-
__revision_id__ = "$Id: b57e93ea8432b167bfa598f4ffeb5a66df229068 $"
698+
__revision_id__ = "$Id$"
699699
if(__version_info__[4] is not None):
700700
__version_date_plusrc__ = __version_date__ + \
701701
"-" + str(__version_date_info__[4])
@@ -11891,29 +11891,6 @@ def data_url_decode(data_url):
1189111891
if((__use_http_lib__ == "httpx" or __use_http_lib__ == "requests") and not havehttpx and not haverequests):
1189211892
__use_http_lib__ = "urllib"
1189311893

11894-
__program_name__ = "PyNeoWWW-Get"
11895-
__program_alt_name__ = "PyWWWGet"
11896-
__program_small_name__ = "wwwget"
11897-
__project__ = __program_name__
11898-
__project_url__ = "https://github.com/GameMaker2k/PyNeoWWW-Get"
11899-
__version_info__ = (2, 2, 0, "RC 1", 1)
11900-
__version_date_info__ = (2026, 1, 23, "RC 1", 1)
11901-
__version_date__ = str(__version_date_info__[0])+"."+str(__version_date_info__[
11902-
1]).zfill(2)+"."+str(__version_date_info__[2]).zfill(2)
11903-
__revision__ = __version_info__[3]
11904-
__revision_id__ = "$Id$"
11905-
if(__version_info__[4] is not None):
11906-
__version_date_plusrc__ = __version_date__ + \
11907-
"-"+str(__version_date_info__[4])
11908-
if(__version_info__[4] is None):
11909-
__version_date_plusrc__ = __version_date__
11910-
if(__version_info__[3] is not None):
11911-
__version__ = str(__version_info__[0])+"."+str(__version_info__[1])+"."+str(
11912-
__version_info__[2])+" "+str(__version_info__[3])
11913-
if(__version_info__[3] is None):
11914-
__version__ = str(
11915-
__version_info__[0])+"."+str(__version_info__[1])+"."+str(__version_info__[2])
11916-
1191711894
PyBitness = platform.architecture()
1191811895
if(PyBitness == "32bit" or PyBitness == "32"):
1191911896
PyBitness = "32"

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.28.0"
3+
version = "0.28.2"
44
readme = "README.md"
55
license = { text = "BSD-3-Clause" }
66
keywords = []

pyshell-old.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
Copyright 2018-2024 Game Maker 2k - http://intdb.sourceforge.net/
1414
Copyright 2018-2024 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
1515
16-
$FileInfo: pyshell-old.py - Last Update: 8/26/2025 Ver. 0.21.4 RC 1 - Author: cooldude2k $
16+
$FileInfo: pyshell-old.py - Last Update: 2/4/2026 Ver. 0.28.2 RC 1 - Author: cooldude2k $
1717
'''
1818

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

pyshell.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
Copyright 2018-2024 Game Maker 2k - http://intdb.sourceforge.net/
1414
Copyright 2018-2024 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
1515
16-
$FileInfo: pyshell.py - Last Update: 8/26/2025 Ver. 0.21.4 RC 1 - Author: cooldude2k $
16+
$FileInfo: pyshell.py - Last Update: 2/4/2026 Ver. 0.28.2 RC 1 - Author: cooldude2k $
1717
'''
1818

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

0 commit comments

Comments
 (0)