From ce08c5c06003e9f46022195a2cd3a4838578b0e9 Mon Sep 17 00:00:00 2001 From: Tanner Hodges Date: Mon, 28 Sep 2020 09:14:31 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=A6=8A=20Add=20Firefox=20Extension?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- changelog.md | 8 +++++++- package.json | 2 +- readme.md | 4 +++- src/manifest.json | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/changelog.md b/changelog.md index a1adff9..5044dcf 100644 --- a/changelog.md +++ b/changelog.md @@ -7,11 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.1] - 2020-09-28 + +- Add Firefox extension. +- Improve regex to fix forms for repos that start with "wiki" (e.g., `/tannerhodges/wiki-plugin/wiki`). + ## [1.0.0] - 2020-09-26 ### Added - First version! -[Unreleased]: https://github.com/tannerhodges/github-wiki-search/compare/v1.0.0...HEAD +[Unreleased]: https://github.com/tannerhodges/github-wiki-search/compare/v1.0.1...HEAD +[1.0.1]: https://github.com/tannerhodges/github-wiki-search/compare/v1.0.0...v1.0.1 [1.0.0]: https://github.com/tannerhodges/github-wiki-search/releases/tag/v1.0.0 diff --git a/package.json b/package.json index cd9970f..98b635d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "github-wiki-search", - "version": "1.0.0", + "version": "1.0.1", "description": "Chrome extension for adding a simple search box to GitHub wikis.", "keywords": [ "chrome", diff --git a/readme.md b/readme.md index 67861f3..bdd1978 100644 --- a/readme.md +++ b/readme.md @@ -2,7 +2,9 @@ Chrome extension for adding a simple search box to GitHub wikis. -👉 [Download from the Chrome Web Store](https://chrome.google.com/webstore/detail/github-wiki-search/neadealkfeligebmmolcibhbcdfplhhg). +👉 [Download Chrome Extension](https://chrome.google.com/webstore/detail/github-wiki-search/neadealkfeligebmmolcibhbcdfplhhg). + +👉 [Download Firefox Extension](https://addons.mozilla.org/addon/github-wiki-search/). ![](./screenshots/example.png) diff --git a/src/manifest.json b/src/manifest.json index df5891f..f16ad5a 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "GitHub Wiki Search", - "version": "1.0.0", + "version": "1.0.1", "description": "Simple search box for GitHub wikis.", "icons": { "16": "icon-16.png",