diff --git a/sbapp/share/flasher.html b/sbapp/share/flasher.html
index 14bb9d3..9033cc9 100644
--- a/sbapp/share/flasher.html
+++ b/sbapp/share/flasher.html
@@ -9,7 +9,7 @@
RNode Flasher
-
+
Sideband includes a copy of the web-based RNode Flasher developed by Liam Cottle. You can use this flasher to install and provision the RNode firmware on any compatible boards.
Please note! Your browser must support Web-USB for this to work.
diff --git a/sbapp/share/guides.html b/sbapp/share/guides.html
index 15d09ed..d4cf17a 100644
--- a/sbapp/share/guides.html
+++ b/sbapp/share/guides.html
@@ -9,7 +9,7 @@
Guides
-
+
Welcome to the Guide Section!
From here, you can browse or download various included manuals, documentation, references and guides.
diff --git a/sbapp/share/index.html b/sbapp/share/index.html
index bc6c85d..4f34587 100644
--- a/sbapp/share/index.html
+++ b/sbapp/share/index.html
@@ -10,7 +10,7 @@
Sideband Repo
-
Hello!
+
Hello!
diff --git a/sbapp/share/pkgs.html b/sbapp/share/pkgs.html
index 5e86dd0..d022983 100644
--- a/sbapp/share/pkgs.html
+++ b/sbapp/share/pkgs.html
@@ -9,7 +9,7 @@
Software
-
+
Welcome to the Software Library!
From here, you can download installable Python Wheel packages of Reticulum and various other auxillary programs and utilities.
diff --git a/setup.py b/setup.py
index 4e2c5b7..bf2521e 100644
--- a/setup.py
+++ b/setup.py
@@ -47,6 +47,20 @@ def glob_paths(pattern):
return out_files
+def glob_share():
+ out_files = []
+ src_path = os.path.join(os.path.dirname(__file__), "sbapp/share")
+ print(src_path)
+
+ for root, dirs, files in os.walk(src_path):
+ for file in files:
+ filepath = os.path.join(str(Path(*Path(root).parts[1:])), file)
+
+ if not "mirrors/unsigned.io" in str(filepath):
+ out_files.append(filepath.split(f"sbapp{os.sep}")[1])
+
+ return out_files
+
packages = setuptools.find_packages(
exclude=[
"sbapp.plyer.platforms.android",
@@ -63,6 +77,7 @@ package_data = {
"kivymd/images/*",
"kivymd/*",
"mapview/icons/*",
+ *glob_share(),
*glob_paths(".kv")
]
}