1
0
mirror of https://gitlab.com/ceda_ei/google-meet-captions-regex synced 2025-07-09 18:26:52 +02:00

Compare commits

...

1 Commits
master ... v1.2

Author SHA1 Message Date
bc15bc411c Add build.sh. Version bump. 2020-09-15 18:32:12 +05:30
2 changed files with 11 additions and 1 deletions

10
build.sh Executable file
View File

@ -0,0 +1,10 @@
#!/usr/bin/env bash
cd popup
yarn install
yarn build
cd ..
FILENAME="$(basename "$PWD")-$(jq -r .version manifest.json).zip"
zip -r "web-ext-artifacts/$FILENAME" LICENSE gmcr.js manifest.json popup/build/ icons/
zip -r "web-ext-artifacts/source-$FILENAME" $(git ls-files)

View File

@ -1,7 +1,7 @@
{ {
"manifest_version": 2, "manifest_version": 2,
"name": "Google Meet Caption Regex", "name": "Google Meet Caption Regex",
"version": "1.1", "version": "1.2",
"description": "Send a notification when a caption in Google Meet matches a certain regex.", "description": "Send a notification when a caption in Google Meet matches a certain regex.",
"homepage_url": "https://gitlab.com/ceda_ei/google-meet-captions-regex", "homepage_url": "https://gitlab.com/ceda_ei/google-meet-captions-regex",