Compare commits

...

4 commits
v0.7.0 ... main

Author SHA1 Message Date
06fab427aa 界面优化
1.启动程序界面字体对齐
2.编辑实例名称时保持行高和实例名称位置不变
3.修改实例名称输入框添加可清除选项
4.打开配置路径按钮移到右侧按钮处
2025-03-22 20:39:56 +08:00
e3c2627fc5 发布v0.7.1版本 2025-03-10 01:00:49 +08:00
e4b93b94b1 新增功能:启动实例后自动打开网页面板 2025-03-10 00:59:58 +08:00
6e235a28c1 功能修复:更新源码时没有指定为远程分支 2025-03-10 00:04:46 +08:00
4 changed files with 27 additions and 14 deletions

View file

@ -1,5 +1,5 @@
{
"version": "v0.7.0",
"version": "v0.7.1",
"url": "ui/dist/index.html",
"log_level": "INFO",
"debug": false

View file

@ -43,7 +43,7 @@ command_list = {
"clone": lambda: f"git\\bin\\git -c lfs.concurrenttransfers=100 clone {build_base_url(mower_ng_git_url)} --branch slow",
"set_remote": lambda: f"..\\git\\bin\\git remote set-url origin {build_base_url(mower_ng_git_url)}",
"set_lfs": lambda: f"..\\git\\bin\\git config lfs.url {build_base_url(mower_ng_git_url)}/info/lfs",
"fetch": lambda: f"..\\git\\bin\\git fetch {build_base_url(mower_ng_git_url)} {config.conf.branch} --progress",
"fetch": lambda: f"..\\git\\bin\\git fetch origin {config.conf.branch} --progress",
"switch": lambda: f"..\\git\\bin\\git -c lfs.concurrenttransfers=100 switch -f {config.conf.branch} --progress",
"reset": lambda: f"..\\git\\bin\\git -c lfs.concurrenttransfers=200 reset --hard origin/{config.conf.branch}",
"pip_tools_install": lambda: f"..\\python\\Scripts\\pip install --no-cache-dir -i {mirror_list[config.conf.mirror]} pip-tools --no-warn-script-location",
@ -279,7 +279,9 @@ class Api:
)
return
try:
self.run("cli", "mower-ng", {"command": command, "path": path})
ret = self.run("cli", "mower-ng", {"command": command, "path": path})
if command == "launch" and ret == "success":
self.run("cli", "mower-ng", {"command": "webui", "path": path})
except Exception as e:
custom_event(LogType.error, f"{cli_command[command]} 失败 {repr(e)}")

View file

@ -1,4 +1,3 @@
import 'vfonts/Lato.css'
import 'vfonts/FiraCode.css'
import './styles/global.css'

View file

@ -175,8 +175,8 @@ async function handle_migrate(key) {
显示日志
</div>
</n-space>
<n-list class="instance-list" bordered>
<n-list-item>
<n-list class="instance_list" bordered>
<n-list-item class="instance_list_item">
<template #prefix>
<n-checkbox
v-model:checked="check_all"
@ -187,29 +187,26 @@ async function handle_migrate(key) {
>
</template>
</n-list-item>
<n-list-item v-for="(item, index) in conf.instances" :key="index">
<n-list-item class="instance_list_item" v-for="(item, index) in conf.instances" :key="index">
<template #prefix>
<n-checkbox v-model:checked="item.checked"></n-checkbox>
</template>
<n-space vertical>
<n-space v-if="update_instance_name_index != index">
<n-text>{{ item.name }}</n-text>
<n-text class="instance_name">{{ item.name }}</n-text>
<n-button size="tiny" @click="start_update_instance_name(index)">
<template #icon>
<n-icon :component="Pencil"></n-icon>
</template>
</n-button>
<n-button @click="open_folder(item.path)" size="tiny">
<template #icon>
<n-icon :component="Folder"></n-icon>
</template>
</n-button>
</n-space>
<n-input
v-else
class="instance_name_input"
:ref="(el) => setInstanceNameInputRef(el, index)"
v-model:value="item.name"
@blur="end_update_instance_name"
clearable
></n-input>
</n-space>
<template #suffix>
@ -234,6 +231,11 @@ async function handle_migrate(key) {
<n-icon :component="Stop"></n-icon>
</template>
</n-button>
<n-button type="primary" ghost size="small" @click="open_folder(item.path)">
<template #icon>
<n-icon :component="Folder"></n-icon>
</template>
</n-button>
<n-popconfirm @positive-click="delete_instance(index, item.path)">
<template #trigger>
<n-button type="error" ghost size="small">
@ -256,9 +258,18 @@ async function handle_migrate(key) {
.launch-btn {
height: 38px;
}
.instance-list {
.instance_list {
overflow: auto;
}
.instance_list_item {
height: 50px;
}
.instance_name {
margin-left: 12px;
}
.instance_name_input {
height: 35px;
}
.log {
min-height: 40vh;
max-height: 40vh;
@ -269,5 +280,6 @@ async function handle_migrate(key) {
}
.is_show_log_switch {
margin-right: 20px;
text-align: center;
}
</style>