mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-24 03:06:16 +00:00
- Rewrite sync.md plugin using Solid.js for better performance - Implement sophisticated bidirectional sync algorithm with conflict detection - Add support for three sync modes: bidirectional, file-to-project, project-to-file - Create comprehensive sync logic with checksum-based change tracking - Add test script to validate sync functionality - Maintain task hierarchy and handle deletions gracefully
24 lines
539 B
JSON
24 lines
539 B
JSON
{
|
|
"id": "sync-md",
|
|
"manifestVersion": 1,
|
|
"name": "Sync.md",
|
|
"version": "2.0.0",
|
|
"description": "Sync markdown files with SuperProductivity projects - Solid.js version",
|
|
"author": "SuperProductivity",
|
|
"type": "standard",
|
|
"minSupVersion": "10.0.0",
|
|
"permissions": [
|
|
"getTasks",
|
|
"updateTask",
|
|
"addTask",
|
|
"getAllProjects",
|
|
"nodeExecution",
|
|
"persistDataSynced",
|
|
"loadSyncedData"
|
|
],
|
|
"sidePanel": true,
|
|
"iFrame": true,
|
|
"entryPoint": "plugin.js",
|
|
"hooks": [],
|
|
"icon": "sync-md-icon.svg"
|
|
}
|