Skip to content

Commit

Permalink
Merge pull request #370 from 00dani/feature/support-hashed-url
Browse files Browse the repository at this point in the history
Pass hashed URL to Wallabag when testing for entry existence, rather than cleartext URL
  • Loading branch information
Simounet authored Mar 20, 2024
2 parents 55a15ae + da0d49a commit b571c4b
Show file tree
Hide file tree
Showing 8 changed files with 264 additions and 11 deletions.
5 changes: 5 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,10 @@
"no-console":0,
"no-global-assign": ["error", {"exceptions": ["browser"]}],
"no-native-reassign": ["error", {"exceptions": ["browser"]}]
},
"settings": {
"polyfills": [
"TextEncoder"
]
}
}
212 changes: 209 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"Edge > 14"
],
"scripts": {
"deps:update": "cp node_modules/spectre.css/dist/spectre.min.css wallabagger/css/spectre.min.css && cp node_modules/spectre.css/dist/spectre-exp.min.css wallabagger/css/spectre-exp.min.css",
"lint": "eslint wallabagger/js/*",
"deps:update": "cp node_modules/spectre.css/dist/spectre.min.css wallabagger/css/spectre.min.css && cp node_modules/spectre.css/dist/spectre-exp.min.css wallabagger/css/spectre-exp.min.css && cp node_modules/fast-text-encoding/text.min.js wallabagger/js/deps/text.min.js && cp node_modules/asmcrypto.js/asmcrypto.all.es5.min.js wallabagger/js/deps/asmcrypto.all.es5.min.js && cp node_modules/webcrypto-liner/build/webcrypto-liner.shim.min.js wallabagger/js/deps/webcrypto-liner.shim.min.js",
"lint": "eslint wallabagger/js/*.js",
"locales:sort": "sort-json -i -d=1 wallabagger/_locales/**/messages.json",
"manifest": "npm run manifest:firefox && npm run manifest:chrome",
"manifest:firefox": "wemf --browser firefox --validate wallabagger/manifest.json",
Expand Down Expand Up @@ -48,6 +48,8 @@
"wemf": "^1.3.0"
},
"dependencies": {
"spectre.css": "^0.5.9"
"fast-text-encoding": "^1.0.6",
"spectre.css": "^0.5.9",
"webcrypto-liner": "^1.4.2"
}
}
1 change: 1 addition & 0 deletions wallabagger/js/deps/asmcrypto.all.es5.min.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions wallabagger/js/deps/text.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions wallabagger/js/deps/webcrypto-liner.shim.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit b571c4b

Please sign in to comment.