iobroker.zendure-solarflow 0.1.0-alpha.2 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -0
- package/admin/build/index.css.map +1 -1
- package/admin/build/index.js +52 -29
- package/admin/build/index.js.map +4 -4
- package/build/main.js +9 -7
- package/build/main.js.map +2 -2
- package/build/services/adapterService.js +95 -50
- package/build/services/adapterService.js.map +2 -2
- package/build/services/mqttService.js +5 -5
- package/build/services/mqttService.js.map +2 -2
- package/build/services/webService.js +8 -7
- package/build/services/webService.js.map +3 -3
- package/io-package.json +40 -4
- package/package.json +8 -8
- package/admin/.watch/index.css +0 -270
- package/admin/.watch/index.js +0 -59658
package/README.md
CHANGED
|
@@ -33,10 +33,23 @@ If you find the adapter useful for you and want to support my work, feel free to
|
|
|
33
33
|
[](https://www.paypal.com/paypalme/PeterFrommert)
|
|
34
34
|
|
|
35
35
|
## Changelog
|
|
36
|
+
### 1.0.2 (2023-12-12)
|
|
37
|
+
|
|
38
|
+
- Adapter improvements suggested by iobroker team
|
|
39
|
+
- Fixed battery pack temperature (data is in kelvin, so now converting to celcius)
|
|
40
|
+
|
|
41
|
+
### 1.0.1 (2023-11-03)
|
|
42
|
+
|
|
43
|
+
- Fix translations
|
|
44
|
+
- Use 'extendObjectAsync' instead of 'setObjectNotExistsAsync'
|
|
45
|
+
- First official release version
|
|
46
|
+
|
|
36
47
|
### 0.1.0-alpha.2 (2023-10-27)
|
|
48
|
+
|
|
37
49
|
- Don't stop the adapter when no login information is provided!
|
|
38
50
|
|
|
39
51
|
### 0.1.0-alpha.1 (2023-10-27)
|
|
52
|
+
|
|
40
53
|
- Fix Typescript typos
|
|
41
54
|
|
|
42
55
|
### 0.1.0-alpha.0 (2023-10-26)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../node_modules/@iobroker/adapter-react/Components/loader.css", "../../node_modules/@iobroker/adapter-react/index.css"],
|
|
4
|
-
"sourcesContent": ["/**\n * Copyright 2018-
|
|
4
|
+
"sourcesContent": ["/**\n * Copyright 2018-2022 bluefox <dogafox@gmail.com>\n *\n * MIT License\n *\n **/\n\n.logo-background-light, .logo-background-colored {\n background: white;\n}\n.logo-background-dark, .logo-background-blue {\n background: black;\n}\n.logo-div {\n position: absolute;\n top: 50%;\n left: 50%;\n -ms-transform: translateX(-50%) translateY(-50%);\n -webkit-transform: translate(-50%,-50%);\n transform: translate(-50%,-50%);\n overflow: hidden;\n border-radius: 50%;\n z-index: 2;\n}\n.logo-border {\n /*border-color: #164477;*/\n border-top-color: #3399CC;\n border-left-color: #164477;\n border-bottom-color: #164477;\n border-right-color: #164477;\n border-radius: 50%;\n border-style: solid;\n box-sizing: border-box;\n width: 100%;\n height: 100%;\n position: absolute;\n}\n.logo-top {\n position: absolute;\n width: 4.5%;\n height: 16%;\n top: 0;\n z-index: 2;\n}\n.logo-i {\n position: absolute;\n width: 14.5%;\n height: 60%;\n top: 20%;\n left: 42%;\n background: #3399CC;\n}\n.logo-i-top {\n position: absolute;\n width: 14.5%;\n height: 4%;\n left: 42%;\n background: #3399CC;\n border-radius: 100%;\n}\n.logo-back {\n width: 100%;\n height: 100%;\n z-index: 0;\n overflow: hidden;\n}\n@keyframes logo-grow {\n 0% {\n width: 230px;\n height: 230px;\n transform: translate(-50%,-50%) scale(1);\n opacity: 1\n }\n 99% {\n width: 230px;\n height: 230px;\n transform: translate(-50%,-50%) scale(10);\n opacity: 0;\n }\n 100% {\n width: 0;\n height: 0;\n opacity: 0;\n }\n}\n@keyframes logo-spin { 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } }\n@keyframes logo-color-inside-light {\n 0% {\n background: #FEFEFE;\n }\n 100% {\n background: #3399CC;\n }\n}\n@keyframes logo-color-inside-dark {\n 0% {\n background: #030303;\n }\n 100% {\n background: #3399CC;\n }\n}\n@keyframes logo-color-inside-colored {\n 0% {\n background: #FEFEFE;\n }\n 100% {\n background: #3399CC;\n }\n}\n@keyframes logo-color-inside-blue {\n 0% {\n background: #030303;\n }\n 100% {\n background: #3399CC;\n }\n}\n\n@keyframes logo-color-outside-light {\n 0% {\n border-color: #FEFEFE;\n }\n 100% {\n border-top-color: #3399CC;\n border-left-color: #164477;\n border-bottom-color: #164477;\n border-right-color: #164477;\n }\n}\n@keyframes logo-color-outside-dark {\n 0% {\n border-color: #040404;\n }\n 100% {\n border-top-color: #3399CC;\n border-left-color: #164477;\n border-bottom-color: #164477;\n border-right-color: #164477;\n }\n}\n@keyframes logo-color-outside-colored {\n 0% {\n border-color: #FEFEFE;\n }\n 100% {\n border-top-color: #3399CC;\n border-left-color: #164477;\n border-bottom-color: #164477;\n border-right-color: #164477;\n }\n}\n@keyframes logo-color-outside-blue {\n 0% {\n border-color: #040404;\n }\n 100% {\n border-top-color: #3399CC;\n border-left-color: #164477;\n border-bottom-color: #164477;\n border-right-color: #164477;\n }\n}\n\n.logo-animate-wait {\n animation: logo-color-outside 1.5s, logo-spin 1.5s linear infinite;\n}\n\n.logo-animate-grow-light {\n background: #DDD;\n}\n.logo-animate-grow-dark {\n background: #1d1d1d;\n}\n.logo-animate-grow-colored {\n background: #DDD;\n}\n.logo-animate-grow-blue {\n background: #1d1d1d;\n}\n\n.logo-animate-grow {\n display: inline-block;\n text-align: center;\n z-index: 1;\n top: 50%;\n left: 50%;\n -ms-transform: translateX(-50%) translateY(-50%);\n -webkit-transform: translate(-50%,-50%);\n transform: translate(-50%,-50%);\n width: 245px;\n height: 245px;\n border-radius: 50%;\n position: absolute;\n animation: logo-grow 1s 1 ease forwards;\n}\n\n.logo-animate-color-inside-light {\n animation: logo-color-inside-light 2.5s;\n}\n.logo-animate-color-inside-dark {\n animation: logo-color-inside-dark 2.5s;\n}\n.logo-animate-color-inside-colored {\n animation: logo-color-inside-colored 2.5s;\n}\n.logo-animate-color-inside-blue {\n animation: logo-color-inside-blue 2.5s;\n}\n\n.logo-animate-color-outside-light {\n animation: logo-color-outside-light 1.5s;\n}\n.logo-animate-color-outside-dark {\n animation: logo-color-outside-dark 1.5s;\n}\n.logo-animate-color-outside-colored {\n animation: logo-color-outside-colored 1.5s;\n}\n.logo-animate-color-outside-blue {\n animation: logo-color-outside-blue 1.5s;\n}", "/**\n * Copyright 2018-2022 bluefox <dogafox@gmail.com>\n *\n * MIT License\n *\n **/\n\nhtml {\n height: 100%;\n}\n\nbody {\n margin: 0;\n padding: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n width: 100%;\n height: 100%;\n overflow: hidden;\n}\n\n/* scrollbar */\n::-webkit-scrollbar-track {\n background-color: #ccc;\n border-radius: 5px;\n}\n\n::-webkit-scrollbar {\n width: 5px;\n height: 5px;\n background-color: #ccc;\n}\n\n::-webkit-scrollbar-thumb {\n background-color: #575757;\n border-radius: 5px;\n}\n\n#root {\n height: 100%;\n}\n\n.App {\n height: 100%;\n}\n\n@keyframes glow {\n from {\n background-color: initial;\n }\n to {\n background-color: #58c458;\n }\n}"],
|
|
5
5
|
"mappings": "AAOA,gDACI,iBAEJ,4CACI,iBAEJ,UACI,kBACA,QACA,SACA,gDACA,uCACA,+BACA,gBApBJ,kBAsBI,UAEJ,aAEI,sBACA,0BACA,4BACA,2BA7BJ,kBA+BI,mBACA,sBACA,WACA,YACA,kBAEJ,UACI,kBACA,WACA,WACA,MACA,UAEJ,QACI,kBACA,YACA,WACA,QACA,SACA,mBAEJ,YACI,kBACA,YACA,UACA,SACA,mBAzDJ,mBA4DA,WACI,WACA,YACA,UACA,gBAEJ,wBAEQ,YACA,aACA,wCACA,cAGA,YACA,aACA,yCACA,aAGA,QACA,SACA,WAGR,wBAA8B,iCAAmC,0BACjE,sCAEQ,sBAGA,oBAGR,qCAEQ,sBAGA,oBAGR,wCAEQ,sBAGA,oBAGR,qCAEQ,sBAGA,oBAIR,uCAEQ,wBAGA,sBACA,0BACA,4BACA,4BAGR,sCAEQ,wBAGA,sBACA,0BACA,4BACA,4BAGR,yCAEQ,wBAGA,sBACA,0BACA,4BACA,4BAGR,sCAEQ,wBAGA,sBACA,0BACA,4BACA,4BAIR,mBACI,iEAGJ,yBACI,gBAEJ,wBACI,mBAEJ,2BACI,gBAEJ,wBACI,mBAGJ,mBACI,qBACA,kBACA,UACA,QACA,SACA,gDACA,uCACA,+BACA,YACA,aA/LJ,kBAiMI,kBACA,uCAGJ,iCACI,uCAEJ,gCACI,sCAEJ,mCACI,yCAEJ,gCACI,sCAGJ,kCACI,wCAEJ,iCACI,uCAEJ,oCACI,0CAEJ,iCACI,uCCrNJ,KACI,YAGJ,KAXA,mBAcI,oIACA,mCACA,kCACA,WACA,YACA,gBAIJ,0BACI,sBAxBJ,kBA4BA,oBACI,UACA,WACA,sBAGJ,0BACI,yBAnCJ,kBAuCA,WACI,YAOJ,mBAEQ,4BAGA",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|