Skip to content

Commit

Permalink
Fix #62
Browse files Browse the repository at this point in the history
  • Loading branch information
seeba8 committed Nov 21, 2022
1 parent 1ab4064 commit ed30cc9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ Does not send any data anywhere, as far as I know (except to pinboard, of course

### Changelog (incomplete)

#### v1.5.1
- Fix regression of not being able to search in the address bar anymore (#62)

#### v1.5.0
- Added different search modes in the options:
- Result must contain the exact search phrase
Expand All @@ -67,7 +70,6 @@ Does not send any data anywhere, as far as I know (except to pinboard, of course
- Updated dependencies
- Switched from tslint to eslint
- Shrank the 16-pixel icon to actually be 16 pixels wide
-

#### v1.4.1
- Fixed pagination in popup
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yet-another-pinboard-extension",
"version": "1.5.0",
"version": "1.5.1",
"description": "Browser extension for pinboard (including omnibar search and actionbar button popup)",
"main": "/dist/manifest.json",
"dependencies": {
Expand All @@ -21,7 +21,8 @@
"copyandbuild": "npm run copytodist && npm run tsc",
"build": "npm run tsc",
"web-ext": "web-ext run --source-dir=dist/ --firefox=nightly --devtools",
"web-ext-lint": "cd dist && web-ext lint"
"web-ext-lint": "cd dist && web-ext lint",
"package": "web-ext build --source-dir=dist/"
},
"repository": {
"type": "git",
Expand Down
1 change: 1 addition & 0 deletions src/html/background.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
<head>
<script type="module" src="../vendor/webextension-polyfill/browser-polyfill.min.js"></script>
<script type="module" src="../js/background.js"></script>
<script type="module" src="../js/omnibox.js"></script>
</head>
</html>
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description" : "Browser extension for pinboard (including omnibar search, sidebar and actionbar button popup)",
"homepage_url": "https://github.com/seeba8/yet-another-pinboard-extension",
"author": "seeba8",
"version": "1.5.0",
"version": "1.5.1",
"background": {
"page": "html/background.html",
"persistent": false
Expand Down

0 comments on commit ed30cc9

Please sign in to comment.