Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3e7e05fc3d | ||
|
|
391df3ed2d | ||
|
|
c542789c93 |
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"id": "remotely-save",
|
"id": "remotely-save",
|
||||||
"name": "Remotely Save",
|
"name": "Remotely Save",
|
||||||
"version": "0.3.20",
|
"version": "0.3.21",
|
||||||
"minAppVersion": "0.13.21",
|
"minAppVersion": "0.13.21",
|
||||||
"description": "Yet another unofficial plugin allowing users to synchronize notes between local device and the cloud service.",
|
"description": "Yet another unofficial plugin allowing users to synchronize notes between local device and the cloud service.",
|
||||||
"author": "fyears",
|
"author": "fyears",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "remotely-save",
|
"name": "remotely-save",
|
||||||
"version": "0.3.20",
|
"version": "0.3.21",
|
||||||
"description": "This is yet another sync plugin for Obsidian app.",
|
"description": "This is yet another sync plugin for Obsidian app.",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev2": "node esbuild.config.mjs",
|
"dev2": "node esbuild.config.mjs",
|
||||||
|
|||||||
+1
-1
Submodule src/langs updated: 82d0619761...eda77d12e2
+6
-1
@@ -645,8 +645,9 @@ const wrapTextWithPasswordHide = (text: TextComponent) => {
|
|||||||
hider.innerHTML = eyeOff;
|
hider.innerHTML = eyeOff;
|
||||||
hider.addEventListener("click", (e) => {
|
hider.addEventListener("click", (e) => {
|
||||||
const isText = text.inputEl.getAttribute("type") === "text";
|
const isText = text.inputEl.getAttribute("type") === "text";
|
||||||
text.inputEl.setAttribute("type", isText ? "password" : "text");
|
|
||||||
hider.innerHTML = isText ? eyeOff : eye;
|
hider.innerHTML = isText ? eyeOff : eye;
|
||||||
|
text.inputEl.setAttribute("type", isText ? "password" : "text");
|
||||||
|
text.inputEl.focus();
|
||||||
});
|
});
|
||||||
|
|
||||||
// the init type of text el is password
|
// the init type of text el is password
|
||||||
@@ -745,6 +746,10 @@ export class RemotelySaveSettingTab extends PluginSettingTab {
|
|||||||
.setDesc(t("settings_runoncestartup_desc"))
|
.setDesc(t("settings_runoncestartup_desc"))
|
||||||
.addDropdown((dropdown) => {
|
.addDropdown((dropdown) => {
|
||||||
dropdown.addOption("-1", t("settings_runoncestartup_notset"));
|
dropdown.addOption("-1", t("settings_runoncestartup_notset"));
|
||||||
|
dropdown.addOption(
|
||||||
|
`${1000 * 1 * 1}`,
|
||||||
|
t("settings_runoncestartup_1sec")
|
||||||
|
);
|
||||||
dropdown.addOption(
|
dropdown.addOption(
|
||||||
`${1000 * 10 * 1}`,
|
`${1000 * 10 * 1}`,
|
||||||
t("settings_runoncestartup_10sec")
|
t("settings_runoncestartup_10sec")
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"0.3.2": "0.12.15",
|
"0.3.2": "0.12.15",
|
||||||
"0.3.20": "0.13.21"
|
"0.3.21": "0.13.21"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user