joplin-plugin-supernote-sync 0.1.2 → 0.3.0
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.
package/README.md
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
This is a [Joplin plugin](https://joplinapp.org) to sync notes from a [supernote device](https://supernote.com/).
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
⚠️ This is still in heavy development. Try it if you are brave and report any issues.
|
|
6
6
|
|
|
7
7
|
## Features
|
|
8
8
|
- One-way-Sync of Supernote notes into Joplin.
|
|
9
9
|
- The Supernote notes will be converted to images and attached to the Joplin notes. Recognized text will be added as text.
|
|
10
10
|
- Folder structure is preserved as a Joplin notebook structure.
|
|
11
11
|
- The filename of the Supernote file will become the title of the Joplin note.
|
|
12
|
-
-
|
|
12
|
+
- ⚠️ If there is an existing note in the Joplin structure that matches the file name of the Supernote file, it will be overwritten.
|
|
13
13
|
- Resources associated only with the note to be overwritten will be deleted.
|
|
14
14
|
- Sync happens periodically and on Joplin start.
|
|
15
15
|
- Only new and changed files are re-synced.
|
|
@@ -26,7 +26,7 @@ This is a [Joplin plugin](https://joplinapp.org) to sync notes from a [supernote
|
|
|
26
26
|
2. Check your backup
|
|
27
27
|
3. Make sure your backup contains all data and is restorable
|
|
28
28
|
4. Transfer the supernote .note files to the device you are running Joplin on (e.g. your PC)
|
|
29
|
-
-
|
|
29
|
+
- ⚠️ this script is only tested so far with Linux and Joplin 3.4.12
|
|
30
30
|
- to transfer the files, use [WebDAV](https://supernote.com/blogs/supernote-blog/private-cloud-for-data-sovereignty-serverlink-for-remote-files-control-via-webdav), sideloaded [syncthing](https://f-droid.org/en/packages/com.github.catfriend1.syncthingfork/), or a simple copy
|
|
31
31
|
5. Open the "Plugins" section in the Joplin options
|
|
32
32
|
6. Install:
|
|
@@ -50,3 +50,8 @@ This is a [Joplin plugin](https://joplinapp.org) to sync notes from a [supernote
|
|
|
50
50
|
9. Restart Joplin (this is a bug, see https://github.com/individual-it/supernote-joplin/issues/12)
|
|
51
51
|
10. Wait and pray
|
|
52
52
|
|
|
53
|
+
## Force Sync
|
|
54
|
+
Existing notes will not be rewritten (also not by new features) except if the note is updated on the Supernote device.
|
|
55
|
+
So to resync a note, you can:
|
|
56
|
+
- delete that particular note in Joplin
|
|
57
|
+
- use the `Supernote Force Sync` command in the `Tools` menu.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-supernote-sync",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
|
|
6
6
|
"updateVersion": "webpack --env joplin-plugin-config=updateVersion",
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@eslint/js": "^9.39.2",
|
|
20
20
|
"chalk": "^4.1.0",
|
|
21
|
-
"copy-webpack-plugin": "^
|
|
21
|
+
"copy-webpack-plugin": "^14.0.0",
|
|
22
22
|
"eslint": "^9.39.2",
|
|
23
23
|
"fs-extra": "^11.3.3",
|
|
24
24
|
"glob": "^8.0.3",
|
|
25
|
-
"image-js": "^1.
|
|
25
|
+
"image-js": "^1.3.0",
|
|
26
26
|
"supernote-typescript": "file:../supernote-typescript",
|
|
27
|
-
"tar": "^
|
|
27
|
+
"tar": "^7.5.13",
|
|
28
28
|
"ts-loader": "^9.3.1",
|
|
29
29
|
"typescript": "^4.9.5",
|
|
30
30
|
"typescript-eslint": "^8.52.0",
|
|
Binary file
|
|
@@ -2,21 +2,27 @@
|
|
|
2
2
|
"manifest_version": 1,
|
|
3
3
|
"id": "net.individual-it.Supernote",
|
|
4
4
|
"app_min_version": "3.4",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.3.0",
|
|
6
6
|
"name": "supernote sync",
|
|
7
7
|
"description": "Sync your notes from your Supernote device into Joplin",
|
|
8
8
|
"author": "Artur Neumann",
|
|
9
9
|
"homepage_url": "https://github.com/individual-it/supernote-joplin",
|
|
10
10
|
"repository_url": "https://github.com/individual-it/supernote-joplin",
|
|
11
|
-
"keywords": [
|
|
11
|
+
"keywords": [
|
|
12
|
+
"supernote",
|
|
13
|
+
"handwriting",
|
|
14
|
+
"syncing"
|
|
15
|
+
],
|
|
12
16
|
"categories": [
|
|
13
17
|
"integrations",
|
|
14
18
|
"personal knowledge management",
|
|
15
19
|
"productivity"
|
|
16
20
|
],
|
|
17
21
|
"screenshots": [],
|
|
18
|
-
"icons": {
|
|
22
|
+
"icons": {
|
|
23
|
+
"256": "images/icon-256.png"
|
|
24
|
+
},
|
|
19
25
|
"promo_tile": {},
|
|
20
|
-
"_publish_hash": "sha256:
|
|
21
|
-
"_publish_commit": "master:
|
|
26
|
+
"_publish_hash": "sha256:1d54bdf4d97180834bdf44c49d1f27d4ec5d7cf16eceeab1f6cec7718d676ece",
|
|
27
|
+
"_publish_commit": "master:baa8e8d4fae896f78be9e29b74c8ec5c613788d4"
|
|
22
28
|
}
|