Skip to content

Commit e63830b

Browse files
Merge branch 'release/0.3.0'
2 parents 8ccafbc + b751839 commit e63830b

28 files changed

Lines changed: 42 additions & 31 deletions

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
22
# title Travis CI Build Configuration +
33
# project nord-atom-syntax +
4-
# version 0.2.0 +
4+
# version 0.3.0 +
55
# repository https://github.com/arcticicestudio/nord-atom-syntax +
66
# author Arctic Ice Studio +
77
# email development@arcticicestudio.com +

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
<p align="center"><img src="https://atom.io/favicon.ico" width=24 height=24/> <a href="https://atom.io/themes/nord-atom-syntax"><img src="https://img.shields.io/apm/v/nord-atom-syntax.svg"/></a> <img src="https://assets-cdn.github.com/favicon.ico" width=24 height=24/> <a href="https://github.com/arcticicestudio/nord-atom-syntax/releases/latest"><img src="https://img.shields.io/github/release/arcticicestudio/nord-atom-syntax.svg"/></a></p>
44

5+
---
6+
7+
# 0.3.0 (2016-09-29)
8+
## Improvements
9+
### `language-c`
10+
- Operator keywords are now colored explicitly as discussed in atom/language-c#151 and atom/one-dark-syntax#74 (@arcticicestudio, #34, 529f290057da332977ddcbcba3e14163e772bbc0)
11+
512
# 0.2.0 (2016-09-20)
613
## Improvements
714
### CSS

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Detailed descriptions for supported languages can be found in the [project wiki]
5757
![][scrot-lang-ruby]
5858

5959
## Development
60-
[![](https://img.shields.io/badge/Changelog-0.2.0-blue.svg)](https://github.com/arcticicestudio/nord-atom-syntax/blob/v0.2.0/CHANGELOG.md) [![](https://img.shields.io/badge/Workflow-gitflow--branching--model-blue.svg)](http://nvie.com/posts/a-successful-git-branching-model) [![](https://img.shields.io/badge/Versioning-ArcVer_0.8.0-blue.svg)](https://github.com/arcticicestudio/arcver)
60+
[![](https://img.shields.io/badge/Changelog-0.3.0-blue.svg)](https://github.com/arcticicestudio/nord-atom-syntax/blob/v0.3.0/CHANGELOG.md) [![](https://img.shields.io/badge/Workflow-gitflow--branching--model-blue.svg)](http://nvie.com/posts/a-successful-git-branching-model) [![](https://img.shields.io/badge/Versioning-ArcVer_0.8.0-blue.svg)](https://github.com/arcticicestudio/arcver)
6161

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

index.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
33
title Index +
44
project nord-atom-syntax +
5-
version 0.2.0 +
5+
version 0.3.0 +
66
repository https://github.com/arcticicestudio/nord-atom-syntax +
77
author Arctic Ice Studio +
88
email development@arcticicestudio.com +

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "nord-atom-syntax",
33
"theme": "syntax",
4-
"version": "0.1.0",
4+
"version": "0.2.0",
55
"description": "A arctic, north-bluish clean and elegant Atom syntax theme.",
66
"author": {
77
"name": "Arctic Ice Studio",

styles/editor.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
33
title Editor +
44
project nord-atom-syntax +
5-
version 0.2.0 +
5+
version 0.3.0 +
66
repository https://github.com/arcticicestudio/nord-atom-syntax +
77
author Arctic Ice Studio +
88
email development@arcticicestudio.com +

styles/languages/c.less

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
33
title Language C/C++ +
44
project nord-atom-syntax +
5-
version 0.2.0 +
5+
version 0.3.0 +
66
repository https://github.com/arcticicestudio/nord-atom-syntax +
77
author Arctic Ice Studio +
88
email development@arcticicestudio.com +
@@ -18,6 +18,14 @@ Standard C++
1818
*/
1919
.source.c,
2020
.source.cpp {
21+
.keyword.operator {
22+
color: @syntax-color-keyword;
23+
}
24+
25+
.meta.preprocessor {
26+
color: @syntax-color-preprocessor;
27+
}
28+
2129
.punctuation {
2230
&.definition.directive {
2331
color: @syntax-color-keyword;
@@ -28,10 +36,6 @@ Standard C++
2836
}
2937
}
3038

31-
.meta.preprocessor {
32-
color: @syntax-color-preprocessor;
33-
}
34-
3539
.string.include {
3640
color: @syntax-color-class;
3741
}

styles/languages/clojure.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
33
title Language Clojure +
44
project nord-atom-syntax +
5-
version 0.2.0 +
5+
version 0.3.0 +
66
repository https://github.com/arcticicestudio/nord-atom-syntax +
77
author Arctic Ice Studio +
88
email development@arcticicestudio.com +

styles/languages/coffeescript.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
33
title Language CoffeeScript +
44
project nord-atom-syntax +
5-
version 0.2.0 +
5+
version 0.3.0 +
66
repository https://github.com/arcticicestudio/nord-atom-syntax +
77
author Arctic Ice Studio +
88
email development@arcticicestudio.com +

styles/languages/cs.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
33
title Language C# +
44
project nord-atom-syntax +
5-
version 0.2.0 +
5+
version 0.3.0 +
66
repository https://github.com/arcticicestudio/nord-atom-syntax +
77
author Arctic Ice Studio +
88
email development@arcticicestudio.com +

0 commit comments

Comments
 (0)