From ed30cc9a76c58bad6f0c10cac9b0f517ec74d4a0 Mon Sep 17 00:00:00 2001 From: Sebastian Ober Date: Mon, 21 Nov 2022 19:55:34 +0100 Subject: [PATCH] Fix #62 --- README.md | 4 +++- package.json | 5 +++-- src/html/background.html | 1 + src/manifest.json | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index bc785ca..d8d4776 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 diff --git a/package.json b/package.json index 9aa1bba..db0a96d 100644 --- a/package.json +++ b/package.json @@ -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": { @@ -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", diff --git a/src/html/background.html b/src/html/background.html index fb5309a..ac8788b 100644 --- a/src/html/background.html +++ b/src/html/background.html @@ -3,5 +3,6 @@ + \ No newline at end of file diff --git a/src/manifest.json b/src/manifest.json index 99a1609..f3d615b 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -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