Skip to content

Commit

Permalink
Release 1.2.5
Browse files Browse the repository at this point in the history
- Fixed issue #104
  • Loading branch information
SaekiRaku committed Jun 29, 2020
1 parent 7407947 commit b6345a6
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to the "vscode-rainbow-fart" extension will be documented in

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## [1.2.5] - 2020-06-22

### Fixed

- [Issue #104](https://github.com/SaekiRaku/vscode-rainbow-fart/issues/104)

## [1.2.4] - Deprecated

## [1.2.3] - 2020-06-22

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.3
1.2.5
8 changes: 8 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to the "vscode-rainbow-fart" extension will be documented in

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## [1.2.5] - 2020-06-22

### Fixed

- [Issue #104](https://github.com/SaekiRaku/vscode-rainbow-fart/issues/104)

## [1.2.4] - Deprecated

## [1.2.3] - 2020-06-22

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion docs/global.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
window.VERSION = "1.2.3";
window.VERSION = "1.2.5";
window.URL_PREFIX = location.pathname === "/" ? "" : location.pathname;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "rainbow-fart",
"displayName": "🌈 Rainbow Fart",
"description": "This extension will keep giving you compliment while you are coding.",
"version": "1.2.3",
"version": "1.2.5",
"engines": {
"vscode": "^1.33.0"
},
Expand Down
3 changes: 3 additions & 0 deletions src/timerHook.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ function playSpecialKeyword(keyword) {
var candidate = [];

share.maindata.forEach(voicePackage => {
if (!voicePackage.enabled) {
return;
}
voicePackage.contributes.forEach(contribute => {
if (!Array.isArray(contribute.keywords)) {
contribute.keywords = [contribute.keywords];
Expand Down

0 comments on commit b6345a6

Please sign in to comment.