diff --git a/label_studio/__init__.py b/label_studio/__init__.py index 0f6526f41ebb..99ce5caff1d1 100644 --- a/label_studio/__init__.py +++ b/label_studio/__init__.py @@ -4,7 +4,7 @@ package_name = 'label-studio' # Package version -__version__ = '1.2' +__version__ = '1.3' # pypi info __latest_version__ = None diff --git a/label_studio/annotation_templates/computer-vision/keypoints/config.yml b/label_studio/annotation_templates/computer-vision/keypoints/config.yml new file mode 100644 index 000000000000..fef7a587c2d3 --- /dev/null +++ b/label_studio/annotation_templates/computer-vision/keypoints/config.yml @@ -0,0 +1,15 @@ +title: Keypoint Labeling +type: community +group: Computer Vision +order: 10000 +image: /static/templates/keypoints.png +details:

Click the label and then on the canvas

+config: ' + + + + + +' diff --git a/label_studio/core/static/templates/keypoints.png b/label_studio/core/static/templates/keypoints.png new file mode 100644 index 000000000000..a306b5d1ca05 Binary files /dev/null and b/label_studio/core/static/templates/keypoints.png differ diff --git a/label_studio/core/utils/contextlog.py b/label_studio/core/utils/contextlog.py index 5d3dc7023df3..31f3e9afbb0c 100644 --- a/label_studio/core/utils/contextlog.py +++ b/label_studio/core/utils/contextlog.py @@ -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