joplin-plugin-backup 1.2.1 → 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.1",
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.1",
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:ee3fee3a90fe21a1c656240f9e3506fd6651a7318f398a484c6c31bef425dec8",
20
- "_publish_commit": "master:e4e8e6cff708bc7f181d2c18122084b7aeb4fb32"
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
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,4 +0,0 @@
1
- #!/bin/sh
2
- . "$(dirname "$0")/_/husky.sh"
3
-
4
- npm test
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
- }