Skip to content

Commit

Permalink
Merge branch 'release/0.1.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
arcticicestudio committed Mar 26, 2017
2 parents 6447262 + d354c72 commit 5327be9
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 16 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@

---

# 0.1.2
*2017-03-26*
## Bug Fixes
❯ Some more minor fixes created by a MELPA contributor to adhere to the packaging standard. (@purcell, PR #21, 70a3ee23)
- Formated header conventionally, with `Commentary` and `Code` section markers
- Removed redundant use of *Emacs* since all `elisp` packages are for Emacs
- Declared Emacs `24` dependency via `Package-Requires` documentaion attribute
- Fixed a typo from *marmelade* to *marmalade*
- Added missing trailing comment line to mark the end of the theme file

# 0.1.1
*2017-03-25*
## Bug Fixes
Expand All @@ -16,7 +26,7 @@ Detailed information about [features](https://github.com/arcticicestudio/nord-em

❯ Implemented the main theme file [`nord-theme.el`](https://github.com/arcticicestudio/nord-emacs/blob/develop/nord-theme.el). (@arcticicestudio, #1, e51f7593)

<p align="center"><img src="https://raw.githubusercontent.com/arcticicestudio/nord-emacs/develop/assets/scrot-lang-java.png"/></p>
<p align="center"><img src="https://raw.githubusercontent.com/arcticicestudio/nord-emacs/develop/assets/scrot-package-syntax-jdee.png"/></p>

<p align="center"><strong>Non-obtrusive bracket matching- and search marker.</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-emacs/develop/assets/scrot-feature-bracket-matching.png"/><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-emacs/develop/assets/scrot-feature-search.gif"/></p>

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

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

### Contribution
Please report issues/bugs, feature requests and suggestions for improvements to the [issue tracker](https://github.com/arcticicestudio/nord-emacs/issues).
Expand Down
39 changes: 25 additions & 14 deletions nord-theme.el
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
;;; nord-theme.el --- An arctic, north-bluish clean and elegant Emacs theme.

;; title: Nord Emacs
;; project: nord-emacs
;; version: 0.1.1
;; repository: https://github.com/arcticicestudio/nord-emacs
;; author: Arctic Ice Studio
;; email: [email protected]
;; copyright: Copyright (C) 2017
;;
;; [References]
;;; nord-theme.el --- An arctic, north-bluish clean and elegant theme

;; Copyright (C) 2017 by Arctic Ice Studio

;; Title: Nord Theme
;; Project: nord-emacs
;; Version: 0.1.2
;; URL: https://github.com/arcticicestudio/nord-emacs
;; Author: Arctic Ice Studio <[email protected]>
;; Package-Requires: ((emacs "24"))

;;; Commentary:

;; Nord is a 16 colorspace theme build to run in GUI- and terminal
;; mode with support for many third-party syntax- and UI packages.

;;; References:
;; Awesome Emacs
;; https://github.com/emacs-tw/awesome-emacs
;; GNU ELPA
Expand All @@ -22,15 +28,18 @@
;; https://www.gnu.org/software/emacs/manual/html_node/elisp/Face-Attributes.html
;; https://www.gnu.org/software/emacs/manual/html_node/elisp/Faces-for-Font-Lock.html
;; https://www.gnu.org/software/emacs/manual/html_node/elisp/Display-Feature-Testing.html
;; marmelade repo
;; marmalade repo
;; https://marmalade-repo.org
;; MELPA
;; https://melpa.org
;; https://stable.melpa.org

;;; Code:

(unless (>= emacs-major-version 24)
(error "Nord Emacs theme requires Emacs 24 or later!"))
(error "Nord theme requires Emacs 24 or later!"))

(deftheme nord "An arctic, north-bluish clean and elegant Emacs theme")
(deftheme nord "An arctic, north-bluish clean and elegant theme")

;;;; Color Constants
(let ((class '((class color) (min-colors 89)))
Expand Down Expand Up @@ -573,3 +582,5 @@
;; no-byte-compile: t
;; indent-tabs-mode: nil
;; End:

;;; nord-theme.el ends here

0 comments on commit 5327be9

Please sign in to comment.