Version 2.2.7

Signed-off-by: Jeroen Oudshoorn <oudshoorn.jeroen@gmail.com>

Signed-off-by: Jeroen Oudshoorn <oudshoorn.jeroen@gmail.com>
This commit is contained in:
Jeroen Oudshoorn
2023-09-05 03:34:16 +02:00
parent 2b2de6aac2
commit 78de8ff09c
2 changed files with 1 additions and 2 deletions

View File

@ -9,7 +9,7 @@ main.custom_plugin_repos = [
]
main.custom_plugins = "/usr/local/share/pwnagotchi/custom-plugins/"
main.plugins.fix_brcmf_plugin.enabled = true
main.plugins.fix_services.enabled = true
main.iface = "wlan0mon"
main.mon_start_cmd = "/usr/bin/monstart"

View File

@ -27,7 +27,6 @@ def check(version, repo, native=True):
resp = requests.get("https://api.github.com/repos/%s/releases/latest" % repo)
latest = resp.json()
info['available'] = latest_ver = latest['tag_name'].replace('v', '')
is_arm = info['arch'].startswith('arm')
local = version_to_tuple(info['current'])
remote = version_to_tuple(latest_ver)