Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "sync-engine",
"name": "Sync Engine",
"version": "3.1.1",
"version": "3.1.2",
"minAppVersion": "1.13.0",
"authorUrl": "https://hesprs.github.io",
"description": "The next-generation syncing plugin: Fast · Free · Extend with Modules. Supports WebDAV, S3, and Google Drive.",
Expand Down
2 changes: 1 addition & 1 deletion modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
{
"id": "gdrive",
"name": "Google Drive",
"version": "0.0.1",
"version": "0.0.2",
"description": "[Alpha] Google Drive backend support.",
"icon": "server",
"main": "https://sync.consensia.cc/modules/gdrive.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/gdrive/src/gdrive/fs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ export default class GdriveFs implements RootFs {
async mkdir(key: string, recursive: boolean): Promise<void> {
const parent = dirname(key);
let parentId = this.resolveId(parent);
if (!parent && recursive) {
if (!parentId && recursive) {
await this.mkdir(parent, true);
parentId = this.resolveId(parent);
}
Expand Down
10 changes: 10 additions & 0 deletions packages/plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

All notable changes to this project will be documented in this file.

## Sync Engine v3.1.2 - 2026-08-24

### Core

- Fixed first sync failure caused by nested base directory.

### Google Drive Module

- Fixed recursive folder creation fail to apply.

## Sync Engine v3.1.1 - 2026-08-23

### Core
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hesprs/sync-engine-sdk",
"version": "3.1.1",
"version": "3.1.2",
"description": "Official SDK for developing modules targeting Sync Engine, the extensible Obsidian syncing plugin.",
"keywords": [
"obsidian-plugin",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin/src/fs/wrappers/optimization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,8 @@ class OptimizationCompanionFs implements WrappedFs {
delete(key: string) {
return this.original.delete(key);
}
mkdir(key: string) {
return this.original.mkdir(key);
mkdir(key: string, recursive?: boolean) {
return this.original.mkdir(key, recursive);
}
stat(key: string) {
return this.original.stat(key);
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
"3.0.5": "1.12.3",
"3.0.6": "1.12.3",
"3.1.0": "1.13.0",
"3.1.1": "1.13.0"
"3.1.1": "1.13.0",
"3.1.2": "1.13.0"
}
Loading