Skip to content

Commit

Permalink
Update version number and correct GitHub repository URLs
Browse files Browse the repository at this point in the history
Updated the version number in the SMIB HID library and docker-compose files from "1.1.0" to "1.1.1". Also, adjusted GitHub repository URLs that were pointing to "S.M.I.B." to correctly point to "smib". Besides, a new "docker-compose-pi.yml" file has been introduced, supporting configuration for Raspberry Pi.
  • Loading branch information
sam57719 committed Jun 13, 2024
1 parent 7e12e40 commit a6f597b
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions docker-compose-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ services:
smib-slack:
container_name: smib-slack
build:
context: https://github.com/somakeit/S.M.I.B..git#develop
context: https://github.com/somakeit/smib.git#develop
dockerfile: smib-fast.Dockerfile
ports:
- "4123:4123"
Expand All @@ -21,7 +21,7 @@ services:
smib-webserver:
container_name: smib-webserver
build:
context: https://github.com/somakeit/S.M.I.B..git#develop
context: https://github.com/somakeit/smib.git#develop
dockerfile: smib-fast.Dockerfile
ports:
- "80:80"
Expand Down
4 changes: 2 additions & 2 deletions docker-compose-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ services:
smib-slack:
container_name: smib-slack
build:
context: https://github.com/somakeit/S.M.I.B..git#master
context: https://github.com/somakeit/smib.git#master
dockerfile: smib-fast.Dockerfile
ports:
- "4123:4123"
Expand All @@ -21,7 +21,7 @@ services:
smib-webserver:
container_name: smib-webserver
build:
context: https://github.com/somakeit/S.M.I.B..git#master
context: https://github.com/somakeit/smib.git#master
dockerfile: smib-fast.Dockerfile
ports:
- "80:80"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "smib"
version = "1.1.0"
version = "1.1.1"
description = ""
authors = ["sam57719 <[email protected]>"]
readme = "README.md"
Expand Down
6 changes: 3 additions & 3 deletions smib/slack/plugins/space/openclose/app_home.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def _get_info_blocks() -> list[Block]:
text="For more information see the GitHub repository",
accessory=ButtonElement(
text="GitHub Repo",
url="https://github.com/somakeit/S.M.I.B.",
url="https://github.com/somakeit/smib",
action_id="app_home_url_github_repo"
)
)
Expand All @@ -86,7 +86,7 @@ def _get_info_blocks() -> list[Block]:
text="To raise a bug or enhancement idea, visit our issue tracker",
accessory=ButtonElement(
text="Issue Tracker",
url="https://github.com/somakeit/S.M.I.B./issues",
url="https://github.com/somakeit/smib/issues",
action_id="app_home_url_issue_tracker"
)
)
Expand All @@ -96,7 +96,7 @@ def _get_info_blocks() -> list[Block]:
text="How to contribute patches to code or documentation?",
accessory=ButtonElement(
text="Contributing",
url="https://github.com/somakeit/S.M.I.B./blob/develop/CONTRIBUTING.md",
url="https://github.com/somakeit/smib/blob/develop/CONTRIBUTING.md",
action_id="app_home_url_contributing"
)
)
Expand Down
6 changes: 3 additions & 3 deletions smib/slack/plugins/space/openclose/templates/app_home.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"text": "GitHub Repo",
"emoji": true
},
"url": "https://github.com/somakeit/S.M.I.B"
"url": "https://github.com/somakeit/smib"
}
},
{
Expand All @@ -76,7 +76,7 @@
"text": "Issue Tracker",
"emoji": true
},
"url": "https://github.com/somakeit/S.M.I.B./issues"
"url": "https://github.com/somakeit/smib/issues"
}
},
{
Expand All @@ -92,7 +92,7 @@
"text": "Contributing",
"emoji": true
},
"url": "https://github.com/somakeit/S.M.I.B./blob/develop/CONTRIBUTING.md"
"url": "https://github.com/somakeit/smib/blob/develop/CONTRIBUTING.md"
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion smibhid/lib/hid.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def __init__(self) -> None:
Create HID instance and then run startup() to start services for button monitoring and LED output.
"""
self.log = uLogger("HID")
self.version = "1.1.0"
self.version = "1.1.1"
self.slack_api = Wrapper()
self.loop_running = False
self.display = Display()
Expand Down

0 comments on commit a6f597b

Please sign in to comment.