Skip to content

Commit

Permalink
chore(main): release 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and cmnord committed May 5, 2023
1 parent 8b2b382 commit 82e087d
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
@@ -1,3 +1,3 @@
{
".": "3.0.2"
".": "3.1.0"
}
14 changes: 14 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,19 @@
# Changelog

## [3.1.0](https://github.com/cmnord/jeparser/compare/v3.0.2...v3.1.0) (2023-05-05)


### Features

* **src parser:** check game date to get expected clue value ([8b2b382](https://github.com/cmnord/jeparser/commit/8b2b3825aaf2f93819b8dfa2b6b28570b5968f73))
* **src parser:** separate parser logic into its own file ([49159f6](https://github.com/cmnord/jeparser/commit/49159f69032d7f265b76904c133195b32349dbcb))
* **src parser:** skip over missing boards ([fa248c6](https://github.com/cmnord/jeparser/commit/fa248c62d38cdb366b1f28759a65a8efa5b565ef))


### Bug Fixes

* **src parser:** handle unrevealed clues, categories, answers "=" ([360785b](https://github.com/cmnord/jeparser/commit/360785b7360656599af2af8c57560f747c429e3d))

## [3.0.2](https://github.com/cmnord/jeparser/compare/v3.0.1...v3.0.2) (2023-04-30)


Expand Down
12 changes: 9 additions & 3 deletions src/manifest.json
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "jeparser",
"version": "3.0.2",
"version": "3.1.0",
"description": "Browser extension which downloads Jeopardy games from applets for offline solving.",
"homepage_url": "https://github.com/cmnord/jeparser",
"minimum_chrome_version": "88",
Expand All @@ -21,8 +21,14 @@
},
"content_scripts": [
{
"matches": ["*://j-archive.com/showgame.php*"],
"js": ["parser.js", "content-script.js", "browser-polyfill.min.js"],
"matches": [
"*://j-archive.com/showgame.php*"
],
"js": [
"parser.js",
"content-script.js",
"browser-polyfill.min.js"
],
"run_at": "document_end"
}
]
Expand Down
2 changes: 1 addition & 1 deletion version.txt
@@ -1 +1 @@
3.0.2
3.1.0

0 comments on commit 82e087d

Please sign in to comment.