joplin-plugin-backup 1.4.1 → 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,8 @@ 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 singel note](#restore-a-singel-note)
24
+ - [Restore a Single note](#restore-a-single-note)
25
+ - [Full Joplin restore](#full-joplin-restore)
25
26
  - [FAQ](#faq)
26
27
  - [Internal Joplin links betwen notes are lost](#internal-joplin-links-betwen-notes-are-lost)
27
28
  - [Combine multiple JEX Files to one](#combine-multiple-jex-files-to-one)
@@ -101,7 +102,7 @@ The notes are imported via `File > Import > JEX - Joplin Export File`.
101
102
  The notes are imported additionally, no check for duplicates is performed.
102
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.
103
104
 
104
- ### Restore a singel note
105
+ ### Restore a Single note
105
106
 
106
107
  1. Create a new profile in Joplin via `File > Switch profile > Create new Profile`
107
108
  2. Joplin switches automatically to the newly created profile
@@ -112,6 +113,10 @@ If the notebook in which the note was located already exists in your Joplin, the
112
113
  7. Switch back to your orginal Joplin profil via `File > Switch profile > Default`
113
114
  8. Import the exported note via `File > Import > JEX - Joplin Export File` and select the file from step 6
114
115
 
116
+ ### Full Joplin restore
117
+
118
+ See the guide for a [Full Joplin restore](FULLRESTORE.md)
119
+
115
120
  ## FAQ
116
121
 
117
122
  ### Internal Joplin links betwen notes are lost
@@ -135,7 +140,7 @@ The file names in the archive correspond to the Joplin internal IDs.
135
140
 
136
141
  ### Are Note History (Revisions) backed up?
137
142
 
138
- The note history and file versions (revisions) are not included in the backup.
143
+ A JEX backup file **does not** contain any note history (revisions). It contains the notebooks, notes and attachments as they were at the time the backup was made.
139
144
 
140
145
  ### Are all Joplin profiles backed up?
141
146
 
@@ -148,7 +153,7 @@ Yes, the build-in version only gets updates with Joplin updates, but can be repl
148
153
 
149
154
  ### Can I use a Backup to speed up first Joplin sync?
150
155
 
151
- No, because new IDs are assigned in Joplin during the import.
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).
152
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.
153
158
  Therefore, the same note is then available with different IDs in Joplin.
154
159
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joplin-plugin-backup",
3
- "version": "1.4.1",
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",
@@ -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.1",
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:5fdb77e3e4e777bbd5bbf663b159f1212f985cc533003ee74880f50265619a6f",
38
- "_publish_commit": "master:52d898315cab259da638698cc41120e9fae593ef"
37
+ "_publish_hash": "sha256:4597e0d35ce8f6f059aed0ea2e900b40f13cd6d60a37104e04ba72ee656fd542",
38
+ "_publish_commit": "master:083857c158f943b521c624fd8e8c2539c049422c"
39
39
  }