Compare commits

...

4 Commits

Author SHA1 Message Date
cn c0a38af087 Prepare 1.1.3 release 2018-02-21 21:29:30 +01:00
cn 5d647fd842 package: add keywords 2018-02-21 21:29:13 +01:00
Christian Nicolai 9e977f7abb Prepare 1.1.2 release 2018-02-21 15:54:33 +01:00
Christian Nicolai da21bc01cc grammar: try to detect regex values to avoid weird highlighting 2018-02-21 15:53:10 +01:00
3 changed files with 24 additions and 1 deletions

View File

@ -1,5 +1,17 @@
# Changelog
## 1.1.3 (February 21, 2018)
IMPROVEMENTS:
- Add package keywords
## 1.1.2 (February 21, 2018)
IMPROVEMENTS:
- Detection of regex values (although not an official data type) to avoid weird highlighting
## 1.1.1 (November 25, 2017)
IMPROVEMENTS:

View File

@ -138,6 +138,10 @@ repository:
{include: 'source.json'}
]
}
{
match: '\/.+\/$'
name: 'value.string.regex.fluentd'
}
{
match: '\\b(\\d+)\\b'
name: 'value.constant.integer.fluentd'

View File

@ -1,7 +1,14 @@
{
"name": "language-fluentd",
"description": "Fluentd Configuration language support in Atom",
"version": "1.1.1",
"version": "1.1.3",
"keywords": [
"language",
"grammar",
"fluentd",
"configuration",
"logging"
],
"engines": {
"atom": "*"
},