Skip to content

Commit 5ba57c1

Browse files
committed
Merge branch 'develop'
2 parents 23d1e8c + 781a9c9 commit 5ba57c1

File tree

7 files changed

+17
-15
lines changed

7 files changed

+17
-15
lines changed

.github/workflows/buildAndTest.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@ jobs:
44
buildAndTest:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v2
8-
- uses: actions/setup-node@v2
9-
with:
10-
node-version: "20"
7+
- uses: actions/checkout@v4
8+
- uses: actions/setup-node@v4
119
- name: Install dependencies
1210
run: npm install
1311
- name: Build

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## not released
44

5+
## v1.4.2 (2024-07-17)
6+
7+
- Fix: Some EN translations and typos #76
8+
59
## v1.4.1 (2024-03-10)
610

711
- Fix: Don't show `There is no Data to export` on empty profiles and automatic backups #71

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "joplin-plugin-backup",
3-
"version": "1.4.1",
3+
"version": "1.4.2",
44
"scripts": {
55
"dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
66
"prepare": "npm run dist && husky install",

src/locales/de_DE.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"settings": {
2121
"path": {
2222
"label": "Sicherungs Pfad",
23-
"description": "Speicherort für die Backups. "
23+
"description": "Speicherort für die Backups. Dieser Pfad ist exklusiv für die Joplin Backups wenn die Einstellungen für 'Erstellen eines Unterordners' deaktiviert wird, es dürfen sich dann keine anderen Daten darin befinden!"
2424
},
2525
"exportPath": {
2626
"label": "Temporärer Export Pfad",

src/locales/en_US.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
"settings": {
2222
"path": {
2323
"label": "Backup path",
24-
"description": "Storage location for the backups. Dieser Pfad ist exklusiv für die Joplin Backups, es sollten sich keine anderen Daten darin befinden, wenn die Einstellungen für 'Unterordner erstellen' deaktiviert wird!"
24+
"description": "Storage location for the backups. This path is exclusive to Joplin backups when the 'Create Subfolder' setting is disabled: there should be no other data in it!"
2525
},
2626
"exportPath": {
2727
"label": "Temporary export path",
2828
"description": "Temporary path for data export from Joplin, before the data is moved to the backup path"
2929
},
3030
"backupRetention": {
3131
"label": "Keep x backups",
32-
"description": "How many backups should be kept. If more than one version configured, folders are created in the Backup Path acording to 'Backup set name' setting"
32+
"description": "How many backups should be kept. If more than one version configured, folders are created in the Backup Path according to 'Backup set name' setting"
3333
},
3434
"backupInterval": {
3535
"label": "Backup interval in hours",
@@ -52,20 +52,20 @@
5252
"description": "Repeat password to validate"
5353
},
5454
"fileLogLevel": {
55-
"label": "Loglevel",
56-
"description": "Loglevel for the backup logfile"
55+
"label": "Log level",
56+
"description": "Log level for the backup log file"
5757
},
5858
"createSubfolder": {
5959
"label": "Create Subfolder",
60-
"description": "Create a subfolder in the the configured {{backupPath}}. Deactivate only if there is no other data in the {{backupPath}}!"
60+
"description": "Create a subfolder in the configured {{backupPath}}. Deactivate only if there is no other data in the {{backupPath}}!"
6161
},
6262
"createSubfolderPerProfile": {
6363
"label": "Create subfolder for Joplin profile",
6464
"description": "Create a subfolder within the backup directory for the current profile. This allows multiple profiles from the same Joplin installation to use the same backup directory without overwriting backups made from other profiles. All profiles that use the same backup directory must have this setting enabled."
6565
},
6666
"zipArchive": {
6767
"label": "Create archive",
68-
"description": "Save backup data in a archive, if a password protected backups is set, an archive is always created"
68+
"description": "Save backup data in an archive. If 'Password protected backups' is set, an archive is always created."
6969
},
7070
"compressionLevel": {
7171
"label": "Compression level",

src/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 1,
33
"id": "io.github.jackgruber.backup",
44
"app_min_version": "2.1.3",
5-
"version": "1.4.1",
5+
"version": "1.4.2",
66
"name": "Backup",
77
"description": "Plugin to create manual and automatic backups.",
88
"author": "JackGruber",

0 commit comments

Comments
 (0)