Updated repository

This commit is contained in:
Mark Qvist 2024-12-10 21:18:52 +01:00
parent 55baede2fc
commit b301dc569b
5 changed files with 19 additions and 4 deletions

View File

@ -9,7 +9,7 @@
</head> </head>
<body> <body>
<span class="logo">RNode Flasher</span> <span class="logo">RNode Flasher</span>
<p><center><span class="menu"><a href="index.html">Start</a> | <a href="flasher.html">RNode Flasher</a> | <a href="pkgs.html">Software</a> | <a href="guides.html">Guides</a></span></center></p><hr> <p><center><span class="menu"><a href="index.html">Start</a> | <a href="pkgs.html">Software</a> | <a href="flasher.html">RNode Flasher</a> | <a href="guides.html">Guides</a></span></center></p><hr>
<br/>Sideband includes a copy of the web-based RNode Flasher developed by <a href="https://github.com/liamcottle/rnode-flasher">Liam Cottle</a>. You can use this flasher to install and provision the RNode firmware on any compatible boards.<br/> <br/>Sideband includes a copy of the web-based RNode Flasher developed by <a href="https://github.com/liamcottle/rnode-flasher">Liam Cottle</a>. You can use this flasher to install and provision the RNode firmware on any compatible boards.<br/>
<br/> <br/>
<b>Please note!</b> Your browser must support Web-USB for this to work.<br/> <b>Please note!</b> Your browser must support Web-USB for this to work.<br/>

View File

@ -9,7 +9,7 @@
</head> </head>
<body> <body>
<span class="logo">Guides</span> <span class="logo">Guides</span>
<p><center><span class="menu"><a href="index.html">Start</a> | <a href="flasher.html">RNode Flasher</a> | <a href="pkgs.html">Software</a> | <a href="guides.html">Guides</a></span></center></p><hr><br/> <p><center><span class="menu"><a href="index.html">Start</a> | <a href="pkgs.html">Software</a> | <a href="flasher.html">RNode Flasher</a> | <a href="guides.html">Guides</a></span></center></p><hr><br/>
Welcome to the <b>Guide Section</b>!<br/><br/>From here, you can browse or download various included manuals, documentation, references and guides. Welcome to the <b>Guide Section</b>!<br/><br/>From here, you can browse or download various included manuals, documentation, references and guides.
<ul> <ul>

View File

@ -10,7 +10,7 @@
</head> </head>
<body> <body>
<span class="logo">Sideband Repo</span> <span class="logo">Sideband Repo</span>
<p><center><span class="menu"><a href="index.html">Start</a> | <a href="flasher.html">RNode Flasher</a> | <a href="pkgs.html">Software</a> | <a href="guides.html">Guides</a></span></center></p><hr><h2>Hello!</h2> <p><center><span class="menu"><a href="index.html">Start</a> | <a href="pkgs.html">Software</a> | <a href="flasher.html">RNode Flasher</a> | <a href="guides.html">Guides</a></span></center></p><hr><h2>Hello!</h2>
<table style="margin-bottom: 1.5em;"> <table style="margin-bottom: 1.5em;">
<tbody> <tbody>
<tr> <tr>

View File

@ -9,7 +9,7 @@
</head> </head>
<body> <body>
<span class="logo">Software</span> <span class="logo">Software</span>
<p><center><span class="menu"><a href="index.html">Start</a> | <a href="flasher.html">RNode Flasher</a> | <a href="pkgs.html">Software</a> | <a href="guides.html">Guides</a></span></center></p><hr><br/> <p><center><span class="menu"><a href="index.html">Start</a> | <a href="pkgs.html">Software</a> | <a href="flasher.html">RNode Flasher</a> | <a href="guides.html">Guides</a></span></center></p><hr><br/>
Welcome to the <b>Software Library</b>!<br/><br/>From here, you can download installable Python Wheel packages of Reticulum and various other auxillary programs and utilities. Welcome to the <b>Software Library</b>!<br/><br/>From here, you can download installable Python Wheel packages of Reticulum and various other auxillary programs and utilities.
<ul id="filelist"> <ul id="filelist">
</ul><br/> </ul><br/>

View File

@ -47,6 +47,20 @@ def glob_paths(pattern):
return out_files 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( packages = setuptools.find_packages(
exclude=[ exclude=[
"sbapp.plyer.platforms.android", "sbapp.plyer.platforms.android",
@ -63,6 +77,7 @@ package_data = {
"kivymd/images/*", "kivymd/images/*",
"kivymd/*", "kivymd/*",
"mapview/icons/*", "mapview/icons/*",
*glob_share(),
*glob_paths(".kv") *glob_paths(".kv")
] ]
} }