dsh-pocket 1.4.0 → 1.4.1
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/client/client.js +7 -2
- package/client/index.jsx +5 -2
- package/package.json +1 -1
package/client/client.js
CHANGED
|
@@ -1436,8 +1436,13 @@ function PocketSettingsTab({ rpcCall }) {
|
|
|
1436
1436
|
),
|
|
1437
1437
|
(0, import_react2.createElement)(
|
|
1438
1438
|
"div",
|
|
1439
|
-
{ style: { fontSize: 12, color: "var(--dsw-alias-label-tertiary,#8b93a1)", whiteSpace: "nowrap" } },
|
|
1440
|
-
"\u5F00\u53D1\u8005\uFF1A\u7A0B\u5E8F\u5458\u5C11\u5317\u6668"
|
|
1439
|
+
{ style: { fontSize: 12, color: "var(--dsw-alias-label-tertiary,#8b93a1)", whiteSpace: "nowrap", textAlign: "right" } },
|
|
1440
|
+
(0, import_react2.createElement)("div", null, "\u5F00\u53D1\u8005\uFF1A\u7A0B\u5E8F\u5458\u5C11\u5317\u6668"),
|
|
1441
|
+
(0, import_react2.createElement)(
|
|
1442
|
+
"a",
|
|
1443
|
+
{ href: "https://github.com/shaobeichen/dsh-pocket", target: "_blank", rel: "noreferrer", style: { color: "var(--dsw-alias-brand-primary,#4f6ef7)", textDecoration: "none", fontSize: 12, lineHeight: 1.6 } },
|
|
1444
|
+
"\u2B50 \u70B9\u4E2A Star \u652F\u6301\u4E00\u4E0B | Star on GitHub"
|
|
1445
|
+
)
|
|
1441
1446
|
)
|
|
1442
1447
|
),
|
|
1443
1448
|
// 桌面端提示:更新/重启由 DSH Desktop 管理,本插件这两项功能已关闭(扫码同屏等照常)
|
package/client/index.jsx
CHANGED
|
@@ -176,8 +176,11 @@ function PocketSettingsTab({ rpcCall }) {
|
|
|
176
176
|
h('strong', null, '📱 手机访问 | Phone access'),
|
|
177
177
|
h('div', { style: styles.muted }, '手机扫码打开的就是电脑上的这个界面,实时同步 | the phone shows this exact screen, live'),
|
|
178
178
|
),
|
|
179
|
-
h('div', { style: { fontSize: 12, color: 'var(--dsw-alias-label-tertiary,#8b93a1)', whiteSpace: 'nowrap' } },
|
|
180
|
-
'开发者:程序员少北晨'),
|
|
179
|
+
h('div', { style: { fontSize: 12, color: 'var(--dsw-alias-label-tertiary,#8b93a1)', whiteSpace: 'nowrap', textAlign: 'right' } },
|
|
180
|
+
h('div', null, '开发者:程序员少北晨'),
|
|
181
|
+
h('a', { href: 'https://github.com/shaobeichen/dsh-pocket', target: '_blank', rel: 'noreferrer', style: { color: 'var(--dsw-alias-brand-primary,#4f6ef7)', textDecoration: 'none', fontSize: 12, lineHeight: 1.6 } },
|
|
182
|
+
'⭐ 点个 Star 支持一下 | Star on GitHub'),
|
|
183
|
+
),
|
|
181
184
|
),
|
|
182
185
|
|
|
183
186
|
// 桌面端提示:更新/重启由 DSH Desktop 管理,本插件这两项功能已关闭(扫码同屏等照常)
|
package/package.json
CHANGED