Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanBluefox committed Feb 17, 2023
1 parent 9cfcac8 commit b1f8877
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,13 @@ And then call `npm run build`.
<!--
### **WORK IN PROGRESS**
-->

### __WORK IN PROGRESS__
### 6.2.0 (2023-02-17)
* (Apollon77) Prevented duplicate schedule triggering with inaccurate RTC clocks
* (Apollon77) Fixed sendToAsync and sendToHostAsync
* (Apollon77) Added rename/renameFile(Async) methods
* (Apollon77) Deprecated get/setBinaryState(Async) methods and log a message on usage. Use Files instead!
* (Apollon77) Deprecated usage of own states in javascript.X.scriptEnabled/Problem and log a message on usage. Use own states in 0_userdata.0 instead!
* (bluefox) added axios to pre-installed modules. `request` will be removed in the future
* (bluefox) added axios to pre-installed modules. `request` will be removed in the future

### 6.1.4 (2022-11-14)
* (bluefox) Corrected small error in rules
Expand All @@ -79,9 +78,6 @@ And then call `npm run build`.
* (Apollon77) Fix issues with cancelling schedules when stopping scripts
* (bluefox) Corrected debug mode

### 6.0.3 (2022-09-14)
* (AlCalzone) Downgrade Typescript to prevent errors with global typescript scripts

## License
The MIT License (MIT)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export const ContextWrapper = ({ children, socket }) => {
try {
I18n.extendTranslations(obj.common.javascriptRules.i18n);
} catch (error) {
console.error(`Cannot import i18n: ${error}`);
console.error(`Cannot import i18n for "${obj.common.javascriptRules.name}": ${error}`);
}
}

Expand All @@ -169,7 +169,7 @@ export const ContextWrapper = ({ children, socket }) => {
ADAPTERS[obj.common.name] = null;
}
} catch (e) {
console.error(`Cannot load component: ${e}`);
console.error(`Cannot load component "${obj.common.javascriptRules.name}": ${e}`);
}
}

Expand Down

0 comments on commit b1f8877

Please sign in to comment.