Skip to content

Commit ff04dd3

Browse files
committedJan 28, 2021
5.1.4 publish
1 parent 0c19762 commit ff04dd3

26 files changed

+28699
-2390
lines changed
 

‎.idea/workspace.xml

+21-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎CHANGELOG.txt

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
5.1.3:
1+
NewLifeUtils 5.1.4:
2+
- Fix: CSM - Shell() not working (-------)
3+
- Fix: LM - rea() not working (-------)
4+
- Removal: Logger smart input future disabled (-------)
5+
- Removal: CSM {} from start eveny (-------)
6+
7+
NewLifeUtils 5.1.3:
28
- Addition: RequestModule (8778255)
39
- Addition: requirements in setup.py (1a2415d)
410
- Addition: license in setup.py (84c1215)

‎NLU Config/logs/log_28-01-2021_21-05-01.log

+28,662
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[21:07:30] [L] My Cmd : Welcome to My CMD
2+
[21:07:30] [L] My Cmd : {}

‎NewLifeUtils.egg-info/PKG-INFO

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: NewLifeUtils
3-
Version: 5.1.3
3+
Version: 5.1.4
44
Summary: View changelog.txt at https://raw.githubusercontent.com/NewLife1324/NewLifeUtils-Dev/main/CHANGELOG.txt
55
Home-page: https://github.com/NewLife1324/NewLifeUtils-Dev
66
Author: New Life

‎NewLifeUtils/CustomShellModule.py

-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,6 @@ def run(console):
188188
class initDefaultTask_(Task):
189189
def execute(console):
190190
log(f'{translation["welcome"]} {console.cmdname}')
191-
log(console.fist_completer)
192191

193192
class exitDefaultTask_(Task):
194193
def execute(console):

‎NewLifeUtils/LoggerModule.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1207,7 +1207,7 @@ def smart_input(text="", completes=None, end="\n"):
12071207
f"{ACC.bcustomrgb(0, 43, 112)}{ACC.customrgb(235, 54, 30)}{message}",
12081208
end="",
12091209
)
1210-
readed = smart_input(completes=completion)
1210+
readed = input()
12111211

12121212
out(
12131213
MCC.up(2)

‎NewLifeUtils/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "5.1.3"
1+
__version__ = "5.1.4"
-64 Bytes
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.

‎build/lib/NewLifeUtils/ColorModule.py

-252
This file was deleted.

‎build/lib/NewLifeUtils/CustomShellModule.py

-318
This file was deleted.

‎build/lib/NewLifeUtils/DatabaseManageModule.py

-2
This file was deleted.

‎build/lib/NewLifeUtils/ExceptModule.py

-78
This file was deleted.

‎build/lib/NewLifeUtils/FileModule.py

-90
This file was deleted.

‎build/lib/NewLifeUtils/LoggerModule.py

-1,225
This file was deleted.

‎build/lib/NewLifeUtils/RequestModule.py

-19
This file was deleted.

‎build/lib/NewLifeUtils/StringUtilModule.py

-57
This file was deleted.

‎build/lib/NewLifeUtils/TableBuildModule.py

-226
This file was deleted.

‎build/lib/NewLifeUtils/UtilsModule.py

-116
This file was deleted.

‎build/lib/NewLifeUtils/__init__.py

-1
This file was deleted.

‎dist/NewLifeUtils-5.1.3.tar.gz

-19.1 KB
Binary file not shown.

‎releases/NewLifeUtils-5.1.4.tar.gz

19.1 KB
Binary file not shown.

‎test.py

+4
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,8 @@ def smart_input(text="", completes={}, end="\n"):
104104

105105

106106
if __name__ == "__main__":
107+
from NewLifeUtils.CustomShellModule import Shell
108+
c = Shell()
109+
c.main()
110+
107111
print("Hello World")

0 commit comments

Comments
 (0)
Please sign in to comment.