Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version number and correct GitHub repository URLs #145

Merged
merged 1 commit into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 <sam57719@gmail.com>"]
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