barcode-detector 1.0.0 → 1.0.2

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.
@@ -1,11 +1,27 @@
1
- name: Release
1
+ name: Release & Deploy Demo
2
2
  on:
3
3
  push:
4
4
  branches:
5
5
  - master
6
+
7
+ # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
8
+ # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
9
+ concurrency:
10
+ group: "pages"
11
+ cancel-in-progress: false
12
+
13
+ # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
14
+ permissions:
15
+ contents: write
16
+ pages: write
17
+ id-token: write
18
+
6
19
  jobs:
7
20
  release:
8
21
  name: Release
22
+ environment:
23
+ name: github-pages
24
+ url: ${{ steps.deployment.outputs.page_url }}
9
25
  runs-on: ubuntu-latest
10
26
  steps:
11
27
  - name: Checkout
@@ -20,6 +36,16 @@ jobs:
20
36
  run: npm ci
21
37
  - name: Build
22
38
  run: ./src/worker/build.sh && npm run build
39
+ - name: Setup Pages
40
+ uses: actions/configure-pages@v3
41
+ - name: Upload artifact
42
+ uses: actions/upload-pages-artifact@v1
43
+ with:
44
+ # Upload entire repository
45
+ path: '.'
46
+ - name: Deploy to GitHub Pages
47
+ id: deployment
48
+ uses: actions/deploy-pages@v2
23
49
  - name: Release
24
50
  env:
25
51
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
package/README.md CHANGED
@@ -3,7 +3,14 @@ Spec compliant polyfill of the [Barcode Detection API](https://wicg.github.io/sh
3
3
  It can be used for barcode/QR-code recognition in images from various kinds of
4
4
  sources including `<canvas>`, `<img>`, `<image>` (inside SVGs), `<video>`, `File`, `Blob`, `ImageData`, `ImageBitmap`, `OffscreenCanvas`.
5
5
 
6
- [TODO: live demos]
6
+ [simple demo](https://gruhn.github.io/barcode-detector/index.html)
7
+
8
+ Design goals:
9
+ * spec compliance
10
+ * support as many barcode formats as possible
11
+ * detect multiple codes in one image
12
+ * provide position/coordinate information of detected codes
13
+ * sufficient performance to process live video streams
7
14
 
8
15
  ## Installation
9
16
 
@@ -54,7 +61,7 @@ For in-depth documentation checkout the [corresponding MDN page](https://develop
54
61
  - :x: `upc_a`
55
62
  - :x: `upc_e`
56
63
 
57
- `src/BarcodeDetectorZXing.ts` (not exposed at the moment):
64
+ `src/BarcodeDetectorZXing.ts` (not exposed at the moment. See [#1](https://github.com/gruhn/barcode-detector-polyfill/issues/1)):
58
65
  - :heavy_check_mark: `aztec`
59
66
  - :heavy_check_mark: `code_128`
60
67
  - :heavy_check_mark: `code_39`