Skip to content

Commit 90aa4ec

Browse files
nick-skriabinhlomzikKonstantinKorotaevmakseq
authored
Release 1.3.0 (#1453)
* [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]>
1 parent fb89419 commit 90aa4ec

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

label_studio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
package_name = 'label-studio'
55

66
# Package version
7-
__version__ = '1.2'
7+
__version__ = '1.3'
88

99
# pypi info
1010
__latest_version__ = None
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
title: Keypoint Labeling
2+
type: community
3+
group: Computer Vision
4+
order: 10000
5+
image: /static/templates/keypoints.png
6+
details: <h1>Click the label and then on the canvas</h1>
7+
config: '
8+
<View>
9+
<KeyPointLabels name="kp-1" toName="img-1">
10+
<Label value="Face" background="red" />
11+
<Label value="Nose" background="green" />
12+
</KeyPointLabels>
13+
<Image name="img-1" value="$img" />
14+
</View>
15+
'
Loading

label_studio/core/utils/contextlog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,6 @@ def send_job(self, request, response, body):
164164
else:
165165
try:
166166
url = 'https://tele.labelstud.io'
167-
requests.post(url=url, json=payload)
167+
requests.post(url=url, json=payload, timeout=3.0)
168168
except:
169169
pass

0 commit comments

Comments
 (0)