Skip to content

Commit f5afba2

Browse files
committed
# Version 4.0.0
## Repository moved to GitHub organization
1 parent 80993b3 commit f5afba2

28 files changed

Lines changed: 5694 additions & 21 deletions

CHANGELOG.md

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

4-
## Release 0.1.0
5-
- Initial commit
4+
## Release 4.0.0
5+
6+
### Improvements
7+
- Renamed abbreviations (Id-ID)
8+
- Renamed 'OnNewSelectedObject' to 'OnNewSelectedInstance'
9+
- Using recursive helper functions to convert Container <-> Lua table
10+
11+
## Release 3.3.0
12+
13+
### Improvements
14+
- Update to EmmyLua annotations
15+
- Usage of lua diagnostics
16+
- Documentation updates
17+
18+
## Release 3.2.0
619

720
### New features
8-
- ...
21+
- Event "OnNewFullResultWithImageNUM" provides content regarding measured result, class, score and image
922

1023
### Improvements
11-
- ...
24+
- Using internal moduleName variable to be usable in merged apps instead of _APPNAME, as this did not work with PersistentData module in merged apps.
25+
26+
## Release 3.1.0
27+
28+
### New features
29+
- Making use of dynamic viewerIDs -> only one single viewer for all instances
30+
- Configuration of "RegisteredEvent" now also available on UI
31+
- Possible to forward image incl. result (e.g. to save it with result name on FTP) (setForwardImage, OnNewResultWithImageNUM)
32+
- New function to reset instances
33+
34+
### Improvements
35+
- Using now "setInstance" instead of "setSelectedDnnObject" function (naming issue)
36+
- Naming of UI elements and adding some mouse over info texts
37+
- Appname added to log messages
38+
- Renamed page folder accordingly to module name
39+
- Loading only required APIs ('LuaLoadAllEngineAPI = false') -> less time for GC needed
40+
- Update of helper funcs to support 4-dim tables for PersistentData
41+
- Renamed event "OnNewParametersName" to "OnNewParameterName" (consistent to other modules)
42+
- Added ENUM
43+
- Minor edits, docu, added log messages
1244

1345
### Bugfix
14-
- ...
46+
- UI events notified after pageLoad after 300ms instead of 100ms to not miss
47+
48+
## Release 3.0.0
49+
50+
### New features
51+
- Compatible with PersistentData ver 3.0.0 to save camera instances within Parameter binary file
52+
- PersistentData Parametername now configurable via UI
53+
- Possible to add new cameras during runtime (see "addInstance() )
54+
55+
### Improvements
56+
- Renaming of "objects" to "instances" (e.g. multiRemoteCamerasObjects -> multiRemoteCameras_Instances)
57+
- Events/Functions for instances are created now dynamically (sample entries available in docu)
58+
- Forwarding thread internal results to UI via "OnNewValueToForward[NUM]"-event
59+
- added all UserLevels
60+
61+
### Bugfix
62+
- UI did not work
63+
64+
## Release 2.1.0
65+
66+
### New features
67+
- Added an second processing function to get scores for all classes
68+
- Added support for user levels, required user level for the whole UI is Maintenance
69+
70+
## Release 2.0.0
71+
72+
### New features
73+
- Update handling of persistent data according to CSK_PersistentData module ver. 2.0.0
74+
75+
## Release 1.0.0
76+
- Initial commit
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[]
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"showLoginButton": false
3+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/* Add project wide CSS settings here */
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
3+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "CSK_Module_MultiDeepLearning",
3+
"version": "1.0.0",
4+
"description": "Generated",
5+
"components": [
6+
"@sick-davinci/basic-elements"
7+
],
8+
"dependencies": {
9+
"@sick-davinci/basic-elements": "^5.0.5"
10+
}
11+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
.myViewer_CSK_Module_MultiDeepLearning > div > div {
2+
max-height: 800px;
3+
min-height: 800px;
4+
}
5+
6+
.myCustomFrame_CSK_Module_MultiDeepLearning {
7+
border-style: solid;
8+
border-width: 1px;
9+
border-color: grey;
10+
margin: 6px;
11+
}
12+
13+
.myCustomSpacerVert10_CSK_Module_MultiDeepLearning {
14+
min-height: 10px;
15+
}

0 commit comments

Comments
 (0)