Skip to content

Commit

Permalink
v1.1.1: Updated requirements; Updated README;
Browse files Browse the repository at this point in the history
  • Loading branch information
gri-gus committed Apr 18, 2023
1 parent e1393ee commit b71f79d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Stream Deck Plugin for installing images from LoremFlickr to button.

**Stream Deck application:** 6.0, 6.1

**Python:** 3.7 or later
**Python:** 3.8 or later

## Installation

Expand All @@ -37,7 +37,7 @@ Stream Deck Plugin for installing images from LoremFlickr to button.
1. Download Python from the official website and install it: https://www.python.org/downloads/

> ⚠️ Python version must be 3.7.0 or later.
> ⚠️ Python version must be 3.8.0 or later.

2. Check that Python is available from the command line:
Expand Down
6 changes: 3 additions & 3 deletions src/com.ggusev.loremflickr.sdPlugin/code/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
certifi==2022.12.7
charset-normalizer==3.1.0
decohints==1.0.8
decohints==1.0.9
idna==3.4
pydantic==1.10.6
pydantic==1.10.7
requests==2.28.2
streamdeck-sdk==0.2.1
streamdeck-sdk==0.3.0
typing_extensions==4.5.0
urllib3==1.26.15
websocket-client==1.5.1
2 changes: 1 addition & 1 deletion src/com.ggusev.loremflickr.sdPlugin/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
QUOTES_REGEX = re.compile(r"['\"`]")
PARSE_REQUIREMENTS_REGEX = re.compile(r"^\s*?(\S*).=", flags=re.MULTILINE)

logger: logging.Logger = logging.getLogger('default')
logger: logging.Logger = logging.getLogger(__name__)
MAX_MESSAGE_LEN: int = 500
LOG_FILE_PATH: Path = PLUGIN_LOGS_DIR_PATH / Path("init.log")
LOG_LEVEL = logging.DEBUG
Expand Down
2 changes: 1 addition & 1 deletion src/com.ggusev.loremflickr.sdPlugin/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"Description": "Get images from LoremFlickr",
"Icon": "assets/plugin_icon",
"Name": "LoremFlickr",
"Version": "1.1.0",
"Version": "1.1.1",
"SDKVersion": 2,
"OS": [
{
Expand Down

0 comments on commit b71f79d

Please sign in to comment.