@iobroker/adapter-react-v5 8.0.3 → 8.0.4
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 +248 -242
- package/build/Components/ObjectBrowser.d.ts +1 -3
- package/build/Components/ObjectBrowser.js +251 -152
- package/build/Components/ObjectBrowser.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ If you want to create the configuration page with ReactJS:
|
|
|
13
13
|
- Change `name` from `src` to `ADAPTERNAME-admin` (Of course replace `ADAPTERNAME` with yours)
|
|
14
14
|
- Add to devDependencies:
|
|
15
15
|
```json
|
|
16
|
-
"@iobroker/adapter-react-v5": "^7.4.10"
|
|
16
|
+
{ "@iobroker/adapter-react-v5": "^7.4.10" }
|
|
17
17
|
```
|
|
18
18
|
Versions can be higher.
|
|
19
19
|
So your `src/package.json` should look like:
|
|
@@ -48,13 +48,15 @@ If you want to create the configuration page with ReactJS:
|
|
|
48
48
|
7. Add scripts to your `package.json` `scripts` section:
|
|
49
49
|
|
|
50
50
|
```json
|
|
51
|
-
|
|
52
|
-
"
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
51
|
+
{
|
|
52
|
+
"scripts": {
|
|
53
|
+
"0-clean": "node tasks --0-clean",
|
|
54
|
+
"1-npm": "node tasks --1-npm",
|
|
55
|
+
"2-build": "node tasks --2-build",
|
|
56
|
+
"3-copy": "node tasks --3-copy",
|
|
57
|
+
"4-patch": "node tasks --4-patch",
|
|
58
|
+
"build": "node tasks"
|
|
59
|
+
}
|
|
58
60
|
}
|
|
59
61
|
```
|
|
60
62
|
|
|
@@ -136,7 +138,7 @@ class App extends GenericApp {
|
|
|
136
138
|
extendedProps.socket.port = 8081;
|
|
137
139
|
}
|
|
138
140
|
|
|
139
|
-
// allow to manage GenericApp the sentry
|
|
141
|
+
// allow to manage GenericApp the sentry initialization or do not set the sentryDSN if no sentry available
|
|
140
142
|
extendedProps.sentryDSN = 'https://yyy@sentry.iobroker.net/xx';
|
|
141
143
|
|
|
142
144
|
super(extendedProps);
|
|
@@ -192,7 +194,7 @@ onPrepareSave(settings) {
|
|
|
192
194
|
} else {
|
|
193
195
|
return true;
|
|
194
196
|
}
|
|
195
|
-
|
|
197
|
+
}
|
|
196
198
|
```
|
|
197
199
|
|
|
198
200
|
## Components
|
|
@@ -648,21 +650,21 @@ class MyComponent extends Component {
|
|
|
648
650
|
|
|
649
651
|
## List of adapters that use adapter-react
|
|
650
652
|
|
|
651
|
-
-
|
|
652
|
-
-
|
|
653
|
-
-
|
|
654
|
-
-
|
|
655
|
-
-
|
|
656
|
-
-
|
|
657
|
-
-
|
|
658
|
-
-
|
|
659
|
-
-
|
|
660
|
-
-
|
|
661
|
-
-
|
|
662
|
-
-
|
|
663
|
-
-
|
|
664
|
-
-
|
|
665
|
-
-
|
|
653
|
+
- Admin
|
|
654
|
+
- Backitup
|
|
655
|
+
- iot
|
|
656
|
+
- echarts
|
|
657
|
+
- text2command
|
|
658
|
+
- scenes
|
|
659
|
+
- javascript
|
|
660
|
+
- devices
|
|
661
|
+
- eventlist
|
|
662
|
+
- cameras
|
|
663
|
+
- web
|
|
664
|
+
- vis-2
|
|
665
|
+
- vis-2-widgets-xxx
|
|
666
|
+
- fullcalendar
|
|
667
|
+
- openweathermap
|
|
666
668
|
|
|
667
669
|
## Usability
|
|
668
670
|
|
|
@@ -679,9 +681,9 @@ The icons may not be reused in other projects without the proper flaticon licens
|
|
|
679
681
|
|
|
680
682
|
You can find the migration instructions:
|
|
681
683
|
|
|
682
|
-
-
|
|
683
|
-
-
|
|
684
|
-
-
|
|
684
|
+
- [from adapter-react-v5@6.x to adapter-react-v5@7.x](MIGRATION_6_7.md)
|
|
685
|
+
- [from adapter-react-v5@5.x to adapter-react-v5@6.x](MIGRATION_5_6.md)
|
|
686
|
+
- [from adapter-react to adapter-react-v5@5.x](MIGRATION_4_5.md)
|
|
685
687
|
|
|
686
688
|
<!--
|
|
687
689
|
Placeholder for the next version (at the beginning of the line):
|
|
@@ -689,747 +691,751 @@ You can find the migration instructions:
|
|
|
689
691
|
-->
|
|
690
692
|
|
|
691
693
|
## Changelog
|
|
694
|
+
### 8.0.4 (2025-10-25)
|
|
695
|
+
|
|
696
|
+
- (@GermanBluefox) Fixed filter in the object browser
|
|
697
|
+
|
|
692
698
|
### 8.0.3 (2025-10-23)
|
|
693
699
|
|
|
694
|
-
-
|
|
700
|
+
- (@GermanBluefox) Split packages from mono-repo
|
|
695
701
|
|
|
696
702
|
### 7.2.3 (2024-10-05)
|
|
697
703
|
|
|
698
|
-
-
|
|
704
|
+
- (@GermanBluefox) Corrected error in the simple CRON dialog
|
|
699
705
|
|
|
700
706
|
### 7.2.2 (2024-10-04)
|
|
701
707
|
|
|
702
|
-
-
|
|
708
|
+
- (@GermanBluefox) Small layout change for Icon Picker
|
|
703
709
|
|
|
704
710
|
### 7.2.1 (2024-09-30)
|
|
705
711
|
|
|
706
|
-
-
|
|
707
|
-
-
|
|
712
|
+
- (@GermanBluefox) Allowed using an array of elements in dialogs
|
|
713
|
+
- (@GermanBluefox) Allowed to use `socket.iob` instead of `socket.io`
|
|
708
714
|
|
|
709
715
|
### 7.1.4 (2024-09-15)
|
|
710
716
|
|
|
711
|
-
-
|
|
717
|
+
- (@GermanBluefox) Updated socket classes
|
|
712
718
|
|
|
713
719
|
### 7.1.3 (2024-09-15)
|
|
714
720
|
|
|
715
|
-
-
|
|
716
|
-
-
|
|
721
|
+
- (@GermanBluefox) Updated socket classes
|
|
722
|
+
- (@GermanBluefox) Added additional confirmation dialog for CRONs for every minute execution
|
|
717
723
|
|
|
718
724
|
### 7.1.1 (2024-09-13)
|
|
719
725
|
|
|
720
|
-
-
|
|
726
|
+
- (@GermanBluefox) Corrected TabContainer
|
|
721
727
|
|
|
722
728
|
### 7.1.0 (2024-09-12)
|
|
723
729
|
|
|
724
|
-
-
|
|
725
|
-
-
|
|
730
|
+
- (@GermanBluefox) Optimized the icon picker
|
|
731
|
+
- (@GermanBluefox) Used common eslint-config
|
|
726
732
|
|
|
727
733
|
### 7.0.2 (2024-09-10)
|
|
728
734
|
|
|
729
|
-
-
|
|
730
|
-
-
|
|
735
|
+
- (@GermanBluefox) Showed the context menu under cursor position in the object browser
|
|
736
|
+
- (@GermanBluefox) Added links to aliases in the object browser
|
|
731
737
|
|
|
732
738
|
### 7.0.1 (2024-08-29)
|
|
733
739
|
|
|
734
|
-
-
|
|
735
|
-
-
|
|
740
|
+
- (@GermanBluefox) Updated the object browser
|
|
741
|
+
- (@GermanBluefox) Used MUI Library 6.0
|
|
736
742
|
|
|
737
743
|
### 6.1.10 (2024-08-30)
|
|
738
744
|
|
|
739
|
-
-
|
|
745
|
+
- (@GermanBluefox) Updated the object browser
|
|
740
746
|
|
|
741
747
|
### 6.1.9 (2024-08-14)
|
|
742
748
|
|
|
743
|
-
-
|
|
749
|
+
- (@GermanBluefox) Updated JSON schema
|
|
744
750
|
|
|
745
751
|
### 6.1.8 (2024-08-03)
|
|
746
752
|
|
|
747
|
-
-
|
|
753
|
+
- (@GermanBluefox) Added translations
|
|
748
754
|
|
|
749
755
|
### 6.1.6 (2024-07-23)
|
|
750
756
|
|
|
751
|
-
-
|
|
757
|
+
- (@GermanBluefox) Optimize package
|
|
752
758
|
|
|
753
759
|
### 6.1.5 (2024-07-20)
|
|
754
760
|
|
|
755
|
-
-
|
|
761
|
+
- (@GermanBluefox) Added sources to package
|
|
756
762
|
|
|
757
763
|
### 6.1.3 (2024-07-20)
|
|
758
764
|
|
|
759
|
-
-
|
|
765
|
+
- (@GermanBluefox) Better typing of legacy connection
|
|
760
766
|
|
|
761
767
|
### 6.1.1 (2024-07-16)
|
|
762
768
|
|
|
763
|
-
-
|
|
769
|
+
- (@GermanBluefox) Added translations
|
|
764
770
|
|
|
765
771
|
### 6.1.0 (2024-07-15)
|
|
766
772
|
|
|
767
|
-
-
|
|
773
|
+
- (@GermanBluefox) Replace by CRON to text the package to `cronstrue`
|
|
768
774
|
|
|
769
775
|
### 6.0.19 (2024-07-14)
|
|
770
776
|
|
|
771
|
-
-
|
|
777
|
+
- (@GermanBluefox) added some packages for federation
|
|
772
778
|
|
|
773
779
|
### 6.0.17 (2024-07-14)
|
|
774
780
|
|
|
775
|
-
-
|
|
776
|
-
-
|
|
781
|
+
- (@GermanBluefox) Allowed playing mp3 files in the file browser
|
|
782
|
+
- (@GermanBluefox) Corrected jump by object selection
|
|
777
783
|
|
|
778
784
|
### 6.0.14 (2024-07-07)
|
|
779
785
|
|
|
780
|
-
-
|
|
786
|
+
- (@GermanBluefox) Corrected theme type selection
|
|
781
787
|
|
|
782
788
|
### 6.0.13 (2024-06-30)
|
|
783
789
|
|
|
784
|
-
-
|
|
790
|
+
- (@GermanBluefox) Corrected color picker
|
|
785
791
|
|
|
786
792
|
### 6.0.12 (2024-06-29)
|
|
787
793
|
|
|
788
|
-
-
|
|
794
|
+
- (@GermanBluefox) Added support for the overrides in the theme
|
|
789
795
|
|
|
790
796
|
### 6.0.10 (2024-06-27)
|
|
791
797
|
|
|
792
|
-
-
|
|
793
|
-
-
|
|
798
|
+
- (@GermanBluefox) Added translation
|
|
799
|
+
- (@GermanBluefox) Mobile object browser improved
|
|
794
800
|
|
|
795
801
|
### 6.0.9 (2024-06-26)
|
|
796
802
|
|
|
797
|
-
-
|
|
803
|
+
- (@GermanBluefox) Corrected Icons
|
|
798
804
|
|
|
799
805
|
### 6.0.8 (2024-06-26)
|
|
800
806
|
|
|
801
|
-
-
|
|
802
|
-
-
|
|
807
|
+
- (@GermanBluefox) Corrected types of the select ID dialog
|
|
808
|
+
- (@GermanBluefox) Made the tooltips neutral to the pointer events
|
|
803
809
|
|
|
804
810
|
### 6.0.6 (2024-06-24)
|
|
805
811
|
|
|
806
|
-
-
|
|
807
|
-
-
|
|
812
|
+
- (@GermanBluefox) Synchronised with admin
|
|
813
|
+
- (@GermanBluefox) Added translations for time scheduler
|
|
808
814
|
|
|
809
815
|
### 6.0.4 (2024-06-21)
|
|
810
816
|
|
|
811
|
-
-
|
|
812
|
-
-
|
|
817
|
+
- (@GermanBluefox) Removed the usage of `withStyles` in favor of `sx` and `style` properties (see [Migration from v5 to v6](#migration-from-v5-to-v6)
|
|
818
|
+
- (@GermanBluefox) (BREAKING) Higher version of `@mui/material` (5.15.20) is used
|
|
813
819
|
|
|
814
820
|
### 5.0.8 (2024-06-15)
|
|
815
821
|
|
|
816
|
-
-
|
|
822
|
+
- (@GermanBluefox) Added `modulefederation.admin.config.js` for module federation
|
|
817
823
|
|
|
818
824
|
### 5.0.5 (2024-06-10)
|
|
819
825
|
|
|
820
|
-
-
|
|
826
|
+
- (@GermanBluefox) Sources were synchronized with admin
|
|
821
827
|
|
|
822
828
|
### 5.0.4 (2024-06-07)
|
|
823
829
|
|
|
824
|
-
-
|
|
830
|
+
- (@GermanBluefox) Added better typing
|
|
825
831
|
|
|
826
832
|
### 5.0.2 (2024-05-30)
|
|
827
833
|
|
|
828
|
-
-
|
|
829
|
-
-
|
|
834
|
+
- (@GermanBluefox) Added better typing
|
|
835
|
+
- (@GermanBluefox) Json-Config is now a separate package and must be installed additionally
|
|
830
836
|
|
|
831
837
|
### 5.0.0 (2024-05-29)
|
|
832
838
|
|
|
833
|
-
-
|
|
834
|
-
-
|
|
835
|
-
-
|
|
839
|
+
- (@GermanBluefox) Types are now exported
|
|
840
|
+
- (@GermanBluefox) Translator renamed to Translate
|
|
841
|
+
- (@GermanBluefox) Breaking: Theme renamed to IobTheme because of the naming conflict
|
|
836
842
|
|
|
837
843
|
### 4.13.24 (2024-05-25)
|
|
838
844
|
|
|
839
|
-
-
|
|
845
|
+
- (@GermanBluefox) Updated packages
|
|
840
846
|
|
|
841
|
-
-
|
|
842
|
-
-
|
|
847
|
+
- ### 4.13.22 (2024-05-23)
|
|
848
|
+
- (@GermanBluefox) Updated packages
|
|
843
849
|
|
|
844
850
|
### 4.13.20 (2024-05-22)
|
|
845
851
|
|
|
846
|
-
-
|
|
847
|
-
-
|
|
848
|
-
-
|
|
852
|
+
- (@GermanBluefox) Better types added
|
|
853
|
+
- (@GermanBluefox) updated theme definitions
|
|
854
|
+
- (@GermanBluefox) corrected dates in cron dialog
|
|
849
855
|
|
|
850
856
|
### 4.13.14 (2024-05-19)
|
|
851
857
|
|
|
852
|
-
-
|
|
858
|
+
- (@GermanBluefox) Updated packages
|
|
853
859
|
|
|
854
860
|
### 4.13.13 (2024-05-09)
|
|
855
861
|
|
|
856
|
-
-
|
|
862
|
+
- (@GermanBluefox) Updated ioBroker types
|
|
857
863
|
|
|
858
864
|
### 4.13.12 (2024-05-06)
|
|
859
865
|
|
|
860
|
-
-
|
|
866
|
+
- (@GermanBluefox) All files are migrated to TypeScript
|
|
861
867
|
|
|
862
868
|
### 4.13.11 (2024-04-23)
|
|
863
869
|
|
|
864
|
-
-
|
|
870
|
+
- (@GermanBluefox) Corrected the size of icons
|
|
865
871
|
|
|
866
872
|
### 4.13.10 (2024-04-22)
|
|
867
873
|
|
|
868
|
-
-
|
|
874
|
+
- (@GermanBluefox) Migrated all icons to TypeScript
|
|
869
875
|
|
|
870
876
|
### 4.13.9 (2024-04-20)
|
|
871
877
|
|
|
872
|
-
-
|
|
878
|
+
- (@GermanBluefox) Updated socket-client package
|
|
873
879
|
|
|
874
880
|
### 4.13.8 (2024-04-19)
|
|
875
881
|
|
|
876
|
-
-
|
|
882
|
+
- (@GermanBluefox) Corrected CRON selector
|
|
877
883
|
|
|
878
884
|
### 4.13.7 (2024-04-19)
|
|
879
885
|
|
|
880
|
-
-
|
|
886
|
+
- (@GermanBluefox) Migrated ColorPicker to TypeScript
|
|
881
887
|
|
|
882
888
|
### 4.13.6 (2024-04-11)
|
|
883
889
|
|
|
884
|
-
-
|
|
885
|
-
-
|
|
890
|
+
- (@GermanBluefox) Migrated TreeTable to TypeScript
|
|
891
|
+
- (@GermanBluefox) corrected the object subscription
|
|
886
892
|
|
|
887
893
|
### 4.13.5 (2024-04-02)
|
|
888
894
|
|
|
889
|
-
-
|
|
890
|
-
-
|
|
895
|
+
- (@GermanBluefox) used new connection classes
|
|
896
|
+
- (@GermanBluefox) Improved the `SelectID` dialog
|
|
891
897
|
|
|
892
898
|
### 4.13.3 (2024-04-01)
|
|
893
899
|
|
|
894
|
-
-
|
|
900
|
+
- (@GermanBluefox) used new connection classes
|
|
895
901
|
|
|
896
902
|
### 4.12.3 (2024-03-30)
|
|
897
903
|
|
|
898
|
-
-
|
|
904
|
+
- (@GermanBluefox) Migrated legacy connection to TypeScript
|
|
899
905
|
|
|
900
906
|
### 4.12.2 (2024-03-25)
|
|
901
907
|
|
|
902
|
-
-
|
|
908
|
+
- (@GermanBluefox) Added support for remote cloud
|
|
903
909
|
|
|
904
910
|
### 4.11.6 (2024-03-19)
|
|
905
911
|
|
|
906
|
-
-
|
|
912
|
+
- (@GermanBluefox) Corrected rendering of LoaderMV
|
|
907
913
|
|
|
908
914
|
### 4.11.4 (2024-03-18)
|
|
909
915
|
|
|
910
|
-
-
|
|
916
|
+
- (@GermanBluefox) Corrected types of IconPicker
|
|
911
917
|
|
|
912
918
|
### 4.11.3 (2024-03-17)
|
|
913
919
|
|
|
914
|
-
-
|
|
920
|
+
- (@GermanBluefox) Made filters for the file selector dialog optional
|
|
915
921
|
|
|
916
922
|
### 4.11.2 (2024-03-16)
|
|
917
923
|
|
|
918
|
-
-
|
|
924
|
+
- (@GermanBluefox) Migrated GenericApp to TypeScript
|
|
919
925
|
|
|
920
926
|
### 4.10.4 (2024-03-16)
|
|
921
927
|
|
|
922
|
-
-
|
|
928
|
+
- (@GermanBluefox) Migrated some components to TypeScript
|
|
923
929
|
|
|
924
930
|
### 4.10.1 (2024-03-11)
|
|
925
931
|
|
|
926
|
-
-
|
|
932
|
+
- (@GermanBluefox) Migrated some components to TypeScript
|
|
927
933
|
|
|
928
934
|
### 4.9.11 (2024-03-08)
|
|
929
935
|
|
|
930
|
-
-
|
|
936
|
+
- (foxriver76) type GenericApp socket correctly
|
|
931
937
|
|
|
932
938
|
### 4.9.10 (2024-02-21)
|
|
933
939
|
|
|
934
|
-
-
|
|
935
|
-
-
|
|
940
|
+
- (@GermanBluefox) translations
|
|
941
|
+
- (@GermanBluefox) updated JSON config
|
|
936
942
|
|
|
937
943
|
### 4.9.9 (2024-02-16)
|
|
938
944
|
|
|
939
|
-
-
|
|
945
|
+
- (foxriver76) also check plugin state of instance to see if Sentry is explicitly disabled
|
|
940
946
|
|
|
941
947
|
### 4.9.8 (2024-02-13)
|
|
942
948
|
|
|
943
|
-
-
|
|
949
|
+
- (@GermanBluefox) allowed hiding wizard in cron dialog
|
|
944
950
|
|
|
945
951
|
### 4.9.7 (2024-02-03)
|
|
946
952
|
|
|
947
|
-
-
|
|
953
|
+
- (foxriver76) allow passing down the instance number do avoid determining from url
|
|
948
954
|
|
|
949
955
|
### 4.9.5 (2024-01-01)
|
|
950
956
|
|
|
951
|
-
-
|
|
957
|
+
- (foxriver76) make `copyToClipboard` event parameter optional
|
|
952
958
|
|
|
953
959
|
### 4.9.4 (2024-01-01)
|
|
954
960
|
|
|
955
|
-
-
|
|
961
|
+
- (foxriver76) try to fix `SelectID` scrolling
|
|
956
962
|
|
|
957
963
|
### 4.9.2 (2023-12-30)
|
|
958
964
|
|
|
959
|
-
-
|
|
965
|
+
- (foxriver76) bump version of `@iobroker/json-config`
|
|
960
966
|
|
|
961
967
|
### 4.9.1 (2023-12-22)
|
|
962
968
|
|
|
963
|
-
-
|
|
969
|
+
- (foxriver76) `@iobroker/json-config` moved to real dependencies
|
|
964
970
|
|
|
965
971
|
### 4.9.0 (2023-12-22)
|
|
966
972
|
|
|
967
|
-
-
|
|
968
|
-
-
|
|
973
|
+
- (foxriver76) migrate to `@iobroker/json-config` module to have a single point of truth
|
|
974
|
+
- (@GermanBluefox) Allowed using of `filterFunc` as string
|
|
969
975
|
|
|
970
976
|
### 4.8.1 (2023-12-14)
|
|
971
977
|
|
|
972
|
-
-
|
|
978
|
+
- (@GermanBluefox) Added Device manager to JSON Config
|
|
973
979
|
|
|
974
980
|
### 4.7.15 (2023-12-12)
|
|
975
981
|
|
|
976
|
-
-
|
|
982
|
+
- (@GermanBluefox) Corrected parsing of a text
|
|
977
983
|
|
|
978
984
|
### 4.7.13 (2023-12-10)
|
|
979
985
|
|
|
980
|
-
-
|
|
986
|
+
- (@GermanBluefox) Added possibility to define the root style and embedded property
|
|
981
987
|
|
|
982
988
|
### 4.7.11 (2023-12-06)
|
|
983
989
|
|
|
984
|
-
-
|
|
990
|
+
- (@GermanBluefox) Extended color picker with "noInputField" option
|
|
985
991
|
|
|
986
992
|
### 4.7.9 (2023-12-04)
|
|
987
993
|
|
|
988
|
-
-
|
|
994
|
+
- (@GermanBluefox) Corrected the icon picker
|
|
989
995
|
|
|
990
996
|
### 4.7.8 (2023-12-04)
|
|
991
997
|
|
|
992
|
-
-
|
|
998
|
+
- (foxriver76) port to `@iobroker/types`
|
|
993
999
|
|
|
994
1000
|
### 4.7.6 (2023-11-29)
|
|
995
1001
|
|
|
996
|
-
-
|
|
1002
|
+
- (@GermanBluefox) Added translations
|
|
997
1003
|
|
|
998
1004
|
### 4.7.5 (2023-11-28)
|
|
999
1005
|
|
|
1000
|
-
-
|
|
1006
|
+
- (@GermanBluefox) Corrected subscribe on objects in the legacy connection
|
|
1001
1007
|
|
|
1002
1008
|
### 4.7.4 (2023-11-23)
|
|
1003
1009
|
|
|
1004
|
-
-
|
|
1005
|
-
-
|
|
1010
|
+
- (@GermanBluefox) Updated packages
|
|
1011
|
+
- (@GermanBluefox) Made getStates method in legacy connection compatible with new one
|
|
1006
1012
|
|
|
1007
1013
|
### 4.7.3 (2023-11-08)
|
|
1008
1014
|
|
|
1009
|
-
-
|
|
1015
|
+
- (@GermanBluefox) Updated packages
|
|
1010
1016
|
|
|
1011
1017
|
### 4.7.2 (2023-11-03)
|
|
1012
1018
|
|
|
1013
|
-
-
|
|
1014
|
-
-
|
|
1019
|
+
- (foxriver76) fixed problem with color picker, where editing TextField was buggy
|
|
1020
|
+
- (foxriver76) fixed light mode color of a path in FileBrowser
|
|
1015
1021
|
|
|
1016
1022
|
### 4.7.0 (2023-10-31)
|
|
1017
1023
|
|
|
1018
|
-
-
|
|
1019
|
-
-
|
|
1024
|
+
- (@GermanBluefox) Synced with admin
|
|
1025
|
+
- (@GermanBluefox) Added GIF to image files
|
|
1020
1026
|
|
|
1021
1027
|
### 4.6.7 (2023-10-19)
|
|
1022
1028
|
|
|
1023
|
-
-
|
|
1029
|
+
- (@GermanBluefox) Added return value for `subscribeOnInstance` for Connection class
|
|
1024
1030
|
|
|
1025
1031
|
### 4.6.6 (2023-10-13)
|
|
1026
1032
|
|
|
1027
|
-
-
|
|
1033
|
+
- (@GermanBluefox) Fixed the legacy connection
|
|
1028
1034
|
|
|
1029
1035
|
### 4.6.5 (2023-10-12)
|
|
1030
1036
|
|
|
1031
|
-
-
|
|
1037
|
+
- (foxriver76) fixed object browser with date
|
|
1032
1038
|
|
|
1033
1039
|
### 4.6.4 (2023-10-11)
|
|
1034
1040
|
|
|
1035
|
-
-
|
|
1041
|
+
- (@GermanBluefox) Updated the packages
|
|
1036
1042
|
|
|
1037
1043
|
### 4.6.3 (2023-10-09)
|
|
1038
1044
|
|
|
1039
|
-
-
|
|
1040
|
-
-
|
|
1045
|
+
- (@GermanBluefox) Just updated the packages
|
|
1046
|
+
- (@GermanBluefox) Synced with admin
|
|
1041
1047
|
|
|
1042
1048
|
### 4.6.2 (2023-09-29)
|
|
1043
1049
|
|
|
1044
|
-
-
|
|
1050
|
+
- (@GermanBluefox) Experimental feature added: update states on re-subscribe
|
|
1045
1051
|
|
|
1046
1052
|
### 4.5.5 (2023-09-27)
|
|
1047
1053
|
|
|
1048
|
-
-
|
|
1054
|
+
- (@GermanBluefox) Added export for IconNoIcon
|
|
1049
1055
|
|
|
1050
1056
|
### 4.5.4 (2023-09-17)
|
|
1051
1057
|
|
|
1052
|
-
-
|
|
1058
|
+
- (@GermanBluefox) Added the restricting to folder property for select file dialog
|
|
1053
1059
|
|
|
1054
1060
|
### 4.5.3 (2023-08-20)
|
|
1055
1061
|
|
|
1056
|
-
-
|
|
1062
|
+
- (foxriver76) fixed css classes of TableResize, see https://github.com/ioBroker/ioBroker.admin/issues/1860
|
|
1057
1063
|
|
|
1058
1064
|
### 4.5.2 (2023-08-20)
|
|
1059
1065
|
|
|
1060
|
-
-
|
|
1066
|
+
- (foxriver76) added missing export of TableResize
|
|
1061
1067
|
|
|
1062
1068
|
### 4.5.1 (2023-08-19)
|
|
1063
1069
|
|
|
1064
|
-
-
|
|
1070
|
+
- (foxriver76) fix dialog TextInput
|
|
1065
1071
|
|
|
1066
1072
|
### 4.5.0 (2023-08-18)
|
|
1067
1073
|
|
|
1068
|
-
-
|
|
1074
|
+
- (@GermanBluefox) Synchronize components with admin
|
|
1069
1075
|
|
|
1070
1076
|
### 4.4.8 (2023-08-17)
|
|
1071
1077
|
|
|
1072
|
-
-
|
|
1078
|
+
- (@GermanBluefox) Added translations
|
|
1073
1079
|
|
|
1074
1080
|
### 4.4.7 (2023-08-10)
|
|
1075
1081
|
|
|
1076
|
-
-
|
|
1077
|
-
-
|
|
1082
|
+
- (@GermanBluefox) Added `subscribeStateAsync` method to wait for answer
|
|
1083
|
+
- (@GermanBluefox) Added support for arrays for un/subscriptions
|
|
1078
1084
|
|
|
1079
1085
|
### 4.4.5 (2023-08-01)
|
|
1080
1086
|
|
|
1081
|
-
-
|
|
1087
|
+
- (@GermanBluefox) Updated packages
|
|
1082
1088
|
|
|
1083
1089
|
### 4.3.3 (2023-07-28)
|
|
1084
1090
|
|
|
1085
|
-
-
|
|
1091
|
+
- (@GermanBluefox) Added translations
|
|
1086
1092
|
|
|
1087
1093
|
### 4.3.0 (2023-07-19)
|
|
1088
1094
|
|
|
1089
|
-
-
|
|
1090
|
-
-
|
|
1091
|
-
-
|
|
1092
|
-
-
|
|
1095
|
+
- (@GermanBluefox) Updated packages
|
|
1096
|
+
- (@GermanBluefox) Added translations
|
|
1097
|
+
- (@GermanBluefox) Synced object browser
|
|
1098
|
+
- (@GermanBluefox) formatting
|
|
1093
1099
|
|
|
1094
1100
|
### 4.2.1 (2023-07-17)
|
|
1095
1101
|
|
|
1096
|
-
-
|
|
1097
|
-
-
|
|
1102
|
+
- (@GermanBluefox) Updated packages
|
|
1103
|
+
- (@GermanBluefox) Added translations
|
|
1098
1104
|
|
|
1099
1105
|
### 4.2.0 (2023-07-07)
|
|
1100
1106
|
|
|
1101
|
-
-
|
|
1102
|
-
-
|
|
1107
|
+
- (@GermanBluefox) Updated packages
|
|
1108
|
+
- (@GermanBluefox) Added new method `getObjectsById` to the socket communication
|
|
1103
1109
|
|
|
1104
1110
|
### 4.1.2 (2023-06-20)
|
|
1105
1111
|
|
|
1106
|
-
-
|
|
1112
|
+
- (@GermanBluefox) Allowed setting theme name directly by theme toggle
|
|
1107
1113
|
|
|
1108
1114
|
### 4.1.0 (2023-05-10)
|
|
1109
1115
|
|
|
1110
|
-
-
|
|
1116
|
+
- (@GermanBluefox) `craco-module-federation.js` was added. For node 16
|
|
1111
1117
|
|
|
1112
1118
|
### 4.0.27 (2023-05-09)
|
|
1113
1119
|
|
|
1114
|
-
-
|
|
1120
|
+
- (@GermanBluefox) Allowed showing only specific root in SelectIDDialog
|
|
1115
1121
|
|
|
1116
1122
|
### 4.0.26 (2023-05-08)
|
|
1117
1123
|
|
|
1118
|
-
-
|
|
1124
|
+
- (@GermanBluefox) Added IDs to the buttons in the dialog for GUI tests
|
|
1119
1125
|
|
|
1120
1126
|
### 4.0.25 (2023-04-23)
|
|
1121
1127
|
|
|
1122
|
-
-
|
|
1128
|
+
- (@GermanBluefox) Extended `TextWithIcon` with defined color and icon
|
|
1123
1129
|
|
|
1124
1130
|
### 4.0.24 (2023-04-03)
|
|
1125
1131
|
|
|
1126
|
-
-
|
|
1132
|
+
- (@GermanBluefox) Updated the file selector in tile mode
|
|
1127
1133
|
|
|
1128
1134
|
### 4.0.23 (2023-03-27)
|
|
1129
1135
|
|
|
1130
|
-
-
|
|
1136
|
+
- (@GermanBluefox) Added translations
|
|
1131
1137
|
|
|
1132
1138
|
### 4.0.22 (2023-03-22)
|
|
1133
1139
|
|
|
1134
|
-
-
|
|
1140
|
+
- (@GermanBluefox) Re-Activate legacy connection
|
|
1135
1141
|
|
|
1136
1142
|
### 4.0.21 (2023-03-22)
|
|
1137
1143
|
|
|
1138
|
-
-
|
|
1144
|
+
- (@GermanBluefox) Added translations
|
|
1139
1145
|
|
|
1140
1146
|
### 4.0.20 (2023-03-21)
|
|
1141
1147
|
|
|
1142
|
-
-
|
|
1148
|
+
- (@GermanBluefox) Color picker was improved
|
|
1143
1149
|
|
|
1144
1150
|
### 4.0.19 (2023-03-20)
|
|
1145
1151
|
|
|
1146
|
-
-
|
|
1147
|
-
-
|
|
1152
|
+
- (@GermanBluefox) Packages were updated
|
|
1153
|
+
- (@GermanBluefox) Added new translations
|
|
1148
1154
|
|
|
1149
1155
|
### 4.0.18 (2023-03-16)
|
|
1150
1156
|
|
|
1151
|
-
-
|
|
1157
|
+
- (@GermanBluefox) Packages were updated
|
|
1152
1158
|
|
|
1153
1159
|
### 4.0.17 (2023-03-15)
|
|
1154
1160
|
|
|
1155
|
-
-
|
|
1156
|
-
-
|
|
1161
|
+
- (@GermanBluefox) Added translations
|
|
1162
|
+
- (@GermanBluefox) Added port controller to JSON config
|
|
1157
1163
|
|
|
1158
1164
|
### 4.0.15 (2023-03-12)
|
|
1159
1165
|
|
|
1160
|
-
-
|
|
1166
|
+
- (@GermanBluefox) Updated the object browser and file browser
|
|
1161
1167
|
|
|
1162
1168
|
### 4.0.14 (2023-03-03)
|
|
1163
1169
|
|
|
1164
|
-
-
|
|
1170
|
+
- (@GermanBluefox) added handler of alert messages
|
|
1165
1171
|
|
|
1166
1172
|
### 4.0.13 (2023-02-15)
|
|
1167
1173
|
|
|
1168
|
-
-
|
|
1174
|
+
- (@GermanBluefox) Corrected the theme button
|
|
1169
1175
|
|
|
1170
1176
|
### 4.0.12 (2023-02-15)
|
|
1171
1177
|
|
|
1172
|
-
-
|
|
1178
|
+
- (@GermanBluefox) made the fix for `echarts`
|
|
1173
1179
|
|
|
1174
1180
|
### 4.0.11 (2023-02-14)
|
|
1175
1181
|
|
|
1176
|
-
-
|
|
1177
|
-
-
|
|
1182
|
+
- (@GermanBluefox) Updated packages
|
|
1183
|
+
- (@GermanBluefox) The `chartReady` event was omitted
|
|
1178
1184
|
|
|
1179
1185
|
### 4.0.10 (2023-02-10)
|
|
1180
1186
|
|
|
1181
|
-
-
|
|
1182
|
-
-
|
|
1187
|
+
- (@GermanBluefox) Updated packages
|
|
1188
|
+
- (@GermanBluefox) made the fix for `material`
|
|
1183
1189
|
|
|
1184
1190
|
### 4.0.9 (2023-02-02)
|
|
1185
1191
|
|
|
1186
|
-
-
|
|
1192
|
+
- (@GermanBluefox) Updated packages
|
|
1187
1193
|
|
|
1188
1194
|
### 4.0.8 (2022-12-19)
|
|
1189
1195
|
|
|
1190
|
-
-
|
|
1196
|
+
- (@GermanBluefox) Extended socket with `log` command
|
|
1191
1197
|
|
|
1192
1198
|
### 4.0.6 (2022-12-19)
|
|
1193
1199
|
|
|
1194
|
-
-
|
|
1200
|
+
- (@GermanBluefox) Corrected URL for the connection
|
|
1195
1201
|
|
|
1196
1202
|
### 4.0.5 (2022-12-14)
|
|
1197
1203
|
|
|
1198
|
-
-
|
|
1204
|
+
- (@GermanBluefox) Added support of custom palette for color picker
|
|
1199
1205
|
|
|
1200
1206
|
### 4.0.2 (2022-12-01)
|
|
1201
1207
|
|
|
1202
|
-
-
|
|
1208
|
+
- (@GermanBluefox) use `@iobroker/socket-client` instead of `Connection.tsx`
|
|
1203
1209
|
|
|
1204
1210
|
### 3.5.3 (2022-11-30)
|
|
1205
1211
|
|
|
1206
|
-
-
|
|
1212
|
+
- (@GermanBluefox) Improved `renderTextWithA` function to support `<b>` and `<i>` tags
|
|
1207
1213
|
|
|
1208
1214
|
### 3.5.2 (2022-11-30)
|
|
1209
1215
|
|
|
1210
|
-
-
|
|
1216
|
+
- (@GermanBluefox) updated json config component
|
|
1211
1217
|
|
|
1212
1218
|
### 3.4.1 (2022-11-29)
|
|
1213
1219
|
|
|
1214
|
-
-
|
|
1220
|
+
- (@GermanBluefox) Added button text for message dialog
|
|
1215
1221
|
|
|
1216
1222
|
### 3.4.0 (2022-11-29)
|
|
1217
1223
|
|
|
1218
|
-
-
|
|
1224
|
+
- (@GermanBluefox) Added file selector
|
|
1219
1225
|
|
|
1220
1226
|
### 3.3.0 (2022-11-26)
|
|
1221
1227
|
|
|
1222
|
-
-
|
|
1228
|
+
- (@GermanBluefox) Added subscribe on files
|
|
1223
1229
|
|
|
1224
1230
|
### 3.2.7 (2022-11-13)
|
|
1225
1231
|
|
|
1226
|
-
-
|
|
1232
|
+
- (@GermanBluefox) Added `fullWidth` property to `Dialog`
|
|
1227
1233
|
|
|
1228
1234
|
### 3.2.6 (2022-11-08)
|
|
1229
1235
|
|
|
1230
|
-
-
|
|
1236
|
+
- (xXBJXx) Improved TreeTable component
|
|
1231
1237
|
|
|
1232
1238
|
### 3.2.5 (2022-11-08)
|
|
1233
1239
|
|
|
1234
|
-
-
|
|
1240
|
+
- (@GermanBluefox) Added the role filter for the object browser
|
|
1235
1241
|
|
|
1236
1242
|
### 3.2.4 (2022-11-03)
|
|
1237
1243
|
|
|
1238
|
-
-
|
|
1244
|
+
- (@GermanBluefox) Added support for alfa channel for `invertColor`
|
|
1239
1245
|
|
|
1240
1246
|
### 3.2.3 (2022-10-26)
|
|
1241
1247
|
|
|
1242
|
-
-
|
|
1248
|
+
- (@GermanBluefox) Corrected expert mode for object browser
|
|
1243
1249
|
|
|
1244
1250
|
### 3.2.2 (2022-10-25)
|
|
1245
1251
|
|
|
1246
|
-
-
|
|
1252
|
+
- (@GermanBluefox) Added support for prefixes for translations
|
|
1247
1253
|
|
|
1248
1254
|
### 3.2.1 (2022-10-24)
|
|
1249
1255
|
|
|
1250
|
-
-
|
|
1256
|
+
- (@GermanBluefox) Corrected color inversion
|
|
1251
1257
|
|
|
1252
1258
|
### 3.2.0 (2022-10-19)
|
|
1253
1259
|
|
|
1254
|
-
-
|
|
1260
|
+
- (@GermanBluefox) Added ukrainian translation
|
|
1255
1261
|
|
|
1256
1262
|
### 3.1.35 (2022-10-17)
|
|
1257
1263
|
|
|
1258
|
-
-
|
|
1264
|
+
- (@GermanBluefox) small changes for material
|
|
1259
1265
|
|
|
1260
1266
|
### 3.1.34 (2022-08-24)
|
|
1261
1267
|
|
|
1262
|
-
-
|
|
1268
|
+
- (@GermanBluefox) Implemented fallback to english by translations
|
|
1263
1269
|
|
|
1264
1270
|
### 3.1.33 (2022-08-24)
|
|
1265
1271
|
|
|
1266
|
-
-
|
|
1272
|
+
- (@GermanBluefox) Added support for onchange flag
|
|
1267
1273
|
|
|
1268
1274
|
### 3.1.30 (2022-08-23)
|
|
1269
1275
|
|
|
1270
|
-
-
|
|
1271
|
-
-
|
|
1276
|
+
- (@GermanBluefox) Added method `getCompactSystemRepositories`
|
|
1277
|
+
- (@GermanBluefox) corrected error in `ObjectBrowser`
|
|
1272
1278
|
|
|
1273
1279
|
### 3.1.27 (2022-08-01)
|
|
1274
1280
|
|
|
1275
|
-
-
|
|
1281
|
+
- (@GermanBluefox) Disable file editing in FileViewer
|
|
1276
1282
|
|
|
1277
1283
|
### 3.1.26 (2022-08-01)
|
|
1278
1284
|
|
|
1279
|
-
-
|
|
1280
|
-
-
|
|
1285
|
+
- (@GermanBluefox) Added translations
|
|
1286
|
+
- (@GermanBluefox) JSON schema was extended with missing definitions
|
|
1281
1287
|
|
|
1282
1288
|
### 3.1.24 (2022-07-28)
|
|
1283
1289
|
|
|
1284
|
-
-
|
|
1290
|
+
- (@GermanBluefox) Updated file browser and object browser
|
|
1285
1291
|
|
|
1286
1292
|
### 3.1.23 (2022-07-25)
|
|
1287
1293
|
|
|
1288
|
-
-
|
|
1294
|
+
- (@GermanBluefox) Extend custom filter for object selector
|
|
1289
1295
|
|
|
1290
1296
|
### 3.1.22 (2022-07-22)
|
|
1291
1297
|
|
|
1292
|
-
-
|
|
1298
|
+
- (@GermanBluefox) Added i18n tools for development
|
|
1293
1299
|
|
|
1294
1300
|
### 3.1.20 (2022-07-14)
|
|
1295
1301
|
|
|
1296
|
-
-
|
|
1302
|
+
- (@GermanBluefox) Allowed to show select dialog with the expert mode enabled
|
|
1297
1303
|
|
|
1298
1304
|
### 3.1.19 (2022-07-08)
|
|
1299
1305
|
|
|
1300
|
-
-
|
|
1306
|
+
- (@GermanBluefox) Allowed extending translations for all languages together
|
|
1301
1307
|
|
|
1302
1308
|
### 3.1.18 (2022-07-06)
|
|
1303
1309
|
|
|
1304
|
-
-
|
|
1310
|
+
- (@GermanBluefox) Added translation
|
|
1305
1311
|
|
|
1306
1312
|
### 3.1.17 (2022-07-05)
|
|
1307
1313
|
|
|
1308
|
-
-
|
|
1314
|
+
- (@GermanBluefox) Deactivate JSON editor for JSONConfig because of space
|
|
1309
1315
|
|
|
1310
1316
|
### 3.1.16 (2022-06-27)
|
|
1311
1317
|
|
|
1312
|
-
-
|
|
1318
|
+
- (@GermanBluefox) Update object browser
|
|
1313
1319
|
|
|
1314
1320
|
### 3.1.15 (2022-06-27)
|
|
1315
1321
|
|
|
1316
|
-
-
|
|
1322
|
+
- (@GermanBluefox) Allowed using of spaces in name
|
|
1317
1323
|
|
|
1318
1324
|
### 3.1.14 (2022-06-23)
|
|
1319
1325
|
|
|
1320
|
-
-
|
|
1326
|
+
- (@GermanBluefox) Added translations
|
|
1321
1327
|
|
|
1322
1328
|
### 3.1.11 (2022-06-22)
|
|
1323
1329
|
|
|
1324
|
-
-
|
|
1330
|
+
- (@GermanBluefox) Added preparations for iobroker cloud
|
|
1325
1331
|
|
|
1326
1332
|
### 3.1.10 (2022-06-22)
|
|
1327
1333
|
|
|
1328
|
-
-
|
|
1334
|
+
- (@GermanBluefox) Added translations
|
|
1329
1335
|
|
|
1330
1336
|
### 3.1.9 (2022-06-20)
|
|
1331
1337
|
|
|
1332
|
-
-
|
|
1338
|
+
- (@GermanBluefox) Allowed working behind reverse proxy
|
|
1333
1339
|
|
|
1334
1340
|
### 3.1.7 (2022-06-19)
|
|
1335
1341
|
|
|
1336
|
-
-
|
|
1342
|
+
- (@GermanBluefox) Added file select dialog
|
|
1337
1343
|
|
|
1338
1344
|
### 3.1.3 (2022-06-13)
|
|
1339
1345
|
|
|
1340
|
-
-
|
|
1346
|
+
- (@GermanBluefox) Added table with resized headers
|
|
1341
1347
|
|
|
1342
1348
|
### 3.1.2 (2022-06-09)
|
|
1343
1349
|
|
|
1344
|
-
-
|
|
1350
|
+
- (@GermanBluefox) Added new document icon (read only)
|
|
1345
1351
|
|
|
1346
1352
|
### 3.1.1 (2022-06-09)
|
|
1347
1353
|
|
|
1348
|
-
-
|
|
1354
|
+
- (@GermanBluefox) Allowed working behind reverse proxy
|
|
1349
1355
|
|
|
1350
1356
|
### 3.1.0 (2022-06-07)
|
|
1351
1357
|
|
|
1352
|
-
-
|
|
1358
|
+
- (@GermanBluefox) Some german texts were corrected
|
|
1353
1359
|
|
|
1354
1360
|
### 3.0.17 (2022-06-03)
|
|
1355
1361
|
|
|
1356
|
-
-
|
|
1362
|
+
- (@GermanBluefox) Allowed calling getAdapterInstances not for admin too
|
|
1357
1363
|
|
|
1358
1364
|
### 3.0.15 (2022-06-01)
|
|
1359
1365
|
|
|
1360
|
-
-
|
|
1366
|
+
- (@GermanBluefox) Updated JsonConfigComponent: password, table
|
|
1361
1367
|
|
|
1362
1368
|
### 3.0.14 (2022-05-25)
|
|
1363
1369
|
|
|
1364
|
-
-
|
|
1370
|
+
- (@GermanBluefox) Added ConfigGeneric to import
|
|
1365
1371
|
|
|
1366
1372
|
### 3.0.7 (2022-05-25)
|
|
1367
1373
|
|
|
1368
|
-
-
|
|
1374
|
+
- (@GermanBluefox) Made the module definitions
|
|
1369
1375
|
|
|
1370
1376
|
### 3.0.6 (2022-05-25)
|
|
1371
1377
|
|
|
1372
|
-
-
|
|
1378
|
+
- (@GermanBluefox) Added JsonConfigComponent
|
|
1373
1379
|
|
|
1374
1380
|
### 2.1.11 (2022-05-24)
|
|
1375
1381
|
|
|
1376
|
-
-
|
|
1382
|
+
- (@GermanBluefox) Update file browser. It supports now the file changed events.
|
|
1377
1383
|
|
|
1378
1384
|
### 2.1.10 (2022-05-24)
|
|
1379
1385
|
|
|
1380
|
-
-
|
|
1386
|
+
- (@GermanBluefox) Corrected object browser
|
|
1381
1387
|
|
|
1382
1388
|
### 2.1.9 (2022-05-16)
|
|
1383
1389
|
|
|
1384
|
-
-
|
|
1390
|
+
- (@GermanBluefox) Corrected expert mode in object browser
|
|
1385
1391
|
|
|
1386
1392
|
### 2.1.7 (2022-05-09)
|
|
1387
1393
|
|
|
1388
|
-
-
|
|
1389
|
-
-
|
|
1394
|
+
- (@GermanBluefox) Changes were synchronized with adapter-react-v5
|
|
1395
|
+
- (@GermanBluefox) Added `I18n.disableWarning` method
|
|
1390
1396
|
|
|
1391
1397
|
### 2.1.6 (2022-03-28)
|
|
1392
1398
|
|
|
1393
|
-
-
|
|
1394
|
-
-
|
|
1399
|
+
- (@GermanBluefox) Added `log` method to connection
|
|
1400
|
+
- (@GermanBluefox) Corrected translations
|
|
1395
1401
|
|
|
1396
1402
|
### 2.1.1 (2022-03-27)
|
|
1397
1403
|
|
|
1398
|
-
-
|
|
1404
|
+
- (@GermanBluefox) Corrected error in TreeTable
|
|
1399
1405
|
|
|
1400
1406
|
### 2.1.0 (2022-03-26)
|
|
1401
1407
|
|
|
1402
|
-
-
|
|
1408
|
+
- (@GermanBluefox) BREAKING_CHANGE: Corrected error with readFile(base64=false)
|
|
1403
1409
|
|
|
1404
1410
|
### 2.0.0 (2022-03-26)
|
|
1405
1411
|
|
|
1406
|
-
-
|
|
1412
|
+
- (@GermanBluefox) Initial version
|
|
1407
1413
|
|
|
1408
1414
|
### 0.1.0 (2022-03-23)
|
|
1409
1415
|
|
|
1410
|
-
-
|
|
1416
|
+
- (@GermanBluefox) Fixed theme errors
|
|
1411
1417
|
|
|
1412
1418
|
### 0.0.4 (2022-03-22)
|
|
1413
1419
|
|
|
1414
|
-
-
|
|
1420
|
+
- (@GermanBluefox) Fixed eslint warnings
|
|
1415
1421
|
|
|
1416
1422
|
### 0.0.3 (2022-03-19)
|
|
1417
1423
|
|
|
1418
|
-
-
|
|
1424
|
+
- (@GermanBluefox) beta version
|
|
1419
1425
|
|
|
1420
1426
|
### 0.0.2 (2022-02-24)
|
|
1421
1427
|
|
|
1422
|
-
-
|
|
1428
|
+
- (@GermanBluefox) try to publish a first version
|
|
1423
1429
|
|
|
1424
1430
|
### 0.0.1 (2022-02-24)
|
|
1425
1431
|
|
|
1426
|
-
-
|
|
1432
|
+
- initial commit
|
|
1427
1433
|
|
|
1428
1434
|
## License
|
|
1429
1435
|
|
|
1430
1436
|
The MIT License (MIT)
|
|
1431
1437
|
|
|
1432
|
-
Copyright
|
|
1438
|
+
Copyright © 2019-2025 @GermanBluefox <dogafox@gmail.com>
|
|
1433
1439
|
|
|
1434
1440
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1435
1441
|
of this software and associated documentation files (the "Software"), to deal
|