Skip to content

Commit

Permalink
chore(main): release 3.2.0 (#32)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Feb 3, 2022
1 parent dd7e3c2 commit b3da398
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 16 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [3.2.0](https://github.com/google/eme_logger/compare/v3.1.3...v3.2.0) (2022-02-03)


### Features

* Log more HTMLMediaElement events ([#30](https://github.com/google/eme_logger/issues/30)) ([fb5a90d](https://github.com/google/eme_logger/commit/fb5a90dca86a5575333d9a5a07dda76130b66f09))


### Bug Fixes

* Fix missing fields in message events ([63e6d5f](https://github.com/google/eme_logger/commit/63e6d5f6acd69e780566363f28ab61e055da6f44)), closes [#27](https://github.com/google/eme_logger/issues/27)

## [3.1.3](https://github.com/joeyparrish/eme_logger/compare/v3.1.2...v3.1.3) (2021-11-15)

### Bug Fixes
Expand Down
32 changes: 19 additions & 13 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,34 @@
{
"name": "EME Call and Event Logger",
"short_name": "EME Logger",
"version": "3.1.3",
"version": "3.2.0",
"manifest_version": 2,
"description": "Logs all Encrypted Media Extensions (EME) method calls and events.",
"content_scripts": [{
"matches": [
"http://*/*",
"https://*/*",
"file://*"
],
"js": ["content-script.js"],
"all_frames": true,
"run_at": "document_start"
}],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*",
"file://*"
],
"js": [
"content-script.js"
],
"all_frames": true,
"run_at": "document_start"
}
],
"icons": {
"22": "icons/EME_logo_22.png",
"32": "icons/EME_logo_32.png",
"48": "icons/EME_logo_48.png",
"96": "icons/EME_logo_96.png",
"128": "icons/EME_logo_128.png"
},
"background" : {
"scripts": ["log-window.js"]
"background": {
"scripts": [
"log-window.js"
]
},
"browser_action": {
"default_title": "EME Logger"
Expand Down
6 changes: 4 additions & 2 deletions package-lock.json

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

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@
"scripts": {
"build": "npm ci && gulp",
"test": "jasmine-browser-runner runSpecs"
}
},
"version": "3.2.0"
}

0 comments on commit b3da398

Please sign in to comment.