Skip to content

Commit e8d41ed

Browse files
authored
Merge pull request #16 from gri-gus/feature/1.2.0
Feature/1.2.0
2 parents 83a161a + fe96d5a commit e8d41ed

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

README-PYPI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Library for creating Stream Deck plugins in Python.
4343
> Without this setting, problems with installation and use may occur!
4444
4545
```shell
46-
pip install streamdeck-sdk[dev]
46+
pip install "streamdeck-sdk[dev]"
4747
```
4848

4949
## Features

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Library for creating Stream Deck plugins in Python.
5050
> Without this setting, problems with installation and use may occur!
5151
5252
```shell
53-
pip install streamdeck-sdk[dev]
53+
pip install "streamdeck-sdk[dev]"
5454
```
5555

5656
## Features
@@ -224,6 +224,8 @@ Instead of `"com.ggusev.keyboard.write"` you need to substitute the name of your
224224

225225
## Property Inspector Generator
226226

227+
[streamdeck-python-sdk-pi](https://github.com/gri-gus/streamdeck-python-sdk-pi)
228+
227229
With this tool you can quickly write your Property Inspector in Python.
228230
HTML and JS code will be generated.
229231

README.ru.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
> Без этой настройки возможны проблемы с установкой и использованием!
5151
5252
```shell
53-
pip install streamdeck-sdk[dev]
53+
pip install "streamdeck-sdk[dev]"
5454
```
5555

5656
## Возможности
@@ -224,6 +224,8 @@ $PI.onSendToPropertyInspector("com.ggusev.keyboard.write", jsn => {
224224

225225
## Генератор Property Inspector
226226

227+
[streamdeck-python-sdk-pi](https://github.com/gri-gus/streamdeck-python-sdk-pi)
228+
227229
С помощью этого инструмента вы можете быстро писать свой Property Inspector на Python.
228230
Код на html и js будет сгенерирован.
229231

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "streamdeck_sdk"
7-
version = "1.2.0.dev8"
7+
version = "1.2.0"
88
authors = [
99
{ name = "Grigoriy Gusev", email = "thegrigus@gmail.com" },
1010
]
@@ -47,8 +47,8 @@ classifiers = [
4747

4848
[project.optional-dependencies]
4949
dev = [
50-
"streamdeck-sdk-cli>=0.0.1.dev6,<0.0.2",
51-
"streamdeck-sdk-pi>=0.0.1.dev1,<0.0.2",
50+
"streamdeck-sdk-cli>=0.0.1,<0.1.0",
51+
"streamdeck-sdk-pi>=0.0.1,<0.1.0",
5252
]
5353

5454
[project.urls]

0 commit comments

Comments
 (0)