Skip to content

Commit 17293bc

Browse files
committed
Release 2.0.0
- Major internal code edits! New features - 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 Improvements - Only keep IODD tables which are used by instances - Share single IODD table among instances that use same IODD (no copies anymore) - Set 'LuaLoadAllEngineAPI' to false - 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 and browser tab information
1 parent ebd06d2 commit 17293bc

25 files changed

Lines changed: 4508 additions & 1077 deletions

CHANGELOG.md

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

4+
## Release 2.0.0
5+
Major internal code edits!
6+
7+
### New features
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+
12+
### Improvements
13+
- Only keep IODD tables which are used by instances
14+
- Share single IODD table among instances that use same IODD (no copies anymore)
15+
- Set 'LuaLoadAllEngineAPI' to false
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 and browser tab information
20+
421
## Release 1.0.1
522

623
### Bugfix
18.2 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: 67 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,73 @@
1+
.myCustomSpacerVert10_CSK_Module_IODDInterpreter {
2+
min-height: 10px;
3+
}
4+
5+
.myCustomSpacerVert20_CSK_Module_IODDInterpreter {
6+
min-height: 20px;
7+
}
8+
9+
.myCustomFrameNoColor_CSK_Module_IODDInterpreter {
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_IODDInterpreter {
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_IODDInterpreter {
28+
font-size:30px;
29+
color: grey;
30+
margin-top: 10px;
31+
}
32+
33+
.myCustomFrameLabel_CSK_Module_IODDInterpreter {
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_IODDInterpreter {
42+
margin-top: -53px;
43+
margin-left: 130px;
44+
}
45+
46+
.myCustomPersistentDataMarginBack_CSK_Module_IODDInterpreter {
47+
margin-left: -127px;
48+
}
49+
50+
.myCustomBorderLeft_CSK_Module_IODDInterpreter {
51+
border-left: 1px solid lightgray;
52+
}
53+
54+
.myCustomMarginFirstRow_CSK_Module_IODDInterpreter {
55+
margin-top: -49px;
56+
}
57+
58+
.myCustomBorderBottom_CSK_Module_IODDInterpreter {
59+
border-bottom: 1px solid lightgray;
60+
margin-inline: calc(1rem);
61+
}
62+
63+
.myCustomMarginTop7PX_CSK_Module_IODDInterpreter {
64+
margin-top: 7px;
65+
}
66+
67+
.myCustomBackground_CSK_Module_IODDInterpreter {
668
}
769

8-
.myCustomCssClass_CSK_Module_IODDInterpreter {
70+
.myCustomButton_CSK_Module_IODDInterpreter {
71+
border-radius: 30px;
72+
padding-right: 0px;
973
}

0 commit comments

Comments
 (0)