Skip to content

Commit 9e524b6

Browse files
Version 4.0.0 (#4)
# Release 4.0.0 ## New features - Supports FlowConfig to link digital IOs - 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 - Added functions 'removeForwardEventViaUI' and 'removeTriggerEventViaUI'. Furthermore 'removeTriggerEvent' and 'removeForwardEvent' require now the eventname as first parameter - Function to 'resetModule' to default setup ## Improvements - New UI design available (e.g. selectable via CSK_Module_PersistentData v4.1.0 or higher), see 'OnNewStatusCSKStyle' - 'loadParameters' returns its success - 'sendParameters' can control if sent data should be saved directly by CSK_Module_PersistentData - Added UI icon - Changed log level of some messages from 'info' to 'fine' - Removed 'setForwardEvent' as it was not used
1 parent e5adebe commit 9e524b6

20 files changed

Lines changed: 3154 additions & 1441 deletions

CHANGELOG.md

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

4+
## Release 4.0.0
5+
6+
### New features
7+
- Supports FlowConfig to link digital IOs
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+
- Added functions 'removeForwardEventViaUI' and 'removeTriggerEventViaUI'. Furthermore 'removeTriggerEvent' and 'removeForwardEvent' require now the eventname as first parameter
12+
- Function to 'resetModule' to default setup
13+
14+
### Improvements
15+
- New UI design available (e.g. selectable via CSK_Module_PersistentData v4.1.0 or higher), see 'OnNewStatusCSKStyle'
16+
- 'loadParameters' returns its success
17+
- 'sendParameters' can control if sent data should be saved directly by CSK_Module_PersistentData
18+
- Added UI icon
19+
- Changed log level of some messages from 'info' to 'fine'
20+
- Removed 'setForwardEvent' as it was not used
21+
422
## Release 3.9.0
523

624
### New features
56.2 KB
Loading
-229 KB
Binary file not shown.
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: 72 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,81 @@
1+
.myCustomBorderLeft_CSK_Module_DigitalIOManager {
2+
border-left: 1px solid grey;
3+
}
4+
5+
.myCustomPlaceholder10pxHeight_CSK_Module_DigitalIOManager {
6+
min-height: 10px;
7+
}
8+
9+
.myCustomSpacerVert10_CSK_Module_DigitalIOManager {
10+
min-height: 10px;
11+
}
12+
13+
.myCustomSpacerVert20_CSK_Module_DigitalIOManager {
14+
min-height: 20px;
15+
}
16+
17+
.myCustomFrameNoColor_CSK_Module_DigitalIOManager {
18+
margin: 6px;
19+
border-radius: 10px;
20+
border-style: solid;
21+
border-width: 0px;
22+
border-color: 007CC1;
23+
background-color: white;
24+
}
25+
126
.myCustomFrame_CSK_Module_DigitalIOManager {
27+
margin: 6px;
28+
border-radius: 10px;
229
border-style: solid;
330
border-width: 1px;
4-
border-color: grey;
5-
margin: 6px;
31+
border-color: #007CC1;
32+
background-color: white;
33+
}
34+
35+
.myCustomLabel_CSK_Module_DigitalIOManager {
36+
font-size:30px;
37+
color: grey;
38+
margin-top: 10px;
39+
}
40+
41+
.myCustomFrameLabel_CSK_Module_DigitalIOManager {
42+
background: white;
43+
position:relative;
44+
top: calc(-1.2rem);
45+
left: calc(1rem);
46+
font-size: medium;
47+
}
48+
49+
.myCustomPersistentDataMargin_CSK_Module_DigitalIOManager {
50+
margin-top: -53px;
51+
margin-left: 130px;
52+
}
53+
54+
.myCustomPersistentDataMarginBack_CSK_Module_DigitalIOManager {
55+
margin-left: -127px;
656
}
757

858
.myCustomBorderLeft_CSK_Module_DigitalIOManager {
9-
border-left: 1px solid grey;
59+
border-left: 1px solid lightgray;
1060
}
1161

12-
.myCustomPlaceholder10pxHeight_CSK_Module_DigitalIOManager {
13-
min-height: 10px;
62+
.myCustomMarginFirstRow_CSK_Module_DigitalIOManager {
63+
margin-top: -49px;
64+
}
65+
66+
.myCustomBorderBottom_CSK_Module_DigitalIOManager {
67+
border-bottom: 1px solid lightgray;
68+
margin-inline: calc(1rem);
69+
}
70+
71+
.myCustomMarginTop7PX_CSK_Module_DigitalIOManager {
72+
margin-top: 7px;
73+
}
74+
75+
.myCustomBackground_CSK_Module_DigitalIOManager {
76+
}
77+
78+
.myCustomButton_CSK_Module_DigitalIOManager {
79+
border-radius: 30px;
80+
padding-right: 0px;
1481
}

0 commit comments

Comments
 (0)