@chauvet/connect-base-profiles 2.0.2 → 2.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/dist/baseProfiles.js +14 -7
- package/package.json +1 -1
- package/src/baseProfiles.ts +14 -7
package/dist/baseProfiles.js
CHANGED
|
@@ -554,7 +554,7 @@ const baseProfiles = {
|
|
|
554
554
|
whiteMacros: null,
|
|
555
555
|
autoPrograms: [
|
|
556
556
|
{
|
|
557
|
-
location:
|
|
557
|
+
location: 10,
|
|
558
558
|
label: 'Auto Programs',
|
|
559
559
|
values: [
|
|
560
560
|
{
|
|
@@ -608,15 +608,15 @@ const baseProfiles = {
|
|
|
608
608
|
]
|
|
609
609
|
},
|
|
610
610
|
{
|
|
611
|
-
location:
|
|
611
|
+
location: 11,
|
|
612
612
|
label: 'Foreground Dimmer',
|
|
613
613
|
range: {
|
|
614
|
-
start:
|
|
614
|
+
start: 12,
|
|
615
615
|
end: 255
|
|
616
616
|
}
|
|
617
617
|
},
|
|
618
618
|
{
|
|
619
|
-
location:
|
|
619
|
+
location: 13,
|
|
620
620
|
label: 'Foreground Color',
|
|
621
621
|
hint: 'Only active for Auto Programs 5 - 9',
|
|
622
622
|
values: [
|
|
@@ -683,7 +683,7 @@ const baseProfiles = {
|
|
|
683
683
|
],
|
|
684
684
|
},
|
|
685
685
|
{
|
|
686
|
-
location:
|
|
686
|
+
location: 14,
|
|
687
687
|
label: 'Background Dimmer',
|
|
688
688
|
range: {
|
|
689
689
|
start: 0,
|
|
@@ -691,7 +691,7 @@ const baseProfiles = {
|
|
|
691
691
|
}
|
|
692
692
|
},
|
|
693
693
|
{
|
|
694
|
-
location:
|
|
694
|
+
location: 15,
|
|
695
695
|
label: 'Background Color',
|
|
696
696
|
hint: 'Only active for Auto Programs 5 - 9',
|
|
697
697
|
values: [
|
|
@@ -758,7 +758,7 @@ const baseProfiles = {
|
|
|
758
758
|
],
|
|
759
759
|
},
|
|
760
760
|
{
|
|
761
|
-
location:
|
|
761
|
+
location: 16,
|
|
762
762
|
label: 'Auto Speed',
|
|
763
763
|
range: {
|
|
764
764
|
start: 0,
|
|
@@ -873,6 +873,7 @@ const baseProfiles = {
|
|
|
873
873
|
{
|
|
874
874
|
location: 7,
|
|
875
875
|
label: 'Auto Programs',
|
|
876
|
+
defaultValue: 22,
|
|
876
877
|
values: [
|
|
877
878
|
{
|
|
878
879
|
item: 'Off',
|
|
@@ -927,6 +928,7 @@ const baseProfiles = {
|
|
|
927
928
|
{
|
|
928
929
|
location: 8,
|
|
929
930
|
label: 'Foreground Dimmer',
|
|
931
|
+
defaultValue: 255,
|
|
930
932
|
range: {
|
|
931
933
|
start: 0,
|
|
932
934
|
end: 255
|
|
@@ -936,6 +938,7 @@ const baseProfiles = {
|
|
|
936
938
|
location: 10,
|
|
937
939
|
label: 'Foreground Color',
|
|
938
940
|
hint: 'Only active for Auto Programs 5 - 9',
|
|
941
|
+
defaultValue: 0,
|
|
939
942
|
values: [
|
|
940
943
|
{
|
|
941
944
|
item: 'Red',
|
|
@@ -974,6 +977,7 @@ const baseProfiles = {
|
|
|
974
977
|
{
|
|
975
978
|
location: 10,
|
|
976
979
|
label: 'Background Dimmer',
|
|
980
|
+
defaultValue: 255,
|
|
977
981
|
range: {
|
|
978
982
|
start: 0,
|
|
979
983
|
end: 255
|
|
@@ -983,6 +987,7 @@ const baseProfiles = {
|
|
|
983
987
|
location: 12,
|
|
984
988
|
label: 'Background Color',
|
|
985
989
|
hint: 'Only active for Auto Programs 5 - 9',
|
|
990
|
+
defaultValue: 0,
|
|
986
991
|
values: [
|
|
987
992
|
{
|
|
988
993
|
item: 'Red',
|
|
@@ -1021,11 +1026,13 @@ const baseProfiles = {
|
|
|
1021
1026
|
{
|
|
1022
1027
|
location: 13,
|
|
1023
1028
|
label: 'Auto Speed',
|
|
1029
|
+
defaultValue: 128,
|
|
1024
1030
|
range: {
|
|
1025
1031
|
start: 0,
|
|
1026
1032
|
end: 255
|
|
1027
1033
|
},
|
|
1028
1034
|
altLabel: 'Sound Sensitivity',
|
|
1035
|
+
altDefaultValue: 128,
|
|
1029
1036
|
altRange: {
|
|
1030
1037
|
start: 10,
|
|
1031
1038
|
end: 255
|
package/package.json
CHANGED
package/src/baseProfiles.ts
CHANGED
|
@@ -585,7 +585,7 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
585
585
|
whiteMacros: null,
|
|
586
586
|
autoPrograms: [
|
|
587
587
|
{
|
|
588
|
-
location:
|
|
588
|
+
location: 10,
|
|
589
589
|
label: 'Auto Programs',
|
|
590
590
|
values: [
|
|
591
591
|
{
|
|
@@ -640,15 +640,15 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
640
640
|
]
|
|
641
641
|
},
|
|
642
642
|
{
|
|
643
|
-
location:
|
|
643
|
+
location: 11,
|
|
644
644
|
label: 'Foreground Dimmer',
|
|
645
645
|
range: {
|
|
646
|
-
start:
|
|
646
|
+
start: 12,
|
|
647
647
|
end: 255
|
|
648
648
|
}
|
|
649
649
|
},
|
|
650
650
|
{
|
|
651
|
-
location:
|
|
651
|
+
location: 13,
|
|
652
652
|
label: 'Foreground Color',
|
|
653
653
|
hint: 'Only active for Auto Programs 5 - 9',
|
|
654
654
|
values: [
|
|
@@ -718,7 +718,7 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
718
718
|
],
|
|
719
719
|
},
|
|
720
720
|
{
|
|
721
|
-
location:
|
|
721
|
+
location: 14,
|
|
722
722
|
label: 'Background Dimmer',
|
|
723
723
|
range: {
|
|
724
724
|
start: 0,
|
|
@@ -726,7 +726,7 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
726
726
|
}
|
|
727
727
|
},
|
|
728
728
|
{
|
|
729
|
-
location:
|
|
729
|
+
location: 15,
|
|
730
730
|
label: 'Background Color',
|
|
731
731
|
hint: 'Only active for Auto Programs 5 - 9',
|
|
732
732
|
values: [
|
|
@@ -796,7 +796,7 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
796
796
|
],
|
|
797
797
|
},
|
|
798
798
|
{
|
|
799
|
-
location:
|
|
799
|
+
location: 16,
|
|
800
800
|
label: 'Auto Speed',
|
|
801
801
|
range: {
|
|
802
802
|
start: 0,
|
|
@@ -911,6 +911,7 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
911
911
|
{
|
|
912
912
|
location: 7,
|
|
913
913
|
label: 'Auto Programs',
|
|
914
|
+
defaultValue: 22,
|
|
914
915
|
values: [
|
|
915
916
|
{
|
|
916
917
|
item: 'Off',
|
|
@@ -966,6 +967,7 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
966
967
|
{
|
|
967
968
|
location: 8,
|
|
968
969
|
label: 'Foreground Dimmer',
|
|
970
|
+
defaultValue: 255,
|
|
969
971
|
range: {
|
|
970
972
|
start: 0,
|
|
971
973
|
end: 255
|
|
@@ -975,6 +977,7 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
975
977
|
location: 10,
|
|
976
978
|
label: 'Foreground Color',
|
|
977
979
|
hint: 'Only active for Auto Programs 5 - 9',
|
|
980
|
+
defaultValue: 0,
|
|
978
981
|
values: [
|
|
979
982
|
{
|
|
980
983
|
item: 'Red',
|
|
@@ -1014,6 +1017,7 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
1014
1017
|
{
|
|
1015
1018
|
location: 10,
|
|
1016
1019
|
label: 'Background Dimmer',
|
|
1020
|
+
defaultValue: 255,
|
|
1017
1021
|
range: {
|
|
1018
1022
|
start: 0,
|
|
1019
1023
|
end: 255
|
|
@@ -1023,6 +1027,7 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
1023
1027
|
location: 12,
|
|
1024
1028
|
label: 'Background Color',
|
|
1025
1029
|
hint: 'Only active for Auto Programs 5 - 9',
|
|
1030
|
+
defaultValue: 0,
|
|
1026
1031
|
values: [
|
|
1027
1032
|
{
|
|
1028
1033
|
item: 'Red',
|
|
@@ -1062,11 +1067,13 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
1062
1067
|
{
|
|
1063
1068
|
location: 13,
|
|
1064
1069
|
label: 'Auto Speed',
|
|
1070
|
+
defaultValue: 128,
|
|
1065
1071
|
range: {
|
|
1066
1072
|
start: 0,
|
|
1067
1073
|
end: 255
|
|
1068
1074
|
},
|
|
1069
1075
|
altLabel: 'Sound Sensitivity',
|
|
1076
|
+
altDefaultValue: 128,
|
|
1070
1077
|
altRange: {
|
|
1071
1078
|
start: 10,
|
|
1072
1079
|
end: 255
|