Skip to content

Commit b06706d

Browse files
committed
ovos logo, not mycroft
1 parent cb7c0ff commit b06706d

File tree

5 files changed

+3
-23
lines changed

5 files changed

+3
-23
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ Start HiveMind WebChat
2121
optional arguments:
2222
-h, --help show this help message and exit
2323
--port PORT port to run webchat (default 9090)
24-
--announce announce HiveMind node in local network
2524
```
2625

2726
Access from web browser `http://localhost:9090`

hivemind_webchat/__main__.py

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,10 @@
66
def main():
77
parser = argparse.ArgumentParser(description="Start HiveMind WebChat")
88
parser.add_argument("--port", help="port to run webchat (default 9090)", default=9090)
9-
parser.add_argument("--announce", help="announce HiveMind node in local network", action="store_true")
109

1110
args = parser.parse_args()
1211

13-
presence = None
14-
15-
if args.announce:
16-
try:
17-
from HiveMind_presence import LocalPresence
18-
presence = LocalPresence(port=9090,
19-
service_type="HiveMind-WebChat")
20-
# TODO upnp server might be running for hivemind already if on same device
21-
# TODO scan utils should account for this service_type
22-
presence.start()
23-
except ImportError:
24-
print("Can not announce node in local network")
25-
print("pip install HiveMind_presence~=0.0.2a2")
26-
except Exception as e:
27-
print(f"Failed to announce node: {e}")
28-
2912
webchat.main(args.port)
30-
if presence:
31-
presence.stop()
3213

3314

3415
if __name__ == '__main__':
43.2 KB
Loading

hivemind_webchat/templates/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<div class="mycroft">
3434
<nav class="navbar navbar-inverse navbar-fixed-top">
3535
<div class="navbar-header">
36-
<a class="navbar-brand" href="#"><img src="static/img/Logo2.png" alt="Mycroft Logo">
36+
<a class="navbar-brand" href="#"><img src="static/img/ovos-logo-512.png" alt="Mycroft Logo">
3737
</a>
3838
</div>
3939

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='hivemind_webchat',
5-
version='0.2.2',
5+
version='0.3.0',
66
packages=['hivemind_webchat'],
77
include_package_data=True,
88
install_requires=["tornado"],
@@ -13,7 +13,7 @@
1313
description='local hivemind webchat',
1414
entry_points={
1515
'console_scripts': [
16-
'HiveMind-webchat=hivemind_webchat.__main__:main'
16+
'hivemind-webchat=hivemind_webchat.__main__:main'
1717
]
1818
}
1919
)

0 commit comments

Comments
 (0)