Skip to content

Commit a49113a

Browse files
Merge branch 'release/0.2.0'
2 parents 5327be9 + 969cbff commit a49113a

File tree

3 files changed

+27
-8
lines changed

3 files changed

+27
-8
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,27 @@
44

55
---
66

7+
# 0.2.0
8+
*2017-04-17*
9+
## Features
10+
### Mode Support
11+
❯ Implemented support for the `which-function-mode`. (@microamp, #28, f7a2f6e6)
12+
13+
<p align="center"><strong>Before</strong><br><img src="https://cloud.githubusercontent.com/assets/7836623/24758354/6ed3c51c-1ae2-11e7-8a18-b58c1d0e6185.png"/><br><strong>After</strong><br><img src="https://cloud.githubusercontent.com/assets/7836623/24758374/7bc489aa-1ae2-11e7-9eba-6657425a3936.png"/></p>
14+
15+
## Improvements
16+
### UI
17+
❯ The text color of inactive mode lines are now colorized with `nord4` instead of `nord3` to increase the readability. (@cavd, #25, 067b9bbe)
18+
19+
## Bug Fixes
20+
❯ Fixed the color of the `cursor` face caused by using the wrong attribute `:foreground` instead of `:background`. (@spegoraro, #24, b11fb535)
21+
22+
<p align="center"><strong>Before</strong><br><img src="https://cloud.githubusercontent.com/assets/7836623/25084545/66ecc672-235d-11e7-9526-cf8ab338238f.png"/><br><strong>After</strong><br><img src="https://cloud.githubusercontent.com/assets/7836623/24761805/c1a9d858-1aec-11e7-914b-06d98d8802eb.png"/></p>
23+
724
# 0.1.2
825
*2017-03-26*
926
## Bug Fixes
27+
### UI
1028
❯ Some more minor fixes created by a MELPA contributor to adhere to the packaging standard. (@purcell, PR #21, 70a3ee23)
1129
- Formated header conventionally, with `Commentary` and `Code` section markers
1230
- Removed redundant use of *Emacs* since all `elisp` packages are for Emacs

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Detailed descriptions for supported languages can be found in the [project wiki]
108108
<p align="center"><strong>Ruby</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-emacs/develop/assets/scrot-lang-ruby.png"/></p>
109109

110110
## Development
111-
[![](https://img.shields.io/badge/Changelog-0.1.2-81A1C1.svg)](https://github.com/arcticicestudio/nord-emacs/blob/v0.1.2/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)
111+
[![](https://img.shields.io/badge/Changelog-0.2.0-81A1C1.svg)](https://github.com/arcticicestudio/nord-emacs/blob/v0.2.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)
112112

113113
### Contribution
114114
Please report issues/bugs, feature requests and suggestions for improvements to the [issue tracker](https://github.com/arcticicestudio/nord-emacs/issues).

nord-theme.el

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
;; Title: Nord Theme
66
;; Project: nord-emacs
7-
;; Version: 0.1.2
7+
;; Version: 0.2.0
88
;; URL: https://github.com/arcticicestudio/nord-emacs
99
;; Author: Arctic Ice Studio <[email protected]>
1010
;; Package-Requires: ((emacs "24"))
@@ -153,7 +153,7 @@
153153
`(custom-set ((,class (:foreground ,nord8))))
154154
`(custom-state ((,class (:foreground ,nord14))))
155155
`(custom-themed ((,class (:foreground ,nord8 :background ,nord2))))
156-
`(cursor ((,class (:foreground ,nord4))))
156+
`(cursor ((,class (:background ,nord4))))
157157
`(fringe ((,class (:foreground ,nord4 :background ,nord0))))
158158
`(file-name-shadow ((,class (:inherit shadow))))
159159
`(header-line ((,class (:foreground ,nord4 :background ,nord2))))
@@ -183,7 +183,7 @@
183183
`(mode-line ((,class (:foreground ,nord4 :background ,nord2))))
184184
`(mode-line-buffer-id ((,class (:weight bold))))
185185
`(mode-line-highlight ((,class (:inherit highlight))))
186-
`(mode-line-inactive ((,class (:foreground ,nord3 :background ,nord1))))
186+
`(mode-line-inactive ((,class (:foreground ,nord4 :background ,nord1))))
187187
`(next-error ((,class (:inherit error))))
188188
`(nobreak-space ((,class (:foreground ,nord3))))
189189
`(outline-1 ((,class (:foreground ,nord8 :weight bold))))
@@ -244,10 +244,7 @@
244244
`(vc-state-base ((,class (:foreground ,nord4))))
245245
`(vc-up-to-date-state ((,class (:foreground ,nord8))))
246246
`(vertical-border ((,class (:foreground ,nord2))))
247-
`(widget-button-pressed ((,class (:foreground ,nord9 :background ,nord1))))
248-
`(widget-documentation ((,class (:foreground ,nord4))))
249-
`(widget-field ((,class (:background ,nord2 :foreground ,nord4))))
250-
`(widget-single-line-field ((,class (:background ,nord2 :foreground ,nord4))))
247+
`(which-func ((,class (:foreground ,nord8))))
251248
`(whitespace-big-indent ((,class (:foreground ,nord3 :background ,nord0))))
252249
`(whitespace-empty ((,class (:foreground ,nord3 :background ,nord0))))
253250
`(whitespace-hspace ((,class (:foreground ,nord3 :background ,nord0))))
@@ -259,6 +256,10 @@
259256
`(whitespace-space-before-tab ((,class (:foreground ,nord3 :background ,nord0))))
260257
`(whitespace-tab ((,class (:foreground ,nord3 :background ,nord0))))
261258
`(whitespace-trailing ((,class (:inherit trailing-whitespace))))
259+
`(widget-button-pressed ((,class (:foreground ,nord9 :background ,nord1))))
260+
`(widget-documentation ((,class (:foreground ,nord4))))
261+
`(widget-field ((,class (:background ,nord2 :foreground ,nord4))))
262+
`(widget-single-line-field ((,class (:background ,nord2 :foreground ,nord4))))
262263
`(window-divider ((,class (:background ,nord3))))
263264
`(window-divider-first-pixel ((,class (:background ,nord3))))
264265
`(window-divider-last-pixel ((,class (:background ,nord3))))

0 commit comments

Comments
 (0)