Skip to content

Commit

Permalink
setstate convert to async
Browse files Browse the repository at this point in the history
  • Loading branch information
TA2k committed Apr 23, 2020
1 parent 6d948ab commit 8cc7b8a
Show file tree
Hide file tree
Showing 5 changed files with 527 additions and 525 deletions.
65 changes: 31 additions & 34 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,32 @@
{
"env": {
"es6": true,
"node": true,
"mocha": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
"tab",
{
"SwitchCase": 1
}
],
"no-console": "off",
"no-var": "error",
"prefer-const": "error",
"quotes": [
"error",
"double",
{
"avoidEscape": true,
"allowTemplateLiterals": true
}
],
"semi": [
"error",
"always"
]
},
"parserOptions": {
"ecmaVersion": 2018
}
}
"env": {
"es6": true,
"node": true,
"mocha": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
"spaces",
{
"SwitchCase": 1
}
],
"no-console": "off",
"no-var": "error",
"prefer-const": "error",
"quotes": [
"error",
"double",
{
"avoidEscape": true,
"allowTemplateLiterals": true
}
],
"semi": ["error", "always"]
},
"parserOptions": {
"ecmaVersion": 2018
}
}
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ CipherString = DEFAULT@SECLEVEL=1

## Changelog

### 0.0.23

- (tomboxi) Convert all state changes to async.

### 0.0.22

- (tomboxi) Optionen zum Filtern und JSON Ausgabe hinzugefügt.
Expand Down
5 changes: 4 additions & 1 deletion io-package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"common": {
"name": "nina",
"version": "0.0.22",
"version": "0.0.23",
"news": {
"0.0.23": {
"de": "Alle Stateveränderungen sind jetzt async"
},
"0.0.22": {
"de": "Optionen zum Filtern und JSON Ausgabe hinzugefügt."
},
Expand Down
Loading

0 comments on commit 8cc7b8a

Please sign in to comment.