mirror of
https://github.com/basicmachines-co/basic-memory
synced 2026-06-21 13:47:35 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 099c334e3d | |||
| 7685586178 | |||
| e9d0a944a9 |
@@ -1,5 +1,16 @@
|
||||
# CHANGELOG
|
||||
|
||||
## v0.16.1 (2025-11-11)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **#422**: Handle Windows line endings in rclone bisync
|
||||
([`e9d0a94`](https://github.com/basicmachines-co/basic-memory/commit/e9d0a94))
|
||||
- Added `--compare=modtime` flag to rclone bisync to ignore size differences from line ending conversions
|
||||
- Fixes issue where LF→CRLF conversion on Windows was treated as file corruption
|
||||
- Resolves "corrupted on transfer: sizes differ" errors during cloud sync on Windows
|
||||
- Users will need to run `--resync` once after updating to establish new baseline
|
||||
|
||||
## v0.16.0 (2025-11-10)
|
||||
|
||||
### Features
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
"""basic-memory - Local-first knowledge management combining Zettelkasten with knowledge graphs"""
|
||||
|
||||
# Package version - updated by release automation
|
||||
__version__ = "0.16.0"
|
||||
__version__ = "0.16.1"
|
||||
|
||||
# API version for FastAPI - independent of package version
|
||||
__api_version__ = "v0"
|
||||
|
||||
@@ -166,6 +166,7 @@ def project_bisync(
|
||||
Uses rclone bisync with balanced defaults:
|
||||
- conflict_resolve: newer (auto-resolve to most recent)
|
||||
- max_delete: 25 (safety limit)
|
||||
- compare: modtime (ignore size differences from line ending conversions)
|
||||
- check_access: false (skip for performance)
|
||||
|
||||
Args:
|
||||
@@ -201,6 +202,7 @@ def project_bisync(
|
||||
"--resilient",
|
||||
"--conflict-resolve=newer",
|
||||
"--max-delete=25",
|
||||
"--compare=modtime", # Ignore size differences from line ending conversions
|
||||
"--filter-from",
|
||||
str(filter_path),
|
||||
"--workdir",
|
||||
|
||||
Reference in New Issue
Block a user