Skip to content

Commit deb206c

Browse files
committed
[vue3] publish 3.3.2
1 parent 77e71e3 commit deb206c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-web-terminal",
3-
"version": "3.3.1",
3+
"version": "3.3.2",
44
"description": "A beautiful web-side command line window plugin (native simulation). 一个漂亮的网页命令行插件(原生模拟)",
55
"license": "Apache-2.0",
66
"private": false,

publish.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
ENCODING = "gbk" if platform.system().lower() == 'windows' else 'utf-8'
1010

1111
def execute(command, with_result = False,encoding = ENCODING):
12-
print(f"calling: {command}")
12+
print(f"[calling]: {command}")
1313
if with_result:
1414
p = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, encoding=encoding)
1515
stdout,stderr = p.communicate()

src/Terminal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1137,7 +1137,7 @@ const _pushMessage = (message: Message | Array<Message> | string) => {
11371137
_pushMessage0(message)
11381138
_jumpToBottom()
11391139
1140-
if (message.type === 'json') {
1140+
if (typeof message != 'string' && message.type === 'json') {
11411141
setTimeout(() => {
11421142
_jumpToBottom()
11431143
}, 80)

0 commit comments

Comments
 (0)