Skip to content

Commit 0a26993

Browse files
committed
update: v8.0.3
1 parent 44e6ff1 commit 0a26993

5 files changed

Lines changed: 10 additions & 7 deletions

File tree

File renamed without changes.
File renamed without changes.
File renamed without changes.

exec.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -130,21 +130,21 @@ def TextUpper(text):
130130
def ManHelp():
131131
ManVer()
132132
now = NowDir()
133-
help_file = now + "/doc/help.md"
133+
help_file = now + "/doc/help.txt"
134134
isfile = Isfile(help_file)
135135
if isfile == -1:
136-
print("Error: No help.md file")
136+
print("Error: No help.txt file")
137137
return -1
138138
file = open(help_file, "rb")
139139
load = file.read()
140140
file.close()
141141
print(load.decode(encoding="utf-8")) # Prints
142142
def ManVer():
143143
now = NowDir()
144-
ver_file = now + "/doc/version.md"
144+
ver_file = now + "/doc/version.txt"
145145
isfile = Isfile(ver_file)
146146
if isfile == -1:
147-
print("Error: No version.md file")
147+
print("Error: No version.txt file")
148148
return -1
149149
file = open(ver_file, "rb")
150150
load = file.read()
@@ -154,10 +154,10 @@ def ManVer():
154154
def ManIndexErrorHelp(flag):
155155
print("error: No '%s' flags"%flag)
156156
now = NowDir()
157-
err_file = now + "/doc/error_help.md"
157+
err_file = now + "/doc/error_help.txt"
158158
isfile = Isfile(err_file)
159159
if isfile == -1:
160-
print("Error: No error_help.md file")
160+
print("Error: No error_help.txt file")
161161
return -1
162162
file = open(err_file, "rb")
163163
load = file.read()

versions.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,4 +216,7 @@ This time update be about user securities 🔒
216216
Remove test.txt, Etc bugs fixed.
217217

218218
### v8.0.2
219-
Changed the clint module used to use color when printing output to the rich module.
219+
Changed the clint module used to use color when printing output to the rich module.
220+
221+
### v8.0.3
222+
Change doc internal file format from md to txt

0 commit comments

Comments
 (0)