Skip to content

Commit

Permalink
Merge branch 'release/0.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
arcticicestudio committed Feb 21, 2017
2 parents b8aa9a9 + 899f860 commit 4f9ebe3
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# [References]
# Travis CI Documentation
# (https://docs.travis-ci.com)
# (https://docs.travis-ci.com/user/languages/javascript-with-nodejs)
language: node_js
node_js:
- "6"
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@

---

# 0.1.1
*2017-02-21*
## Improvements
### Continuous Integration Builds
[Circle CI](https://circleci.com/gh/arcticicestudio/nord-hyper) builds are running against the latest [Node](https://nodejs.org) `6.x.x` version now
[Travis-CI](https://travis-ci.org/arcticicestudio/nord-hyper) builds are running against the latest [Node](https://nodejs.org) `6.x.x` and `4.x.x` versions now

## Bug Fixes
❯ Fixed the order of the `cursorShape`, `fontSize` and `fontFamily` configuration attributes to prevent overriding of the defined `~/.hyper.js` user configs with the theme defaults. (@kepbod, #2 #3, 45e8e9c3)

### Documentation
❯ Fixed the keymaps to open- and reload the `~/.hyper.js` config file. (@kepbod, #2, d1604716)

# 0.1.0
*2017-02-19*
<img src="https://www.npmjs.com/static/images/touch-icons/apple-touch-icon-60x60.png" width=16 height=16/> **Initial npm module release version!**
Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,13 @@ plugins: [
'nord-hyper'
]
```
The configuration file can be opened with `⌘ +` and reloaded with `⌘ ⇧ R`.
The configuration file can be opened with
- <img src="https://developer.apple.com/favicon.ico" width=16 height=16/> `⌘ + ,`
- <img src="https://www.kernel.org/theme/images/logos/favicon.png" width=16 height=16/> <img src="https://www.microsoft.com/favicon.ico" width=16 height=16/> `Ctrl + ,`

and reloaded with
- <img src="https://developer.apple.com/favicon.ico" width=16 height=16/> `⌘ ⇧ R`
- <img src="https://www.kernel.org/theme/images/logos/favicon.png" width=16 height=16/> <img src="https://www.microsoft.com/favicon.ico" width=16 height=16/> `Ctrl ⇧ R`

#### <a href="https://www.npmjs.com/package/hpm-cli"><img src="https://hyper.is/favicon.png" width=24 height=24/> hpm</a>
Install `nord-hyper` from the command line:
Expand All @@ -34,7 +40,7 @@ hpm install nord-hyper
<p align="center"><strong>Non-obtrusive cursor blinking.</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-hyper/develop/assets/scrcast-feature-cursor-blink.gif"/></p>

## Development
[![](https://img.shields.io/badge/Changelog-0.1.0-81A1C1.svg)](https://github.com/arcticicestudio/nord-hyper/blob/v0.1.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)
[![](https://img.shields.io/badge/Changelog-0.1.1-81A1C1.svg)](https://github.com/arcticicestudio/nord-hyper/blob/v0.1.1/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)

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).

Expand Down
3 changes: 2 additions & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
#
# [References]
# Circle CI
# (https://circleci.com/docs)
# (https://circleci.com/docs/language-nodejs)
# (https://circleci.com/docs/yarn)
machine:
node:
version: 6
Expand Down
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ exports.decorateConfig = config => {
borderColor,
cursorColor: cursorColor,
colors,
cursorShape: "BEAM",
cursorShape: config.cursorShape || "BEAM",
fontSize: config.fontSize || 16,
fontFamily: "'Source Code Pro', Hack" || config.fontFamily,
fontFamily: config.fontFamily || "'Source Code Pro', Hack",
termCSS: `
${config.termCSS || ""}
::selection {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nord-hyper",
"title": "Nord Hyper",
"version": "0.1.0",
"version": "0.1.1",
"description": "A arctic, north-bluish clean and elegant Hyper theme plugin",
"author": {
"name": "Arctic Ice Studio",
Expand Down

0 comments on commit 4f9ebe3

Please sign in to comment.