2 Commits
0.9.5 ... 0.9.6

Author SHA1 Message Date
50097ce5b3 Bump version 2024-07-26 15:52:09 +02:00
4b28db6a13 Sort routes 2024-07-26 15:51:54 +02:00
2 changed files with 3 additions and 3 deletions

View File

@@ -118,8 +118,8 @@ def user(userName):
def routes():
routes = Route().list()
prefixes = set(
(r.prefix for r in routes.routes if not r.prefix.endswith('/0')))
prefixes = sorted(set(
(r.prefix for r in routes.routes if not r.prefix.endswith('/0'))))
exitNodes = [r.node for r in routes.routes if r.prefix.endswith(
'0/0') and r.enabled]

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "hsman"
version = "0.9.5"
version = "0.9.6"
description = "Flask Admin webui for Headscale"
authors = ["Andrea Mistrali <andrea@mistrali.pw>"]
license = "BSD"