From 36d45deca636f5d264fe4a681fb3591b1a4d9297 Mon Sep 17 00:00:00 2001 From: ArceDanielShok Date: Mon, 7 Apr 2025 13:38:00 -0300 Subject: [PATCH 1/2] Fix filter characters in SyncRoot registration to use '#inxt#' instead of '#intx#' --- native-src/sync_root_interface/SyncRoot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native-src/sync_root_interface/SyncRoot.cpp b/native-src/sync_root_interface/SyncRoot.cpp index 2ed55c83..e362c68d 100644 --- a/native-src/sync_root_interface/SyncRoot.cpp +++ b/native-src/sync_root_interface/SyncRoot.cpp @@ -146,7 +146,7 @@ HRESULT SyncRoot::RegisterSyncRoot(const wchar_t *syncRootPath, const wchar_t *p // Context std::wstring syncRootIdentity(syncRootPath); - syncRootIdentity.append(L"#intx#"); + syncRootIdentity.append(L"#inxt#"); syncRootIdentity.append(providerName); winrt::IBuffer contextBuffer = winrt::CryptographicBuffer::ConvertStringToBinary(syncRootIdentity.data(), winrt::BinaryStringEncoding::Utf8); From 275a27c3eb8818bbdffbc5636102ee905e9bb478 Mon Sep 17 00:00:00 2001 From: ArceDanielShok Date: Mon, 7 Apr 2025 13:38:24 -0300 Subject: [PATCH 2/2] Bump version to 1.0.8 in package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 38f05106..edfe8b24 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@internxt/node-win", - "version": "1.0.7", + "version": "1.0.8", "description": "Drive desktop node addon", "main": "dist/index.ts", "types": "dist/index.d.ts",