joplin-plugin-backup 1.2.2 → 1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joplin-plugin-backup",
3
- "version": "1.2.2",
3
+ "version": "1.3.0",
4
4
  "scripts": {
5
5
  "dist": "webpack --joplin-plugin-config buildMain && webpack --joplin-plugin-config buildExtraScripts && webpack --joplin-plugin-config createArchive",
6
6
  "prepare": "npm run dist && husky install",
@@ -45,8 +45,10 @@
45
45
  "child_process": false
46
46
  },
47
47
  "dependencies": {
48
+ "@types/i18n": "^0.13.6",
48
49
  "7zip-bin": "^5.1.1",
49
50
  "electron-log": "^4.3.1",
51
+ "i18n": "^0.15.1",
50
52
  "moment": "^2.29.1",
51
53
  "node-7z": "^2.1.2"
52
54
  },
@@ -67,5 +69,8 @@
67
69
  "^api$": "<rootDir>/node_modules/joplinplugindevtools/dist/apiMock.js",
68
70
  "^api/types$": "<rootDir>/api/types"
69
71
  }
70
- }
72
+ },
73
+ "files": [
74
+ "publish"
75
+ ]
71
76
  }
@@ -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.2.2",
5
+ "version": "1.3.0",
6
6
  "name": "Simple Backup",
7
7
  "description": "Plugin to create manual and automatic backups.",
8
8
  "author": "JackGruber",
@@ -16,6 +16,6 @@
16
16
  "7zip",
17
17
  "encrypted"
18
18
  ],
19
- "_publish_hash": "sha256:ddc31c99405ef7aaa001b1dca7f52f57723975f8a7cdc2fc6f99f08c0ae0b6fb",
20
- "_publish_commit": "master:84f2205b58043113c39f09d9c253bba260a11331"
19
+ "_publish_hash": "sha256:210cba266a6eeceb2a622971a7200be8be407c29ce5df23e872bffa8f6a68a08",
20
+ "_publish_commit": "master:68888ee372d51f476f89d10a776fc43e79613211"
21
21
  }
@@ -1,14 +0,0 @@
1
- name: Issue assignment
2
-
3
- on:
4
- issues:
5
- types: [opened]
6
-
7
- jobs:
8
- auto-assign:
9
- runs-on: ubuntu-latest
10
- steps:
11
- - name: "Auto-assign issue"
12
- uses: pozil/auto-assign-issue@v1.4.0
13
- with:
14
- assignees: JackGruber
@@ -1,16 +0,0 @@
1
- name: Build and test
2
- on: [push, pull_request]
3
- jobs:
4
- buildAndTest:
5
- runs-on: ubuntu-latest
6
- steps:
7
- - uses: actions/checkout@v2
8
- - uses: actions/setup-node@v2
9
- with:
10
- node-version: "16"
11
- - name: Install dependencies
12
- run: npm install
13
- - name: Build
14
- run: npm run dist
15
- - name: Run test
16
- run: npm test
package/.husky/pre-commit DELETED
@@ -1,4 +0,0 @@
1
- #!/bin/sh
2
- . "$(dirname "$0")/_/husky.sh"
3
-
4
- npx lint-staged
package/.husky/pre-push DELETED
@@ -1,2 +0,0 @@
1
- #!/bin/sh
2
- . "$(dirname "$0")/_/husky.sh"
package/.prettierignore DELETED
@@ -1,4 +0,0 @@
1
- api/
2
- dist/
3
- publish/
4
- webpack.config.js
package/.prettierrc.json DELETED
@@ -1,16 +0,0 @@
1
- {
2
- "trailingComma": "es5",
3
- "tabWidth": 2,
4
- "semi": true,
5
- "singleQuote": false,
6
- "endOfLine": "auto",
7
- "overrides": [
8
- {
9
- "files": ["tsconfig.json"],
10
- "options": {
11
- "tabWidth": 4,
12
- "useTabs": true
13
- }
14
- }
15
- ]
16
- }
@@ -1,4 +0,0 @@
1
- {
2
- "files.insertFinalNewline": true,
3
- "editor.tabSize": 2
4
- }