Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d9cab7b1ff | ||
|
|
5e53967e01 | ||
|
|
fb9f4a67b4 |
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"id": "remotely-save",
|
"id": "remotely-save",
|
||||||
"name": "Remotely Save",
|
"name": "Remotely Save",
|
||||||
"version": "0.4.23",
|
"version": "0.4.24",
|
||||||
"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,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"id": "remotely-save",
|
"id": "remotely-save",
|
||||||
"name": "Remotely Save",
|
"name": "Remotely Save",
|
||||||
"version": "0.4.23",
|
"version": "0.4.24",
|
||||||
"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.4.23",
|
"version": "0.4.24",
|
||||||
"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 --watch",
|
"dev2": "node esbuild.config.mjs --watch",
|
||||||
|
|||||||
+3
-1
@@ -87,7 +87,9 @@ export class FakeFsEncrypt extends FakeFs {
|
|||||||
this.cacheMapOrigToEnc = {};
|
this.cacheMapOrigToEnc = {};
|
||||||
this.hasCacheMap = false;
|
this.hasCacheMap = false;
|
||||||
|
|
||||||
this.kind = `encrypt(${this.innerFs.kind},${method})`;
|
this.kind = `encrypt(${this.innerFs.kind},${
|
||||||
|
this.password !== "" ? method : "no password"
|
||||||
|
})`;
|
||||||
|
|
||||||
if (method === "rclone-base64") {
|
if (method === "rclone-base64") {
|
||||||
this.cipherRClone = new rclone.CipherRclone(password, 5);
|
this.cipherRClone = new rclone.CipherRclone(password, 5);
|
||||||
|
|||||||
+2
-1
@@ -986,7 +986,8 @@ async function copyFile(
|
|||||||
const statsLeft = await left.stat(key);
|
const statsLeft = await left.stat(key);
|
||||||
const content = await left.readFile(key);
|
const content = await left.readFile(key);
|
||||||
|
|
||||||
if (statsLeft.size === undefined) {
|
if (statsLeft.size === undefined || statsLeft.size === 0) {
|
||||||
|
// some weird bugs on android not returning size. just ignore them
|
||||||
statsLeft.size = content.byteLength;
|
statsLeft.size = content.byteLength;
|
||||||
} else {
|
} else {
|
||||||
if (statsLeft.size !== content.byteLength) {
|
if (statsLeft.size !== content.byteLength) {
|
||||||
|
|||||||
Reference in New Issue
Block a user