Skip to content

Commit bba0b76

Browse files
# Release 2.0.0 (#2)
# Release 2.0.0 ## New features - Supports FlowConfig feature to set source to forward via HTTP request - Added 'Localhost' as interface to perform internal HTTP requests - 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 - Added parameters to 'addRequest'-function - Added ENUMs for RequestMode - 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 and browser tab information ## Bugfix - Error if module is not active but 'getInstancesAmount' was called
1 parent 4bb47c8 commit bba0b76

19 files changed

Lines changed: 3674 additions & 1845 deletions

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
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 set source to forward via HTTP request
8+
- Added 'Localhost' as interface to perform internal HTTP requests
9+
- Provide version of module via 'OnNewStatusModuleVersion'
10+
- Function 'getParameters' to provide PersistentData parameters
11+
- Check if features of module can be used on device and provide this via 'OnNewStatusModuleIsActive' event / 'getStatusModuleActive' function
12+
- Function to 'resetModule' to default setup
13+
14+
### Improvements
15+
- Added parameters to 'addRequest'-function
16+
- Added ENUMs for RequestMode
17+
- New UI design available (e.g. selectable via CSK_Module_PersistentData v4.1.0 or higher), see 'OnNewStatusCSKStyle'
18+
- check if instance exists if selected
19+
- 'loadParameters' returns its success
20+
- 'sendParameters' can control if sent data should be saved directly by CSK_Module_PersistentData
21+
- Added UI icon and browser tab information
22+
23+
### Bugfix
24+
- Error if module is not active but 'getInstancesAmount' was called
25+
426
## Release 1.0.0
527
- Initial commit
27.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: 99 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,108 @@
1+
.myCustomMarginTop2px_CSK_Module_MultiHTTPClient {
2+
margin-top: 2px;
3+
}
4+
5+
.myCustomMarginTop16px_CSK_Module_MultiHTTPClient {
6+
margin-top: 16px;
7+
}
8+
9+
.myCustomSpacerVert10_CSK_Module_MultiHTTPClient {
10+
min-height: 10px;
11+
}
12+
13+
.myCustomSpacerVert20_CSK_Module_MultiHTTPClient {
14+
min-height: 20px;
15+
}
16+
17+
.myCustomFrameLabel_CSK_Module_MultiHTTPClient {
18+
background: white;
19+
position:relative;
20+
top: calc(-1.2rem);
21+
left: calc(1rem);
22+
font-size: medium;
23+
}
24+
25+
.myCustomMargin99Percent_CSK_Module_MultiHTTPClient {
26+
margin: calc(1rem);
27+
margin-top: 20px;
28+
}
29+
30+
.myCustomMarginFirstRow_CSK_Module_MultiHTTPClient {
31+
margin-top: -49px;
32+
}
33+
34+
.myCustomMarginLeft30PX_CSK_Module_MultiHTTPClient {
35+
margin-left:30px;
36+
}
37+
38+
.myCustomMarginLeft-30PX_CSK_Module_MultiHTTPClient {
39+
margin-left:-30px;
40+
}
41+
42+
.myCustomPersistentDataMargin_CSK_Module_MultiHTTPClient {
43+
margin-top: -53px;
44+
margin-left: 130px;
45+
}
46+
47+
.myCustomPersistentDataMarginBack_CSK_Module_MultiHTTPClient {
48+
margin-left: -127px;
49+
}
50+
51+
.myCustomBorderBottom_CSK_Module_MultiHTTPClient {
52+
border-bottom: 1px solid lightgray;
53+
margin-inline: calc(1rem);
54+
}
55+
56+
.myCustomBorderLeft_CSK_Module_MultiHTTPClient {
57+
border-left: 1px solid lightgray;
58+
}
59+
60+
.myCustomTabFrame_CSK_Module_MultiHTTPClient {
61+
width: 98%;
62+
align-self: center;
63+
}
64+
65+
.myCustomLabel_CSK_Module_MultiHTTPClient {
66+
font-size:30px;
67+
color: grey;
68+
margin-top: 10px;
69+
}
70+
71+
.myCustomFrameNoColor_CSK_Module_MultiHTTPClient {
72+
margin: 6px;
73+
border-radius: 10px;
74+
border-style: solid;
75+
border-width: 0px;
76+
border-color: 007CC1;
77+
background-color: #FFFFFF;
78+
}
79+
180
.myCustomFrame_CSK_Module_MultiHTTPClient {
81+
margin: 6px;
82+
border-radius: 10px;
283
border-style: solid;
384
border-width: 1px;
4-
border-color: grey;
85+
border-color: #007CC1;
86+
background-color: white;
87+
}
88+
89+
.myCustomFrameNoColor_CSK_Module_MultiHTTPClient {
590
margin: 6px;
91+
border-radius: 10px;
92+
border-style: solid;
93+
border-width: 0px;
94+
border-color: 007CC1;
95+
background-color: white;
696
}
797

8-
.myCustomMarginTop2px_CSK_Module_MultiHTTPClient {
9-
margin-top: 2px;
98+
.myCustomMarginTop7PX_CSK_Module_MultiHTTPClient {
99+
margin-top: 7px;
10100
}
11101

12-
.myCustomMarginTop16px_CSK_Module_MultiHTTPClient {
13-
margin-top: 16px;
102+
.myCustomBackground_CSK_Module_MultiHTTPClient {
103+
}
104+
105+
.myCustomButton_CSK_Module_MultiHTTPClient {
106+
border-radius: 30px;
107+
padding-right: 0px;
14108
}

0 commit comments

Comments
 (0)