joplin-plugin-backup 1.4.0 → 1.4.1
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
|
@@ -14,7 +14,6 @@ A plugin to extend Joplin with a manual and automatic backup function.
|
|
|
14
14
|
- [Installation](#installation)
|
|
15
15
|
- [Replace Joplin built-in plugin via GUI](#replace-joplin-built-in-plugin-via-gui)
|
|
16
16
|
- [Replace Joplin built-in plugin via file system](#replace-joplin-built-in-plugin-via-file-system)
|
|
17
|
-
- [Manual](#manual)
|
|
18
17
|
- [Usage](#usage)
|
|
19
18
|
- [Options](#options)
|
|
20
19
|
- [Keyboard Shortcuts](#keyboard-shortcuts)
|
|
@@ -30,8 +29,8 @@ A plugin to extend Joplin with a manual and automatic backup function.
|
|
|
30
29
|
- [Are Note History Revisions backed up?](#are-note-history-revisions-backed-up)
|
|
31
30
|
- [Are all Joplin profiles backed up?](#are-all-joplin-profiles-backed-up)
|
|
32
31
|
- [The Joplin build-in version of the plugin cannot be updated](#the-joplin-build-in-version-of-the-plugin-cannot-be-updated)
|
|
32
|
+
- [Can I use a Backup to speed up first Joplin sync?](#can-i-use-a-backup-to-speed-up-first-joplin-sync)
|
|
33
33
|
- [Changelog](#changelog)
|
|
34
|
-
- [Links](#links)
|
|
35
34
|
|
|
36
35
|
<!-- /TOC -->
|
|
37
36
|
<!-- prettier-ignore-end -->
|
|
@@ -56,13 +55,6 @@ The built-in plugin cannot be updated via GUI, to update to a other version repl
|
|
|
56
55
|
- Got to your Joplin profile folder and place the JPL file in the `plugins` folder
|
|
57
56
|
- Start Joplin
|
|
58
57
|
|
|
59
|
-
### Manual
|
|
60
|
-
|
|
61
|
-
- Download the latest released JPL package (`io.github.jackgruber.backup.jpl`) from [here](https://github.com/JackGruber/joplin-plugin-backup/releases/latest)
|
|
62
|
-
- Close Joplin
|
|
63
|
-
- Copy the downloaded JPL package in your profile `plugins` folder
|
|
64
|
-
- Start Joplin
|
|
65
|
-
|
|
66
58
|
## Usage
|
|
67
59
|
|
|
68
60
|
First configure the Plugin under `Tools > Options > Backup`!
|
|
@@ -154,13 +146,12 @@ Profiles that are not active are not backed up, even if a backup has been config
|
|
|
154
146
|
|
|
155
147
|
Yes, the build-in version only gets updates with Joplin updates, but can be replaced as described in the [Installation](#installation) step.
|
|
156
148
|
|
|
157
|
-
|
|
149
|
+
### Can I use a Backup to speed up first Joplin sync?
|
|
158
150
|
|
|
159
|
-
|
|
151
|
+
No, because new IDs are assigned in Joplin during the import.
|
|
152
|
+
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
|
+
Therefore, the same note is then available with different IDs in Joplin.
|
|
160
154
|
|
|
161
|
-
##
|
|
155
|
+
## Changelog
|
|
162
156
|
|
|
163
|
-
|
|
164
|
-
- [Joplin - Plugin API reference](https://joplinapp.org/api/references/plugin_api/classes/joplin.html)
|
|
165
|
-
- [Joplin - Data API reference](https://joplinapp.org/api/references/rest_api/)
|
|
166
|
-
- [Joplin - Plugin examples](https://github.com/laurent22/joplin/tree/dev/packages/app-cli/tests/support/plugins)
|
|
157
|
+
See [CHANGELOG.md](CHANGELOG.md)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-backup",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1",
|
|
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.1",
|
|
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:5fdb77e3e4e777bbd5bbf663b159f1212f985cc533003ee74880f50265619a6f",
|
|
38
|
+
"_publish_commit": "master:52d898315cab259da638698cc41120e9fae593ef"
|
|
39
39
|
}
|