Skip to content

Commit e1bc7a0

Browse files
# Release 2.0.0 (#2)
# Release 2.0.0 ## New features - Supports FlowConfig feature to provide received messages / to send content to TCP/IP client - Provide version of module via 'OnNewStatusModuleVersion' - Function 'getParameters' to provide PersistentData parameters - Check if features of module can be used on device and provide this via 'OnNewStatusModuleIsActive' event / 'getStatusModuleActive' function - Function to 'resetModule' to default setup ## Improvements - 'setSelectedClientWhitelist' and 'setSelectedClientBroadcast' return success of function - Update selected whitelist / broadcast if instance was changed - New UI design available (e.g. selectable via CSK_Module_PersistentData v4.1.0 or higher), see 'OnNewStatusCSKStyle' - Check if instance exists if selected - 'loadParameters' returns its success - 'sendParameters' can control if sent data should be saved directly by CSK_Module_PersistentData - Added UI icon ## Bugfix - Error if module is not active but 'getInstancesAmount' was called - Error if trying to deregister from broadcast - transmitDataNUM did not work after deregistering from event to forward data - No reset of selected whitelist / broadcast after loading new parameters
1 parent aec5b2f commit e1bc7a0

25 files changed

Lines changed: 3457 additions & 1458 deletions

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## Release 2.0.0
5+
6+
### New features
7+
- Supports FlowConfig feature to provide received messages / to send content to TCP/IP client
8+
- Provide version of module via 'OnNewStatusModuleVersion'
9+
- Function 'getParameters' to provide PersistentData parameters
10+
- Check if features of module can be used on device and provide this via 'OnNewStatusModuleIsActive' event / 'getStatusModuleActive' function
11+
- Function to 'resetModule' to default setup
12+
13+
### Improvements
14+
- 'setSelectedClientWhitelist' and 'setSelectedClientBroadcast' return success of function
15+
- Update selected whitelist / broadcast if instance was changed
16+
- New UI design available (e.g. selectable via CSK_Module_PersistentData v4.1.0 or higher), see 'OnNewStatusCSKStyle'
17+
- Check if instance exists if selected
18+
- 'loadParameters' returns its success
19+
- 'sendParameters' can control if sent data should be saved directly by CSK_Module_PersistentData
20+
- Added UI icon
21+
22+
### Bugfix
23+
- Error if module is not active but 'getInstancesAmount' was called
24+
- Error if trying to deregister from broadcast
25+
- transmitDataNUM did not work after deregistering from event to forward data
26+
- No reset of selected whitelist / broadcast after loading new parameters
27+
428
## Release 1.0.0
529
- Initial commit
28.1 KB
Loading
Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
{
2-
"showLoginButton": false
2+
"canChangeLanguage": true,
3+
"showLoginButton": false,
4+
"defaultLanguage": "en",
5+
"disableEditMode": true,
6+
"showPageHistory": true,
7+
"compactMode": false,
8+
"canChangeCompactMode": false
39
}
Lines changed: 111 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,120 @@
1+
.myCustomMarginTop_CSK_Module_MultiTCPIPServer {
2+
margin-top: 1.5rem
3+
}
4+
5+
.myCustomMinHeight200px_CSK_Module_MultiTCPIPServer {
6+
min-height: 200px;
7+
}
8+
9+
.myCustomSpacerVert10_CSK_Module_MultiTCPIPServer {
10+
min-height: 10px;
11+
}
12+
13+
.myCustomSpacerVert20_CSK_Module_MultiTCPIPServer {
14+
min-height: 20px;
15+
}
16+
17+
.myCustomMarginInline1Rem_CSK_Module_MultiTCPIPServer {
18+
margin-inline: calc(0.5rem);
19+
}
20+
21+
.myCustomFrameLabel_CSK_Module_MultiTCPIPServer {
22+
background: white;
23+
position:relative;
24+
top: calc(-1.2rem);
25+
left: calc(1rem);
26+
font-size: medium;
27+
}
28+
29+
.myCustomMargin99Percent_CSK_Module_MultiTCPIPServer {
30+
margin: calc(1rem);
31+
margin-top: 20px;
32+
}
33+
34+
.myCustomMarginFirstRow_CSK_Module_MultiTCPIPServer {
35+
margin-top: -49px;
36+
}
37+
38+
.myCustomMarginLeft30PX_CSK_Module_MultiTCPIPServer {
39+
margin-left:30px;
40+
}
41+
42+
.myCustomMarginLeft-30PX_CSK_Module_MultiTCPIPServer {
43+
margin-left:-30px;
44+
}
45+
46+
.myCustomPersistentDataMargin_CSK_Module_MultiTCPIPServer {
47+
margin-top: -53px;
48+
margin-left: 130px;
49+
}
50+
51+
.myCustomPersistentDataMarginBack_CSK_Module_MultiTCPIPServer {
52+
margin-left: -127px;
53+
}
54+
55+
.myCustomBorderBottom_CSK_Module_MultiTCPIPServer {
56+
border-bottom: 1px solid lightgray;
57+
margin-inline: calc(1rem);
58+
}
59+
60+
.myCustomBorderLeft_CSK_Module_MultiTCPIPServer {
61+
border-left: 1px solid lightgray;
62+
}
63+
64+
.myCustomTabFrame_CSK_Module_MultiTCPIPServer {
65+
width: 98%;
66+
align-self: center;
67+
}
68+
69+
.myCustomLabel_CSK_Module_MultiTCPIPServer {
70+
font-size:30px;
71+
color: grey;
72+
margin-top: 10px;
73+
}
74+
75+
.myCustomFrameNoColor_CSK_Module_MultiTCPIPServer {
76+
margin: 6px;
77+
border-radius: 10px;
78+
border-style: solid;
79+
border-width: 0px;
80+
border-color: 007CC1;
81+
background-color: #FFFFFF;
82+
}
83+
184
.myCustomFrame_CSK_Module_MultiTCPIPServer {
85+
margin: 6px;
86+
border-radius: 10px;
287
border-style: solid;
388
border-width: 1px;
4-
border-color: grey;
89+
border-color: #007CC1;
90+
background-color: white;
91+
}
92+
93+
.myCustomFrameNoColor_CSK_Module_MultiTCPIPServer {
594
margin: 6px;
95+
border-radius: 10px;
96+
border-style: solid;
97+
border-width: 0px;
98+
border-color: 007CC1;
99+
background-color: white;
6100
}
7101

8-
.myCustomMarginTop_CSK_Module_MultiTCPIPServer {
9-
margin-top: 1.5rem
102+
.myCustomMarginLeft7PX_CSK_Module_MultiTCPIPServer {
103+
margin-left: -7px;
10104
}
11105

12-
.myCustomMinHeight200px_CSK_Module_MultiTCPIPServer {
13-
min-height: 200px;
106+
.myCustomMarginLeft15PX_CSK_Module_MultiTCPIPServer {
107+
margin-left: 15px;
108+
}
109+
110+
.myCustomMarginTop7PX_CSK_Module_MultiTCPIPServer {
111+
margin-top: 7px;
112+
}
113+
114+
.myCustomBackground_CSK_Module_MultiTCPIPServer {
115+
}
116+
117+
.myCustomButton_CSK_Module_MultiTCPIPServer {
118+
border-radius: 30px;
119+
padding-right: 0px;
14120
}

0 commit comments

Comments
 (0)