Skip to content

Commit

Permalink
chore(release): 1.1.0
Browse files Browse the repository at this point in the history
## [1.1.0](v1.0.0...v1.1.0) (2021-05-11)

### Features

* **dict:** Update dictionaries ([#451](#451)) ([97e6306](97e6306))
* **dict:** Update dictionaries to latest versions. ([#469](#469)) ([96a6032](96a6032))

### Bug Fixes

* **manifest:** Edit the manifest description to fit under the character limit ([de5a21a](de5a21a))
* Change manifest.json description to be more descriptive. ([#268](#268)) ([5fb116c](5fb116c)), closes [#245](#245)
* Falsy setting values now correctly initialize. ([#408](#408)) ([327eecd](327eecd)), closes [#346](#346)
* Migrate `onSelectionChanged` to `onActivated` ([#461](#461)) ([d8a0a9d](d8a0a9d)), closes [#153](#153)
* Remove unneeded tabs permission from manifest. ([#266](#266)) ([d529e62](d529e62)), closes [#152](#152)
* Reset badge text to empty on extension startup ([#462](#462)) ([b4afd3f](b4afd3f)), closes [#82](#82)
* Update manifest.json to allow rikaikun to work in srcdoc iframes. ([#411](#411)) ([093824b](093824b)), closes [#410](#410)
  • Loading branch information
semantic-release-bot committed May 11, 2021
1 parent de5a21a commit 96d60cb
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 11 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ consistently version releases as follows:
- Minor: New user visible feature added. (contains feat commits)
- Patch: Bug fix to previous feature. (contains only fix commits)

## [1.1.0](https://github.com/melink14/rikaikun/compare/v1.0.0...v1.1.0) (2021-05-11)

### Features

- **dict:** Update dictionaries ([#451](https://github.com/melink14/rikaikun/issues/451)) ([97e6306](https://github.com/melink14/rikaikun/commit/97e6306a7faabfe2e42f16566c56a768478683df))
- **dict:** Update dictionaries to latest versions. ([#469](https://github.com/melink14/rikaikun/issues/469)) ([96a6032](https://github.com/melink14/rikaikun/commit/96a6032b445181033f17855ce28274e72e180e5c))

### Bug Fixes

- **manifest:** Edit the manifest description to fit under the character limit ([de5a21a](https://github.com/melink14/rikaikun/commit/de5a21a3a4b05aded0e4e1a13b7943f02ae09f8c))
- Change manifest.json description to be more descriptive. ([#268](https://github.com/melink14/rikaikun/issues/268)) ([5fb116c](https://github.com/melink14/rikaikun/commit/5fb116c8427c479e926f16250a7bedf858b29890)), closes [#245](https://github.com/melink14/rikaikun/issues/245)
- Falsy setting values now correctly initialize. ([#408](https://github.com/melink14/rikaikun/issues/408)) ([327eecd](https://github.com/melink14/rikaikun/commit/327eecdb40c06dbd48784d50e0dee1e03f00bc85)), closes [#346](https://github.com/melink14/rikaikun/issues/346)
- Migrate `onSelectionChanged` to `onActivated` ([#461](https://github.com/melink14/rikaikun/issues/461)) ([d8a0a9d](https://github.com/melink14/rikaikun/commit/d8a0a9dd73f46b914554a3fd1f7afa671cbae8a6)), closes [#153](https://github.com/melink14/rikaikun/issues/153)
- Remove unneeded tabs permission from manifest. ([#266](https://github.com/melink14/rikaikun/issues/266)) ([d529e62](https://github.com/melink14/rikaikun/commit/d529e624fdbbd7b0f8c250fc2396ac30efddec07)), closes [#152](https://github.com/melink14/rikaikun/issues/152)
- Reset badge text to empty on extension startup ([#462](https://github.com/melink14/rikaikun/issues/462)) ([b4afd3f](https://github.com/melink14/rikaikun/commit/b4afd3fa07116c9900575aefae2dae7b9065f6d9)), closes [#82](https://github.com/melink14/rikaikun/issues/82)
- Update manifest.json to allow rikaikun to work in srcdoc iframes. ([#411](https://github.com/melink14/rikaikun/issues/411)) ([093824b](https://github.com/melink14/rikaikun/commit/093824b15cc8e792c01541ae1fa40a1355b28d2f)), closes [#410](https://github.com/melink14/rikaikun/issues/410)

## [1.0.0](https://github.com/melink14/rikaikun/compare/v0.10.1...v1.0.0) (2020-09-01)

### Features
Expand Down
15 changes: 5 additions & 10 deletions extension/manifest.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,24 @@
{
"manifest_version": 2,

"name": "rikaikun",
"version": "1.0.0",

"version": "1.1.0",
"description": "rikaikun shows the reading and English definition of Japanese words when you hover over Japanese text in Chrome.",
"icons": { "48": "images/icon48.png", "128": "images/icon128.png" },

"icons": {
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"permissions": ["clipboardWrite", "storage"],

"background": {
"page": "background.html",
"persistent": true
},

"browser_action": {
"default_icon": "images/ba.png"
},

"options_ui": {
"page": "options.html",
"open_in_tab": false
},

"content_scripts": [
{
"matches": ["http://*/*", "https://*/*", "ftp://*/*", "file:///*"],
Expand All @@ -31,7 +27,6 @@
"all_frames": true
}
],

"web_accessible_resources": [
"css/popup-black.css",
"css/popup-blue.css",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rikaikun",
"version": "1.0.0",
"version": "1.1.0",
"description": "Chrome extension that provides Japanese to English translations when hovering over words.",
"private": true,
"engines": {
Expand Down

0 comments on commit 96d60cb

Please sign in to comment.