dsh-files-native 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -1
- package/lib/client.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -81,5 +81,7 @@ dsh plugin --profile web add .
|
|
|
81
81
|
|
|
82
82
|
## 兼容性
|
|
83
83
|
|
|
84
|
-
- DeepSeek Harness `0.1.1-rc.2` 与 `0.1.2-alpha.4
|
|
84
|
+
- DeepSeek Harness `0.1.2-rc.1`(仍兼容 `0.1.1-rc.2` 与 `0.1.2-alpha.4`,web profile)
|
|
85
85
|
- 不要和 `dsh-file-fix` / `dsh-file-upload` / `dsh-paste-to-path` 叠装
|
|
86
|
+
|
|
87
|
+
改仓库前先读 [CONTRIBUTING.md](./CONTRIBUTING.md)(Issue → 分支 → Draft PR)。思考原则见 [AI-ISSUE-WORKFLOW.md](./AI-ISSUE-WORKFLOW.md)。插件硬约束见 [AGENTS.md](./AGENTS.md)。
|
package/lib/client.js
CHANGED
|
@@ -225,9 +225,9 @@ var FR_CSS = `
|
|
|
225
225
|
.fr-title{font:var(--dsw-font-l-20, 600 20px/28px system-ui);margin-top:16px}
|
|
226
226
|
.fr-desc{font:var(--dsw-font-s-14, 14px/20px system-ui);color:var(--dsw-alias-label-tertiary);white-space:pre-wrap;margin-top:16px}
|
|
227
227
|
.fr-illust{width:115px;height:84px}
|
|
228
|
-
.fr-pick{
|
|
229
|
-
|
|
230
|
-
.fr-pick:hover{background:var(--dsw-alias-interactive-bg-hover)
|
|
228
|
+
.fr-pick{width:28px;height:28px;color:var(--dsw-alias-label-secondary);cursor:pointer;background:transparent;
|
|
229
|
+
border:none;border-radius:999px;flex:none;place-items:center;display:grid;padding:0}
|
|
230
|
+
.fr-pick:hover{background:var(--dsw-alias-interactive-bg-hover)}
|
|
231
231
|
.fr-hidden{display:none}
|
|
232
232
|
.fr-lightbox{z-index:1100;position:fixed;inset:0;background:rgba(0,0,0,.72);display:grid;place-items:center;cursor:zoom-out}
|
|
233
233
|
.fr-lightbox img{max-width:min(92vw,1200px);max-height:88vh;border-radius:12px;box-shadow:var(--dsw-shadow-lv2)}
|