Skip to content

Commit 5649cb2

Browse files
committed
Small update
1 parent 93ca843 commit 5649cb2

File tree

9 files changed

+49
-10
lines changed

9 files changed

+49
-10
lines changed

gitattributes.txt

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
*.py ident
2+
*.php ident
3+
* text eol=lf
4+
5+
#
6+
## These files are binary and should be left untouched
7+
#
8+
9+
# (binary is a macro for -text -diff)
10+
*.png binary
11+
*.webp binary
12+
*.jpg binary
13+
*.jpeg binary
14+
*.gif binary
15+
*.ico binary
16+
*.mov binary
17+
*.mp4 binary
18+
*.mp3 binary
19+
*.flv binary
20+
*.fla binary
21+
*.swf binary
22+
*.gz binary
23+
*.zip binary
24+
*.7z binary
25+
*.ttf binary
26+
*.eot binary
27+
*.woff binary
28+
*.pyc binary
29+
*.pdf binary
30+
*.fox binary
31+
*.kitsune binary
32+
*.UwU binary
33+
*.キツネ binary
34+
*.きつね binary
35+
*.狐 binary
36+
*.狐狸 binary
37+
*.여우 binary
38+
*.基次内 binary
39+
*.키츠네 binary

pyfoxfile/__init__.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: __init__.py - Last Update: 3/4/2026 Ver. 0.30.8 RC 1 - Author: cooldude2k $
17+
$FileInfo: __init__.py - Last Update: 3/7/2026 Ver. 0.30.10 RC 1 - Author: cooldude2k $
1818
'''
1919

2020
from .pyfoxfile import *

pyfoxfile/__main__.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: __main__.py - Last Update: 3/4/2026 Ver. 0.30.8 RC 1 - Author: cooldude2k $
16+
$FileInfo: __main__.py - Last Update: 3/7/2026 Ver. 0.30.10 RC 1 - Author: cooldude2k $
1717
'''
1818

1919
from __future__ import annotations

pyfoxfile/pyfoxfile.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: pyfoxfile.py - Last Update: 3/4/2026 Ver. 0.30.8 RC 1 - Author: cooldude2k $
17+
$FileInfo: pyfoxfile.py - Last Update: 3/7/2026 Ver. 0.30.10 RC 1 - Author: cooldude2k $
1818
'''
1919

2020
import io
@@ -794,8 +794,8 @@ def _get(section_dict, key, default=None):
794794
__program_alt_name__ = __program_name__
795795
__project_url__ = "https://github.com/GameMaker2k/PyFoxFile"
796796
__project_release_url__ = __project_url__+"/releases/latest"
797-
__version_info__ = (0, 30, 8, "RC 1", 1)
798-
__version_date_info__ = (2026, 3, 4, "RC 1", 1)
797+
__version_info__ = (0, 30, 10, "RC 1", 1)
798+
__version_date_info__ = (2026, 3, 7, "RC 1", 1)
799799
__version_date__ = str(__version_date_info__[0]) + "." + str(
800800
__version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
801801
__revision__ = __version_info__[3]

pyfoxfile/pywwwget.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: pywwwget.py - Last Update: 3/4/2026 Ver. 0.30.8 RC 1 - Author: cooldude2k $
17+
$FileInfo: pywwwget.py - Last Update: 3/7/2026 Ver. 0.30.10 RC 1 - Author: cooldude2k $
1818
'''
1919

2020
import os

pyproject.toml

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

1919
import os

0 commit comments

Comments
 (0)