Skip to content

Commit 01139d4

Browse files
committed
v1.5.20
1 parent 96f5282 commit 01139d4

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

RELEASE.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release Notes
22

3+
## V1.5.20
4+
5+
- ALPRDemo: Fix bug when make/model/color missing
6+
37
## V1.5.19
48

59
- Update SIO to r250201

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.5.19
1+
v1.5.20

deployment-examples/ALPRDemo/ui/python/ALPRUI.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,8 @@ def populateListWithData(self,data,ctrl,isoffset):
488488
else:
489489
dt = epoch_to_string(int(entry['time']))
490490
ctrl.InsertItem(index, f"{dt}")
491-
ctrl.SetItem(index, 1, f"{entry['make']}/{entry['model']}/{entry['color']}")
491+
if('make' in entry and 'model' in entry and 'color' in entry):
492+
ctrl.SetItem(index, 1, f"{entry['make']}/{entry['model']}/{entry['color']}")
492493
ctrl.SetItem(index, 2, f"{entry['string']}/{entry['region']}")
493494
ctrl.SetItem(index, 3, f"{entry['sourceId']}")
494495
ctrl.SetItem(index, 4, f"{entry['oid']}")

deployment-examples/SIOOnDemandAnalytics/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ When deploying on Jetson devices, additional configuration is required:
4949
```
5050
6. Execute the following command to get it up and running:
5151
```bash
52-
docker compose up
52+
docker-compose up
5353
```
5454

5555
## Testing the API

docs/schemas/anypipe/anypipe.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5515,7 +5515,7 @@ <h2 class="mb-0">
55155515
<a href="https://github.com/coveooss/json-schema-for-humans">
55165516
json-schema-for-humans
55175517
</a>
5518-
on 2025-02-25 at 16:24:50 +0000
5518+
on 2025-03-24 at 17:15:58 +0000
55195519
</p>
55205520
</footer>
55215521
</body>

0 commit comments

Comments
 (0)