Skip to content

Commit c6039b1

Browse files
committed
Small update
1 parent 36a6d79 commit c6039b1

10 files changed

Lines changed: 66 additions & 10 deletions

FoxFile.fox

-47 Bytes
Binary file not shown.

KitsuneFile.kitsune

-51 Bytes
Binary file not shown.

foxfile.ini

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,3 +92,27 @@ extension = .\uC5EC\uC6B0
9292
newstyle = true
9393
advancedlist = true
9494
altinode = true
95+
96+
[基次内法伊鲁] ; Chinese phonetic for "KitsuneFile"
97+
len = 18
98+
hex = e59fbae6aca1e58685e6b395e4bc8ae9b281
99+
ver = 001
100+
name = JīCìNèiFǎYīLǔ
101+
magic = 基次内法伊鲁
102+
delimiter = \x00
103+
extension = .基次内
104+
newstyle = true
105+
advancedlist = true
106+
altinode = true
107+
108+
[키츠네파일] ; Korean phonetic for "KitsuneFile"
109+
len = 15
110+
hex = ed82a4ecb8a0eb84a4ed8c8cec9dbc
111+
ver = 001
112+
name = KicheunePa-il
113+
magic = 키츠네파일
114+
delimiter = \x00
115+
extension = .키츠네
116+
newstyle = true
117+
advancedlist = true
118+
altinode = true

foxfile.json

Lines changed: 32 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"config": {
33
"default": "FoxFile",
44
"proname": "PyFoxFile",
5-
"includedef": "true",
5+
"includedef": true,
66
"inmemfile": true,
77
"usespoolfile": false,
88
"spoolfilesize": 4194304,
@@ -18,7 +18,7 @@
1818
"extension": ".fox",
1919
"newstyle": true,
2020
"advancedlist": true,
21-
"altinode": true
21+
"altinode": false
2222
},
2323
"KitsuneFile": {
2424
"len": 11,
@@ -30,7 +30,7 @@
3030
"extension": ".kitsune",
3131
"newstyle": true,
3232
"advancedlist": true,
33-
"altinode": true
33+
"altinode": false
3434
},
3535
"キツネファイル": {
3636
"len": 21,
@@ -42,7 +42,7 @@
4242
"extension": ".キツネ",
4343
"newstyle": true,
4444
"advancedlist": true,
45-
"altinode": true
45+
"altinode": false
4646
},
4747
"きつねファイル": {
4848
"len": 21,
@@ -54,7 +54,7 @@
5454
"extension": ".きつね",
5555
"newstyle": true,
5656
"advancedlist": true,
57-
"altinode": true
57+
"altinode": false
5858
},
5959
"狐ファイル": {
6060
"len": 15,
@@ -66,7 +66,7 @@
6666
"extension": ".狐",
6767
"newstyle": true,
6868
"advancedlist": true,
69-
"altinode": true
69+
"altinode": false
7070
},
7171
"狐狸文件": {
7272
"len": 12,
@@ -78,7 +78,7 @@
7878
"extension": ".狐狸",
7979
"newstyle": true,
8080
"advancedlist": true,
81-
"altinode": true
81+
"altinode": false
8282
},
8383
"여우파일": {
8484
"len": 12,
@@ -90,6 +90,30 @@
9090
"extension": ".여우",
9191
"newstyle": true,
9292
"advancedlist": true,
93-
"altinode": true
93+
"altinode": false
94+
},
95+
"基次内法伊鲁": {
96+
"len": 18,
97+
"hex": "e59fbae6aca1e58685e6b395e4bc8ae9b281",
98+
"ver": "001",
99+
"name": "JīCìNèiFǎYīLǔ",
100+
"magic": "基次内法伊鲁",
101+
"delimiter": "\u0000",
102+
"extension": ".基次内",
103+
"newstyle": true,
104+
"advancedlist": true,
105+
"altinode": false
106+
},
107+
"키츠네파일": {
108+
"len": 15,
109+
"hex": "ed82a4ecb8a0eb84a4ed8c8cec9dbc",
110+
"ver": "001",
111+
"name": "KicheunePa-il",
112+
"magic": "키츠네파일",
113+
"delimiter": "\u0000",
114+
"extension": ".키츠네",
115+
"newstyle": true,
116+
"advancedlist": true,
117+
"altinode": false
94118
}
95119
}

pyfoxfile.py

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -610,8 +610,16 @@ def _get(section_dict, key, default=None):
610610
if not __use_ini_file__ and not __include_defaults__:
611611
__include_defaults__ = True
612612
if __include_defaults__:
613-
add_format(__file_format_multi_dict__, "FoxFile", "FoxFile", ".arc", "FoxFile")
614-
add_format(__file_format_multi_dict__, "NeoFile", "NeoFile", ".neo", "NeoFile")
613+
# Fox / Kitsune
614+
add_format(__file_format_multi_dict__, "FoxFile", "FoxFile", ".fox", "FoxFile")
615+
add_format(__file_format_multi_dict__, "KitsuneFile", "KitsuneFile", ".kitsune", "KitsuneFile")
616+
add_format(__file_format_multi_dict__, "キツネファイル", "キツネファイル", ".キツネ", "KitsuneFairu")
617+
add_format(__file_format_multi_dict__, "きつねファイル", "きつねファイル", ".きつね", "KitsuneFairu")
618+
add_format(__file_format_multi_dict__, "狐ファイル", "狐ファイル", ".狐", "KitsuneFairu")
619+
add_format(__file_format_multi_dict__, "狐狸文件", "狐狸文件", ".狐狸", "HúlíWénjiàn")
620+
add_format(__file_format_multi_dict__, "여우파일", "여우파일", ".여우", "YeouPa-il")
621+
add_format(__file_format_multi_dict__, "基次内法伊鲁", "基次内法伊鲁", ".基次内", "JīCìNèiFǎYīLǔ")
622+
add_format(__file_format_multi_dict__, "키츠네파일", "키츠네파일", ".키츠네", "KicheunePa-il")
615623

616624
# Pick a default if current default key is not present
617625
if __file_format_default__ not in __file_format_multi_dict__:

きつねファイル.きつね

-63 Bytes
Binary file not shown.

キツネファイル.キツネ

-61 Bytes
Binary file not shown.

狐ファイル.狐

-57 Bytes
Binary file not shown.

狐狸文件.狐狸

-54 Bytes
Binary file not shown.

여우파일.여우

-54 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)