Skip to content

Commit 7cc0bf1

Browse files
# Release 3.0.0 (#1)
# Release 3.0.0 ## New features - Supports FlowConfig feature to forward loaded images - 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 - Provide new images in /resources ## Improvements - Provide available folders auto suggestion in UI - 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 - Changed log level of some messages from 'info' to 'fine' - Added UI icon and browser tab information
1 parent 1d91801 commit 7cc0bf1

32 files changed

Lines changed: 1952 additions & 478 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 3.0.0
5+
6+
### New features
7+
- Supports FlowConfig feature to forward loaded images
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+
- Provide new images in /resources
13+
14+
### Improvements
15+
- Provide available folders auto suggestion in UI
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+
- Changed log level of some messages from 'info' to 'fine'
20+
- Added UI icon and browser tab information
21+
422
## Release 2.4.0
523

624
### Improvements
77.5 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: 89 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,93 @@
1+
.myCustom10pxPlaceholder {
2+
min-height: 10px;
3+
}
4+
5+
.myCustomViewer {
6+
width: 98%;
7+
height: 600px;
8+
margin: auto;
9+
}
10+
11+
.myCustomSpacerVert10_CSK_Module_ImagePlayer {
12+
min-height: 10px;
13+
}
14+
15+
.myCustomSpacerVert20_CSK_Module_ImagePlayer {
16+
min-height: 20px;
17+
}
18+
19+
.myCustomFrameNoColor_CSK_Module_ImagePlayer {
20+
margin: 6px;
21+
border-radius: 10px;
22+
border-style: solid;
23+
border-width: 0px;
24+
border-color: 007CC1;
25+
background-color: white;
26+
}
27+
128
.myCustomFrame_CSK_Module_ImagePlayer {
29+
margin: 6px;
30+
border-radius: 10px;
231
border-style: solid;
332
border-width: 1px;
4-
border-color: grey;
5-
margin: 6px;
33+
border-color: #007CC1;
34+
background-color: white;
35+
}
36+
37+
.myCustomLabel_CSK_Module_ImagePlayer {
38+
font-size:30px;
39+
color: grey;
40+
margin-top: 10px;
41+
}
42+
43+
.myCustomFrameLabel_CSK_Module_ImagePlayer {
44+
background: white;
45+
position:relative;
46+
top: calc(-1.2rem);
47+
left: calc(1rem);
48+
font-size: medium;
49+
}
50+
51+
.myCustomPersistentDataMargin_CSK_Module_ImagePlayer {
52+
margin-top: -53px;
53+
margin-left: 130px;
54+
}
55+
56+
.myCustomPersistentDataMarginBack_CSK_Module_ImagePlayer {
57+
margin-left: -127px;
58+
}
59+
60+
.myCustomBorderLeft_CSK_Module_ImagePlayer {
61+
border-left: 1px solid lightgray;
62+
}
63+
64+
.myCustomMarginFirstRow_CSK_Module_ImagePlayer {
65+
margin-top: -49px;
66+
}
67+
68+
.myCustomMarginInline1Rem_CSK_Module_ImagePlayer {
69+
margin-inline: calc(1rem);
70+
}
71+
72+
.myCustomBorderBottom_CSK_Module_ImagePlayer {
73+
border-bottom: 1px solid lightgray;
74+
margin-inline: calc(1rem);
75+
}
76+
77+
.myCustomMarginTop7PX_CSK_Module_ImagePlayer {
78+
margin-top: 7px;
79+
}
80+
81+
.myCustomBackground_CSK_Module_ImagePlayer {
82+
}
83+
84+
.myCustomButton_CSK_Module_ImagePlayer {
85+
border-radius: 30px;
86+
padding-right: 0px;
687
}
88+
89+
.myCustomPlayerButton_CSK_Module_ImagePlayer {
90+
border-radius: 30px;
91+
padding-right: 0px;
92+
margin-block: revert;
93+
}

0 commit comments

Comments
 (0)