From b717210564b4f4f94742ed9ba0bab0062eb0bb66 Mon Sep 17 00:00:00 2001 From: Jacob Gustafson <7557867+Poikilos@users.noreply.github.com> Date: Fri, 6 Dec 2024 11:01:47 -0500 Subject: [PATCH] Update the git URL. --- .gitignore | 2 +- examples/example_node_implementation.py | 2 +- examples/example_remote_nodes.py | 2 +- examples/examples_gui.py | 4 ++-- pyproject.toml | 6 +++--- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index f14b4f0..3f3d8ae 100644 --- a/.gitignore +++ b/.gitignore @@ -179,7 +179,7 @@ cython_debug/ /*.bad_json.txt /settings.json /.vscode/settings.json -# ^ /.vscode/settings.json is ignored since it may have python.defaultInterpreterPath with differs depending on the specific machine. Recommended: place that setting in there ("PythonOlcbNode Folder" tab in VSCode settings) +# ^ /.vscode/settings.json is ignored since it may have python.defaultInterpreterPath with differs depending on the specific machine. Recommended: place that setting in there ("python-openlcb Folder" tab in VSCode settings) /build /doc/_autosummary /examples/settings.json diff --git a/examples/example_node_implementation.py b/examples/example_node_implementation.py index 167bee0..6169dd1 100644 --- a/examples/example_node_implementation.py +++ b/examples/example_node_implementation.py @@ -108,7 +108,7 @@ def memoryReadFail(memo): # protocols localNode = Node( NodeID(settings['localNodeID']), - SNIP("PythonOlcbNode", "example_node_implementation", + SNIP("python-openlcb", "example_node_implementation", "0.1", "0.2", "User Name Here", "User Description Here"), set([PIP.SIMPLE_NODE_IDENTIFICATION_PROTOCOL, PIP.DATAGRAM_PROTOCOL]) ) diff --git a/examples/example_remote_nodes.py b/examples/example_remote_nodes.py index 003ae9c..2f1b180 100644 --- a/examples/example_remote_nodes.py +++ b/examples/example_remote_nodes.py @@ -84,7 +84,7 @@ def printMessage(msg): # protocols localNode = Node( NodeID(settings['localNodeID']), - SNIP("PythonOlcbNode", "example_node_implementation", + SNIP("python-openlcb", "example_node_implementation", "0.1", "0.2", "User Name Here", "User Description Here"), set([PIP.SIMPLE_NODE_IDENTIFICATION_PROTOCOL, PIP.DATAGRAM_PROTOCOL]) ) diff --git a/examples/examples_gui.py b/examples/examples_gui.py index c58615f..669f40a 100644 --- a/examples/examples_gui.py +++ b/examples/examples_gui.py @@ -1,8 +1,8 @@ """ Examples GUI -This file is part of the PythonOlcbNode project -(). +This file is part of the python-openlcb project +(). Contributors: Poikilos diff --git a/pyproject.toml b/pyproject.toml index e5a5af5..40fd0b1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,8 +47,8 @@ gui = ["zeroconf"] [project.urls] # List of names: https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#urls -Repository = "https://github.com/bobjacobsen/PythonOlcbNode" -Issues = "https://github.com/bobjacobsen/PythonOlcbNode/issues" -# Changelog = "https://github.com/bobjacobsen/PythonOlcbNode/blob/master/CHANGELOG.md" +Repository = "https://github.com/bobjacobsen/python-openlcb" +Issues = "https://github.com/bobjacobsen/python-openlcb/issues" +# Changelog = "https://github.com/bobjacobsen/python-openlcb/blob/master/CHANGELOG.md" # ^ TODO: Uncomment this if a changelog is added (& change url to match case). # - For a common way to use markdown for it see: https://keepachangelog.com/en/1.1.0/ \ No newline at end of file