Compare commits

...

10 Commits

Author SHA1 Message Date
daanselen 8ba868d75b Merge pull request 'chore(deps): update dependency pyotp to v2.10.0' (#3) from renovate/pyotp-2.x into main
Reviewed-on: #3
Reviewed-by: daanselen <dselen@nerthus.nl>
2026-07-11 10:19:52 +00:00
Renovate Bot 6da6482a5e chore(deps): update dependency pyotp to v2.10.0
renovate/stability-days Updates have met minimum release age requirement
2026-06-22 19:01:23 +00:00
daanselen 42b7be5b17 Merge pull request 'chore: Configure Renovate' (#1) from renovate/configure into main
Reviewed-on: #1
2026-06-05 20:09:43 +00:00
daanselen 49095975a3 chore: disable workflow 2026-06-05 21:48:25 +02:00
Renovate Bot 9ddd6038f9 chore(deps): add renovate.json5
CodeQL Advanced / Analyze (python) (pull_request) Has been cancelled
2026-06-05 19:41:16 +00:00
DaanSelen 3c8fc54d76 chore: unbound error fix 2026-04-01 14:17:39 +02:00
DaanSelen c1d9f3751f chore: add robust os categories file check 2026-04-01 13:31:56 +02:00
DaanSelen 8ae6b728b5 chore: remove newline from writing history 2026-04-01 11:53:23 +02:00
DaanSelen 1006b965ed chore: change formatting 2026-03-30 14:54:20 +02:00
DaanSelen e710dadfcd chore: bump libmeshctrl 2026-02-19 09:01:01 +01:00
7 changed files with 17 additions and 9 deletions
+5 -2
View File
@@ -65,8 +65,6 @@ async def init_connection(credentials: dict) -> meshctrl.Session:
return session return session
async def main(): async def main():
local_categories_file = "./os_categories.json"
just_fix_windows_console() just_fix_windows_console()
''' '''
Main function where the program starts. Place from which all comands originate (eventually). Main function where the program starts. Place from which all comands originate (eventually).
@@ -81,6 +79,11 @@ async def main():
Console.text_color.reset + "MeshBook Version: " + Console.text_color.yellow + str(meshbook_version)) Console.text_color.reset + "MeshBook Version: " + Console.text_color.yellow + str(meshbook_version))
return return
if not args.oscategories:
local_categories_file = "./os_categories.json"
else:
local_categories_file = args.oscategories
if not args.meshbook: if not args.meshbook:
parser.print_help() parser.print_help()
return return
+1 -1
View File
@@ -45,4 +45,4 @@ class History():
stitched_file = f"{self.history_directory}/meshbook_run_{datetime.now().strftime('%Y_%m_%d_%H_%M_%S')}.log" stitched_file = f"{self.history_directory}/meshbook_run_{datetime.now().strftime('%Y_%m_%d_%H_%M_%S')}.log"
with open(stitched_file, "x") as f: with open(stitched_file, "x") as f:
f.write(history + "\n") f.write(history)
-1
View File
@@ -1,4 +1,3 @@
{ {
"Linux": { "Linux": {
"Debian": [ "Debian": [
+6
View File
@@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>daanselen/renovate-config"
]
}
+2 -2
View File
@@ -1,4 +1,4 @@
colorama==0.4.6 colorama==0.4.6
pyyaml==6.0.3 pyyaml==6.0.3
libmeshctrl==1.3.2 libmeshctrl==1.3.3
pyotp==2.9.0 pyotp==2.10.0