elesync 1.3.1__tar.gz → 1.3.2__tar.gz
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.
- {elesync-1.3.1 → elesync-1.3.2}/PKG-INFO +1 -1
- {elesync-1.3.1 → elesync-1.3.2}/elesync/__init__.py +1 -1
- {elesync-1.3.1 → elesync-1.3.2}/elesync/web.py +8 -0
- {elesync-1.3.1 → elesync-1.3.2}/elesync.egg-info/PKG-INFO +1 -1
- {elesync-1.3.1 → elesync-1.3.2}/pyproject.toml +1 -1
- {elesync-1.3.1 → elesync-1.3.2}/LICENSE +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/README.md +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/elesync/cli.py +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/elesync/conflicts.py +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/elesync/crypto.py +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/elesync/embeddings.py +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/elesync/mcp_server.py +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/elesync/models.py +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/elesync/normalize.py +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/elesync/onboarding.py +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/elesync/scopes.py +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/elesync/service.py +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/elesync/store.py +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/elesync/summary.py +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/elesync/usb.py +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/elesync/watch.py +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/elesync.egg-info/SOURCES.txt +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/elesync.egg-info/dependency_links.txt +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/elesync.egg-info/entry_points.txt +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/elesync.egg-info/requires.txt +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/elesync.egg-info/top_level.txt +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/setup.cfg +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/tests/test_conflicts.py +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/tests/test_encryption.py +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/tests/test_scopes.py +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/tests/test_semantic.py +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/tests/test_service.py +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/tests/test_summary.py +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/tests/test_usb.py +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/tests/test_vault.py +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/tests/test_watch.py +0 -0
- {elesync-1.3.1 → elesync-1.3.2}/tests/test_web.py +0 -0
|
@@ -14,6 +14,7 @@ from __future__ import annotations
|
|
|
14
14
|
|
|
15
15
|
import json
|
|
16
16
|
import os
|
|
17
|
+
import sys
|
|
17
18
|
import threading
|
|
18
19
|
import webbrowser
|
|
19
20
|
from http.server import BaseHTTPRequestHandler, HTTPServer
|
|
@@ -295,6 +296,13 @@ class _Handler(BaseHTTPRequestHandler):
|
|
|
295
296
|
def serve(vault_dir: str | None = None, port: int = 7477, open_browser: bool = True) -> None:
|
|
296
297
|
global _store, _vault_dir
|
|
297
298
|
|
|
299
|
+
# Same UTF-8 stdout defence as cli.main — legacy Windows cp1252 can't encode
|
|
300
|
+
# the emoji we print below, and would crash with UnicodeEncodeError.
|
|
301
|
+
import contextlib
|
|
302
|
+
for stream in (sys.stdout, sys.stderr):
|
|
303
|
+
with contextlib.suppress(AttributeError, ValueError):
|
|
304
|
+
stream.reconfigure(encoding="utf-8")
|
|
305
|
+
|
|
298
306
|
from . import crypto as _crypto
|
|
299
307
|
from .store import MemoryStore
|
|
300
308
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "elesync"
|
|
7
|
-
version = "1.3.
|
|
7
|
+
version = "1.3.2"
|
|
8
8
|
description = "Local-first, MCP-native unified memory vault — your AI memory as files you own, shared across every model."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { text = "MIT" }
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|