File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -130,21 +130,21 @@ def TextUpper(text):
130130def 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
142142def 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():
154154def 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 ()
Original file line number Diff line number Diff line change @@ -216,4 +216,7 @@ This time update be about user securities 🔒
216216Remove 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
You can’t perform that action at this time.
0 commit comments