dsh-pocket 1.4.1 → 1.4.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/client/client.js +4 -4
- package/client/index.jsx +4 -4
- package/package.json +1 -1
package/client/client.js
CHANGED
|
@@ -1436,12 +1436,12 @@ 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)",
|
|
1440
|
-
(0, import_react2.createElement)("div",
|
|
1439
|
+
{ style: { fontSize: 12, color: "var(--dsw-alias-label-tertiary,#8b93a1)", textAlign: "right" } },
|
|
1440
|
+
(0, import_react2.createElement)("div", { style: { whiteSpace: "nowrap" } }, "\u5F00\u53D1\u8005\uFF1A\u7A0B\u5E8F\u5458\u5C11\u5317\u6668"),
|
|
1441
1441
|
(0, import_react2.createElement)(
|
|
1442
1442
|
"a",
|
|
1443
|
-
{ href: "https://github.com/shaobeichen/dsh-pocket", target: "_blank", rel: "noreferrer", style: { color: "var(--dsw-alias-brand-primary,#4f6ef7)",
|
|
1444
|
-
"\u2B50 \
|
|
1443
|
+
{ href: "https://github.com/shaobeichen/dsh-pocket", target: "_blank", rel: "noreferrer", style: { color: "var(--dsw-alias-brand-primary,#4f6ef7)", fontSize: 12, lineHeight: 1.6, textDecoration: "underline" } },
|
|
1444
|
+
"\u2B50 \u8FD9\u4E2A\u63D2\u4EF6\u4E0D\u6536\u94B1\uFF0C\u987A\u624B\u7559\u9897 Star\uFF0C\u4F5C\u8005\u80FD\u9AD8\u5174\u4E00\u6574\u5929 | Free plugin \u2014 a Star would make the author's day"
|
|
1445
1445
|
)
|
|
1446
1446
|
)
|
|
1447
1447
|
),
|
package/client/index.jsx
CHANGED
|
@@ -176,10 +176,10 @@ 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)',
|
|
180
|
-
h('div',
|
|
181
|
-
h('a', { href: 'https://github.com/shaobeichen/dsh-pocket', target: '_blank', rel: 'noreferrer', style: { color: 'var(--dsw-alias-brand-primary,#4f6ef7)',
|
|
182
|
-
'⭐
|
|
179
|
+
h('div', { style: { fontSize: 12, color: 'var(--dsw-alias-label-tertiary,#8b93a1)', textAlign: 'right' } },
|
|
180
|
+
h('div', { style: { whiteSpace: 'nowrap' } }, '开发者:程序员少北晨'),
|
|
181
|
+
h('a', { href: 'https://github.com/shaobeichen/dsh-pocket', target: '_blank', rel: 'noreferrer', style: { color: 'var(--dsw-alias-brand-primary,#4f6ef7)', fontSize: 12, lineHeight: 1.6, textDecoration: 'underline' } },
|
|
182
|
+
'⭐ 这个插件不收钱,顺手留颗 Star,作者能高兴一整天 | Free plugin — a Star would make the author\'s day'),
|
|
183
183
|
),
|
|
184
184
|
),
|
|
185
185
|
|
package/package.json
CHANGED