Skip to content

Commit 4311169

Browse files
Release 1.0.0 (#1)
* # Release 1.0.0 - First official version ## New features - Supports FlowConfig to forward encoder data to other modules - Forward encoder data on serial port ## Improvements - Now compatible with CSK_Module_DigitalIOManager version >= 3.7.0 (if using DigitalIn port as encoder interface)
1 parent 23c9db0 commit 4311169

20 files changed

Lines changed: 3034 additions & 1196 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 1.0.0
5+
6+
### New features
7+
- Supports FlowConfig to forward encoder data to other modules
8+
- Forward encoder data on serial port
9+
- Check if persistent data to load provides all relevant parameters. Otherwise add default values
10+
- Provide version of module via 'OnNewStatusModuleVersion'
11+
- Function 'getParameters' to provide PersistentData parameters
12+
- Check if features of module can be used on device and provide this via 'OnNewStatusModuleIsActive' event / 'getStatusModuleActive' function
13+
14+
### Improvements
15+
- Now compatible with CSK_Module_DigitalIOManager version >= 3.7.0 (if using DigitalIn port as encoder interface)
16+
- New UI design available (e.g. selectable via CSK_Module_PersistentData v4.1.0 or higher), see 'OnNewStatusCSKStyle'
17+
- 'loadParameters' returns its success
18+
- 'sendParameters' can control if sent data should be saved directly by CSK_Module_PersistentData
19+
- Added UI icon
20+
- Changed log level of some messages from 'info' to 'fine'
21+
422
## Release 0.2.0
523

624
### Improvements
39.7 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: 75 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,81 @@
1+
.myCustomSpacerVert10_CSK_Module_Encoder {
2+
min-height: 10px;
3+
}
4+
5+
.myCustomSpacerVert20_CSK_Module_Encoder {
6+
min-height: 20px;
7+
}
8+
9+
.myCustomFrameNoColor_CSK_Module_Encoder {
10+
margin: 6px;
11+
border-radius: 10px;
12+
border-style: solid;
13+
border-width: 0px;
14+
border-color: 007CC1;
15+
background-color: white;
16+
}
17+
118
.myCustomFrame_CSK_Module_Encoder {
19+
margin: 6px;
20+
border-radius: 10px;
221
border-style: solid;
322
border-width: 1px;
4-
border-color: grey;
5-
margin: 6px;
23+
border-color: #007CC1;
24+
background-color: white;
25+
}
26+
27+
.myCustomLabel_CSK_Module_Encoder {
28+
font-size:30px;
29+
color: grey;
30+
margin-top: 10px;
31+
}
32+
33+
.myCustomFrameLabel_CSK_Module_Encoder {
34+
background: white;
35+
position:relative;
36+
top: calc(-1.2rem);
37+
left: calc(1rem);
38+
font-size: medium;
39+
}
40+
41+
.myCustomPersistentDataMargin_CSK_Module_Encoder {
42+
margin-top: -53px;
43+
margin-left: 130px;
44+
}
45+
46+
.myCustomPersistentDataMarginBack_CSK_Module_Encoder {
47+
margin-left: -127px;
48+
}
49+
50+
.myCustomBorderLeft_CSK_Module_Encoder {
51+
border-left: 1px solid lightgray;
52+
}
53+
54+
.myCustomMarginFirstRow_CSK_Module_Encoder {
55+
margin-top: -49px;
56+
}
57+
58+
.myCustomBorderBottom_CSK_Module_Encoder {
59+
border-bottom: 1px solid lightgray;
60+
margin-inline: calc(1rem);
61+
}
62+
63+
.myCustomMarginTop7PX_CSK_Module_Encoder {
64+
margin-top: 7px;
65+
}
66+
67+
.myCustomBackground_CSK_Module_Encoder {
68+
}
69+
70+
.myCustomButton_CSK_Module_Encoder {
71+
border-radius: 30px;
72+
padding: 11px;
73+
}
74+
75+
.myCustomMarginInline1Rem_CSK_Module_Encoder {
76+
margin-inline: calc(1rem);
677
}
778

8-
.myCustomCssClass_CSK_Module_Encoder {
79+
.myMinWidht100p_CSK_Module_Encoder {
80+
min-width: 100%;
981
}

0 commit comments

Comments
 (0)