Skip to content

Commit dff00a0

Browse files
Add files via upload
1 parent be41f64 commit dff00a0

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

archivefile.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: archivefile.py - Last Update: 2/6/2026 Ver. 0.28.4 RC 1 - Author: cooldude2k $
17+
$FileInfo: archivefile.py - Last Update: 2/6/2026 Ver. 0.28.6 RC 1 - Author: cooldude2k $
1818
'''
1919

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

archivefile_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: archivefile_py3.py - Last Update: 2/6/2026 Ver. 0.28.4 RC 1 - Author: cooldude2k $
16+
$FileInfo: archivefile_py3.py - Last Update: 2/6/2026 Ver. 0.28.6 RC 1 - Author: cooldude2k $
1717
'''
1818

1919
from __future__ import annotations

phparchivefile.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/PyArchiveFile";
2323
$info['version_info'] = [0, 13, 14, "RC 1", 1];
24-
$info['version_id'] = "$Id: 2c3b873073fd5f54699d9fa206329095cac3bffa $";
24+
$info['version_id'] = "$Id: de25338029a21e1c71283b25640d01ff93cd747c $";
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) {

pyarchivefile_py3.py

Lines changed: 4 additions & 4 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: pyarchivefile.py - Last Update: 2/6/2026 Ver. 0.28.4 RC 1 - Author: cooldude2k $
17+
$FileInfo: pyarchivefile.py - Last Update: 2/6/2026 Ver. 0.28.6 RC 1 - Author: cooldude2k $
1818
'''
1919

2020
import io
@@ -693,12 +693,12 @@ def _get(section_dict, key, default=None):
693693
__program_alt_name__ = __program_name__
694694
__project_url__ = "https://github.com/GameMaker2k/PyArchiveFile"
695695
__project_release_url__ = __project_url__+"/releases/latest"
696-
__version_info__ = (0, 28, 4, "RC 1", 1)
696+
__version_info__ = (0, 28, 6, "RC 1", 1)
697697
__version_date_info__ = (2026, 2, 6, "RC 1", 1)
698698
__version_date__ = str(__version_date_info__[0]) + "." + str(
699699
__version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
700700
__revision__ = __version_info__[3]
701-
__revision_id__ = "$Id: ae96f8882572525e371a25abf8a7e26aa0d7f06f $"
701+
__revision_id__ = "$Id$"
702702
if(__version_info__[4] is not None):
703703
__version_date_plusrc__ = __version_date__ + \
704704
"-" + str(__version_date_info__[4])
@@ -11901,7 +11901,7 @@ def data_url_decode(data_url):
1190111901
__version_date__ = str(__version_date_info__[0])+"."+str(__version_date_info__[
1190211902
1]).zfill(2)+"."+str(__version_date_info__[2]).zfill(2)
1190311903
__revision__ = __version_info__[3]
11904-
__revision_id__ = "$Id: ae96f8882572525e371a25abf8a7e26aa0d7f06f $"
11904+
__revision_id__ = "$Id: 1b130a723cd130b13b2e0e3e5f606a1478c7a6f5 $"
1190511905
if(__version_info__[4] is not None):
1190611906
__version_date_plusrc__ = __version_date__ + \
1190711907
"-"+str(__version_date_info__[4])

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "PyArchiveFile"
3-
version = "0.28.4"
3+
version = "0.28.6"
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: 2/6/2026 Ver. 0.28.4 RC 1 - Author: cooldude2k $
16+
$FileInfo: pyshell-old.py - Last Update: 2/6/2026 Ver. 0.28.6 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: 2/6/2026 Ver. 0.28.4 RC 1 - Author: cooldude2k $
16+
$FileInfo: pyshell.py - Last Update: 2/6/2026 Ver. 0.28.6 RC 1 - Author: cooldude2k $
1717
'''
1818

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

setup.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: setup.py - Last Update: 2/6/2026 Ver. 0.28.4 RC 1 - Author: cooldude2k $
16+
$FileInfo: setup.py - Last Update: 2/6/2026 Ver. 0.28.6 RC 1 - Author: cooldude2k $
1717
'''
1818

1919
import os

0 commit comments

Comments
 (0)