Skip to content

Commit b3636d1

Browse files
Merge branch 'release/0.4.0'
2 parents e519638 + d616824 commit b3636d1

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
---
66

7+
# 0.4.0
8+
*2017-03-14*
9+
## Improvements
10+
❯ The `cursorColor` configuration is now respected to use the user defined color before the theme color. (@berkin, PR #8, bc73116f)
11+
712
# 0.3.0
813
*2017-03-09*
914
## Features

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ module.exports = {
5858
```
5959

6060
## Development
61-
[![](https://img.shields.io/badge/Changelog-0.3.0-81A1C1.svg)](https://github.com/arcticicestudio/nord-hyper/blob/v0.3.0/CHANGELOG.md) [![](https://img.shields.io/badge/Workflow-gitflow--branching--model-81A1C1.svg)](http://nvie.com/posts/a-successful-git-branching-model) [![](https://img.shields.io/badge/Versioning-ArcVer_0.8.0-81A1C1.svg)](https://github.com/arcticicestudio/arcver)
61+
[![](https://img.shields.io/badge/Changelog-0.4.0-81A1C1.svg)](https://github.com/arcticicestudio/nord-hyper/blob/v0.4.0/CHANGELOG.md) [![](https://img.shields.io/badge/Workflow-gitflow--branching--model-81A1C1.svg)](http://nvie.com/posts/a-successful-git-branching-model) [![](https://img.shields.io/badge/Versioning-ArcVer_0.8.0-81A1C1.svg)](https://github.com/arcticicestudio/arcver)
6262

6363
Continuous integration builds are running at [Travis-CI](https://travis-ci.org/arcticicestudio/nord-hyper) and [Circle CI](https://circleci.com/gh/arcticicestudio/nord-hyper).
6464

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ exports.decorateConfig = config => {
7474
foregroundColor,
7575
backgroundColor,
7676
borderColor,
77-
cursorColor: cursorColor,
77+
cursorColor: config.cursorColor || cursorColor,
7878
colors,
7979
cursorShape: config.cursorShape || "BEAM",
8080
fontSize: config.fontSize || 16,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "nord-hyper",
33
"title": "Nord Hyper",
4-
"version": "0.3.0",
4+
"version": "0.4.0",
55
"description": "A arctic, north-bluish clean and elegant Hyper theme plugin",
66
"author": {
77
"name": "Arctic Ice Studio",

0 commit comments

Comments
 (0)