fix: tighten request table rows
This commit is contained in:
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@@ -7,7 +7,7 @@ on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
tag:
|
||||
description: "Release tag, for example v1.2.1"
|
||||
description: "Release tag, for example v1.2.2"
|
||||
required: true
|
||||
|
||||
permissions:
|
||||
|
||||
@@ -8,7 +8,7 @@ The project is designed for tools such as Claude Code, Cline, Continue, OpenCode
|
||||
|
||||
## Current Version
|
||||
|
||||
The current desktop line is `v1.2.1`.
|
||||
The current desktop line is `v1.2.2`.
|
||||
|
||||
Release builds are produced by GitHub Actions for:
|
||||
|
||||
@@ -306,7 +306,7 @@ The desktop bundle name is always `Lingma IPC Proxy`.
|
||||
|
||||
The release workflow is triggered by:
|
||||
|
||||
- pushing a tag such as `v1.2.1`
|
||||
- pushing a tag such as `v1.2.2`
|
||||
- manually running the `Release` workflow with a tag input
|
||||
|
||||
Planned improvements:
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
## 当前版本
|
||||
|
||||
当前桌面端版本线:`v1.2.1`
|
||||
当前桌面端版本线:`v1.2.2`
|
||||
|
||||
GitHub Actions 会在 Release 中产出:
|
||||
|
||||
@@ -415,8 +415,8 @@ Lingma IPC Proxy
|
||||
发布方式:
|
||||
|
||||
```bash
|
||||
git tag v1.2.1
|
||||
git push origin v1.2.1
|
||||
git tag v1.2.2
|
||||
git push origin v1.2.2
|
||||
```
|
||||
|
||||
也可以在 GitHub Actions 页面手动运行 `Release` workflow,并输入 tag。
|
||||
|
||||
@@ -222,7 +222,7 @@ onUnmounted(() => {
|
||||
<span class="status-dot" :class="{ running: status.running }"></span>
|
||||
<div>
|
||||
<strong>{{ status.running ? 'Proxy Running' : 'Proxy Stopped' }}</strong>
|
||||
<small>v1.2.1</small>
|
||||
<small>v1.2.2</small>
|
||||
</div>
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
@@ -834,10 +834,11 @@ button {
|
||||
|
||||
.model-meta,
|
||||
.cell-sub {
|
||||
margin-top: 3px;
|
||||
margin-top: 1px;
|
||||
overflow: hidden;
|
||||
color: var(--muted);
|
||||
font-size: 12px;
|
||||
line-height: 1.15;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
@@ -877,7 +878,7 @@ button {
|
||||
|
||||
.requests-panel .table-scroll {
|
||||
flex: 0 0 auto;
|
||||
--request-row-height: 72px;
|
||||
--request-row-height: 42px;
|
||||
--request-head-height: 43px;
|
||||
min-height: calc(var(--request-head-height) + var(--request-row-height));
|
||||
max-height: calc(var(--request-head-height) + var(--request-row-height) * 5);
|
||||
@@ -914,6 +915,12 @@ button {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.data-table tbody td {
|
||||
padding-top: 3px;
|
||||
padding-bottom: 3px;
|
||||
line-height: 1.12;
|
||||
}
|
||||
|
||||
.data-table th {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
@@ -966,10 +973,10 @@ button {
|
||||
.method-chip {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
min-height: 24px;
|
||||
padding: 0 8px;
|
||||
min-height: 22px;
|
||||
padding: 0 7px;
|
||||
border-radius: 7px;
|
||||
font-size: 12px;
|
||||
font-size: 11px;
|
||||
font-weight: 680;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user