joplin-plugin-backup 1.4.2 → 1.4.3
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
|
@@ -21,7 +21,7 @@ A plugin to extend Joplin with a manual and automatic backup function.
|
|
|
21
21
|
- [Restore](#restore)
|
|
22
22
|
- [Settings](#settings)
|
|
23
23
|
- [Notes](#notes)
|
|
24
|
-
- [Restore a
|
|
24
|
+
- [Restore a Single note](#restore-a-single-note)
|
|
25
25
|
- [Full Joplin restore](#full-joplin-restore)
|
|
26
26
|
- [FAQ](#faq)
|
|
27
27
|
- [Internal Joplin links betwen notes are lost](#internal-joplin-links-betwen-notes-are-lost)
|
|
@@ -102,7 +102,7 @@ The notes are imported via `File > Import > JEX - Joplin Export File`.
|
|
|
102
102
|
The notes are imported additionally, no check for duplicates is performed.
|
|
103
103
|
If the notebook in which the note was located already exists in your Joplin, then a "(1)" will be appended to the folder name.
|
|
104
104
|
|
|
105
|
-
### Restore a
|
|
105
|
+
### Restore a Single note
|
|
106
106
|
|
|
107
107
|
1. Create a new profile in Joplin via `File > Switch profile > Create new Profile`
|
|
108
108
|
2. Joplin switches automatically to the newly created profile
|
|
@@ -153,7 +153,7 @@ Yes, the build-in version only gets updates with Joplin updates, but can be repl
|
|
|
153
153
|
|
|
154
154
|
### Can I use a Backup to speed up first Joplin sync?
|
|
155
155
|
|
|
156
|
-
No, because all items in the backup will get
|
|
156
|
+
No, because all items in the backup will get new unique IDs are assigned in Joplin during the import (however links between notes will be maintained).
|
|
157
157
|
If this device is then synchronized with a synchronization target in which other clients already synchronize with the same notes, all notes are then available multiple times on the devices.
|
|
158
158
|
Therefore, the same note is then available with different IDs in Joplin.
|
|
159
159
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-backup",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.3",
|
|
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
|
"prepare": "npm run dist && husky install",
|
|
Binary file
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"manifest_version": 1,
|
|
3
3
|
"id": "io.github.jackgruber.backup",
|
|
4
4
|
"app_min_version": "2.1.3",
|
|
5
|
-
"version": "1.4.
|
|
5
|
+
"version": "1.4.3",
|
|
6
6
|
"name": "Backup",
|
|
7
7
|
"description": "Plugin to create manual and automatic backups.",
|
|
8
8
|
"author": "JackGruber",
|
|
@@ -34,6 +34,6 @@
|
|
|
34
34
|
"icons": {
|
|
35
35
|
"256": "img/icon_256.png"
|
|
36
36
|
},
|
|
37
|
-
"_publish_hash": "sha256:
|
|
38
|
-
"_publish_commit": "master:
|
|
37
|
+
"_publish_hash": "sha256:4597e0d35ce8f6f059aed0ea2e900b40f13cd6d60a37104e04ba72ee656fd542",
|
|
38
|
+
"_publish_commit": "master:083857c158f943b521c624fd8e8c2539c049422c"
|
|
39
39
|
}
|