Skip to content

Commit 4f887c2

Browse files
authored
Merge pull request #146 from somakeit/develop
v1.1.1 - Update repo name
2 parents 9b6726e + c349887 commit 4f887c2

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

docker-compose-develop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ services:
22
smib-slack:
33
container_name: smib-slack
44
build:
5-
context: https://github.com/somakeit/S.M.I.B..git#develop
5+
context: https://github.com/somakeit/smib.git#develop
66
dockerfile: smib-fast.Dockerfile
77
ports:
88
- "4123:4123"
@@ -21,7 +21,7 @@ services:
2121
smib-webserver:
2222
container_name: smib-webserver
2323
build:
24-
context: https://github.com/somakeit/S.M.I.B..git#develop
24+
context: https://github.com/somakeit/smib.git#develop
2525
dockerfile: smib-fast.Dockerfile
2626
ports:
2727
- "80:80"

docker-compose-master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ services:
22
smib-slack:
33
container_name: smib-slack
44
build:
5-
context: https://github.com/somakeit/S.M.I.B..git#master
5+
context: https://github.com/somakeit/smib.git#master
66
dockerfile: smib-fast.Dockerfile
77
ports:
88
- "4123:4123"
@@ -21,7 +21,7 @@ services:
2121
smib-webserver:
2222
container_name: smib-webserver
2323
build:
24-
context: https://github.com/somakeit/S.M.I.B..git#master
24+
context: https://github.com/somakeit/smib.git#master
2525
dockerfile: smib-fast.Dockerfile
2626
ports:
2727
- "80:80"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "smib"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
description = ""
55
authors = ["sam57719 <sam57719@gmail.com>"]
66
readme = "README.md"

smib/slack/plugins/space/openclose/app_home.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def _get_info_blocks() -> list[Block]:
7676
text="For more information see the GitHub repository",
7777
accessory=ButtonElement(
7878
text="GitHub Repo",
79-
url="https://github.com/somakeit/S.M.I.B.",
79+
url="https://github.com/somakeit/smib",
8080
action_id="app_home_url_github_repo"
8181
)
8282
)
@@ -86,7 +86,7 @@ def _get_info_blocks() -> list[Block]:
8686
text="To raise a bug or enhancement idea, visit our issue tracker",
8787
accessory=ButtonElement(
8888
text="Issue Tracker",
89-
url="https://github.com/somakeit/S.M.I.B./issues",
89+
url="https://github.com/somakeit/smib/issues",
9090
action_id="app_home_url_issue_tracker"
9191
)
9292
)
@@ -96,7 +96,7 @@ def _get_info_blocks() -> list[Block]:
9696
text="How to contribute patches to code or documentation?",
9797
accessory=ButtonElement(
9898
text="Contributing",
99-
url="https://github.com/somakeit/S.M.I.B./blob/develop/CONTRIBUTING.md",
99+
url="https://github.com/somakeit/smib/blob/develop/CONTRIBUTING.md",
100100
action_id="app_home_url_contributing"
101101
)
102102
)

smib/slack/plugins/space/openclose/templates/app_home.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"text": "GitHub Repo",
6161
"emoji": true
6262
},
63-
"url": "https://github.com/somakeit/S.M.I.B"
63+
"url": "https://github.com/somakeit/smib"
6464
}
6565
},
6666
{
@@ -76,7 +76,7 @@
7676
"text": "Issue Tracker",
7777
"emoji": true
7878
},
79-
"url": "https://github.com/somakeit/S.M.I.B./issues"
79+
"url": "https://github.com/somakeit/smib/issues"
8080
}
8181
},
8282
{
@@ -92,7 +92,7 @@
9292
"text": "Contributing",
9393
"emoji": true
9494
},
95-
"url": "https://github.com/somakeit/S.M.I.B./blob/develop/CONTRIBUTING.md"
95+
"url": "https://github.com/somakeit/smib/blob/develop/CONTRIBUTING.md"
9696
}
9797
}
9898
]

smibhid/lib/hid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def __init__(self) -> None:
1313
Create HID instance and then run startup() to start services for button monitoring and LED output.
1414
"""
1515
self.log = uLogger("HID")
16-
self.version = "1.1.0"
16+
self.version = "1.1.1"
1717
self.slack_api = Wrapper()
1818
self.loop_running = False
1919
self.display = Display()

0 commit comments

Comments
 (0)