Skip to content

Commit

Permalink
Release 1.3.0 (#1453)
Browse files Browse the repository at this point in the history
* [fix] [lsf] alphanumeric vars ($a2b); br highlight (#1448)

* [fix] Remove import/export buttons from header (#1452)

* Fix DM initialization on project switch (#1454)

* [fix] Fix condition for ML results (#1460)

* Fixes to LSF toolbar (#1466)

* Fix switching between tasks (#1467)

* Add keypoints config

* Fix hotkeys not being properly bound on submit/task switch (#1472)

* Image segmentation fixes (#1473)

* [fix] [lsf] Infinite loop of tools actions (#1474)

* Update DM build

* Update DM and LSF (#1475)

- Fix Label All button
- Various fixes for image segmentation select tool

* Add timeout for contextlog

* Bump version number

* Exclude selected items from Label Stream when nothing's selected (#1476)

* Bump version 1.3.0rc4

* Bump version 1.3

Co-authored-by: hlomzik <[email protected]>
Co-authored-by: Konstantin Korotaev <[email protected]>
Co-authored-by: makseq-ubnt <[email protected]>
  • Loading branch information
4 people authored Sep 17, 2021
1 parent fb89419 commit 90aa4ec
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
2 changes: 1 addition & 1 deletion label_studio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
package_name = 'label-studio'

# Package version
__version__ = '1.2'
__version__ = '1.3'

# pypi info
__latest_version__ = None
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
title: Keypoint Labeling
type: community
group: Computer Vision
order: 10000
image: /static/templates/keypoints.png
details: <h1>Click the label and then on the canvas</h1>
config: '
<View>
<KeyPointLabels name="kp-1" toName="img-1">
<Label value="Face" background="red" />
<Label value="Nose" background="green" />
</KeyPointLabels>
<Image name="img-1" value="$img" />
</View>
'
Binary file added label_studio/core/static/templates/keypoints.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion label_studio/core/utils/contextlog.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,6 @@ def send_job(self, request, response, body):
else:
try:
url = 'https://tele.labelstud.io'
requests.post(url=url, json=payload)
requests.post(url=url, json=payload, timeout=3.0)
except:
pass

0 comments on commit 90aa4ec

Please sign in to comment.