Skip to content

Commit f1f0a6e

Browse files
committed
更新版本V0.0.53
更新版本V0.0.53
1 parent 2c71524 commit f1f0a6e

File tree

13 files changed

+192
-76
lines changed

13 files changed

+192
-76
lines changed

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,19 @@
2828

2929
# 版本更新介绍
3030

31-
> 最新更新:2025-04-28
31+
> 最新更新:2025-04-30
3232
33-
> 0.0.52 公测版本介绍 如果你要使用本插件请务必进我们的官方 QQ 群(1018231382)!
33+
> 0.0.53 公测版本介绍 如果你要使用本插件请务必进我们的官方 QQ 群(1018231382)!
34+
>
35+
> 1. 功能优化:修复了在日间模式下的Lora详细内容的按钮样式看不到问题
36+
>
37+
> 2. 修复了issues [#14](https://github.com/weilin9999/WeiLin-Comfyui-Tools/issues/14#issuecomment-2840561525) 当第一行只有一个Tag的时候会触发换行不添加末尾逗号
38+
>
39+
40+
<details>
41+
<summary>点击查看往期更多更新内容</summary>
42+
43+
> 0.0.52 公测版本介绍 2025-04-28
3444
>
3545
> 1. 新增功能:Lora详细界面内可以自定义自己的字段
3646
>
@@ -41,9 +51,6 @@
4151
> 4. Lora获取C站数据的时候可以一并获取封面了
4252
>
4353
44-
<details>
45-
<summary>点击查看往期更多更新内容</summary>
46-
4754
> 0.0.48 公测版本介绍 2025-04-25
4855
>
4956
> 1. 新增辅助功能,限制了窗口的移动范围防止超出可视范围,以及悬浮球也限制了移动范围

README_EN.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,19 @@ Due to limited personal time, the frequency of updating plug-ins will not be ver
2424

2525
# Version update introduction
2626

27-
> Last updated: 2025-04-28
27+
> Last updated: 2025-04-30
2828
29-
> 0.0.52 Public Beta Version Introduction: If you want to use this plugin, please be sure to join our official QQ group (1018231382)!
29+
> 0.0.53 Public Beta Version Introduction: If you want to use this plugin, please be sure to join our official QQ group (1018231382)!
30+
>
31+
> 1. Feature optimization: Fixed the issue that Lora details button style could not be seen in daytime mode
32+
>
33+
> 2. Repair the issues [#14](https://github.com/weilin9999/WeiLin-Comfyui-Tools/issues/14#issuecomment-2840561525) When the first line has only one Tag, a newline is triggered without the trailing comma
34+
>
35+
36+
<details>
37+
<summary>Click here for more updates from the past</summary>
38+
39+
> 0.0.52 Public Beta Version Last updated: 2025-04-28
3040
>
3141
> 1. New feature: Within the Lora detailed interface, you can customize your own fields
3242
>
@@ -37,9 +47,6 @@ Due to limited personal time, the frequency of updating plug-ins will not be ver
3747
> 4. When Lora acquires data from C Station, it can also obtain the cover at the same time
3848
>
3949
40-
<details>
41-
<summary>Click here for more updates from the past</summary>
42-
4350
> 0.0.48 Public Beta Version 2025-04-25
4451
>
4552
> 1. New auxiliary functions have been added, which limit the movement range of the window to prevent it from exceeding the visible range, and the floating ball also restricts the movement range

dist/javascript/main.entry.js

Lines changed: 27 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/javascript/main.entry.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/style.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "weilin-comfyui-tools"
33
description = "让你在 ComfyUI 中快捷的使用提示词工具 Quickly use the prompt word tool in ComfyUI"
4-
version = "0.0.52"
4+
version = "0.0.53"
55
license = {file = "LICENSE"}
66
dependencies = []
77

src/src/i18n/locales/en_US.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,8 @@ export default {
322322
jsonErrorMesg: "The format of the JSON file is incorrect",
323323
pleaseAddSub: "Please add the secondary classification first",
324324
pleaseAddMainCeb: "Please add the first-level category first",
325-
pleaseSelectGroup: "Please select the complete grouping path"
325+
pleaseSelectGroup: "Please select the complete grouping path",
326+
isLoadingPleaseWait: "It is being executed. Please check the progress in the background",
326327
},
327328
cloudWindow:{
328329
"windowTitle": "Share Cloud Window",

src/src/i18n/locales/zh_CN.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,8 @@ export default {
338338
jsonErrorMesg: "JSON文件格式错误",
339339
pleaseAddSub: "请先添加二级分类",
340340
pleaseAddMainCeb: "请先添加一级分类",
341-
pleaseSelectGroup: "请选择完整的分组路径"
341+
pleaseSelectGroup: "请选择完整的分组路径",
342+
isLoadingPleaseWait: "正在执行中,请查看后台进度",
342343
},
343344
history: {
344345
"title": "历史记录",

src/src/utils/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version = "v0.0.50";
1+
export const version = "v0.0.53";

src/src/view/lora_manager/lora_card.vue

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
<td class="actions">
137137
<button class="copy-btn" @click="copyToClipboard(loraInfo[field.key])"
138138
:title="t('lora.copy')">
139-
<svg style="fill: #ffffff;" viewBox="0 0 24 24" width="16" height="16">
139+
<svg class="svg-icon" viewBox="0 0 24 24" width="16" height="16">
140140
<path d="M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z"/>
141141
</svg>
142142
{{ t('lora.copy') }}
@@ -159,7 +159,7 @@
159159
<td class="actions">
160160
<button class="copy-btn" @click="copyToClipboard(loraInfo.user_diy_fileds[key]?.value)"
161161
:title="t('lora.copy')">
162-
<svg style="fill: #ffffff;" viewBox="0 0 24 24" width="16" height="16">
162+
<svg class="svg-icon" viewBox="0 0 24 24" width="16" height="16">
163163
<path d="M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z"/>
164164
</svg>
165165
{{ t('lora.copy') }}
@@ -780,6 +780,11 @@ defineExpose({
780780
justify-content: center;
781781
}
782782
783+
784+
.svg-icon {
785+
fill: var(--weilin-prompt-ui-primary-text);
786+
}
787+
783788
.lora-detail__body {
784789
height: 100%;
785790
}
@@ -830,7 +835,7 @@ defineExpose({
830835
.copy-btn {
831836
padding: 6px 12px;
832837
border-radius: 4px;
833-
border: 1px solid var(--weilin-prompt-ui-border);
838+
border: 1px solid var(--weilin-prompt-ui-border-color);
834839
background: var(--weilin-prompt-ui-button-bg);
835840
color: var(--weilin-prompt-ui-button-text);
836841
cursor: pointer;
@@ -848,9 +853,9 @@ defineExpose({
848853
input {
849854
width: 100%;
850855
padding: 8px;
851-
border: 1px solid var(--weilin-prompt-ui-border);
852856
border-radius: 4px;
853-
background: var(--weilin-prompt-ui-input-bg);
857+
border: 1px solid var(--weilin-prompt-ui-border-color);
858+
background-color: var(--weilin-prompt-ui-input-bg);
854859
color: var(--weilin-prompt-ui-input-text);
855860
}
856861
@@ -951,7 +956,7 @@ input:focus {
951956
left: 0;
952957
width: 100%;
953958
height: 100%;
954-
object-fit: cover;
959+
object-fit: contain;
955960
transition: transform 0.3s ease;
956961
}
957962

0 commit comments

Comments
 (0)