mirror of
https://github.com/liberatedsystems/Sideband_CE.git
synced 2024-09-03 04:13:27 +02:00
Cleanup
This commit is contained in:
parent
76e0d20a9b
commit
7b7903be8d
@ -10,7 +10,7 @@ source.exclude_patterns = app_storage/*,venv/*,Makefile,./Makefil*,requirements,
|
||||
|
||||
version.regex = __version__ = ['"](.*)['"]
|
||||
version.filename = %(source.dir)s/main.py
|
||||
android.numeric_version = 20221011
|
||||
android.numeric_version = 20221013
|
||||
|
||||
requirements = python3==3.9.5,hostpython3==3.9.5,cryptography,cffi,pycparser,kivy==2.1.0,pygments,sdl2,sdl2_ttf==2.0.15,pillow,lxmf==0.1.9,netifaces,libbz2,pydenticon,usb4a,usbserial4a
|
||||
p4a.local_recipes = ../Others/python-for-android/pythonforandroid/recipes
|
||||
|
@ -1,5 +1,4 @@
|
||||
# TODO: Reset
|
||||
__debug_build__ = True
|
||||
__debug_build__ = False
|
||||
__disable_shaders__ = True
|
||||
__version__ = "0.2.3"
|
||||
__variant__ = "beta"
|
||||
|
@ -1,5 +1,4 @@
|
||||
# TODO: Reset
|
||||
__debug_build__ = True
|
||||
__debug_build__ = False
|
||||
|
||||
import time
|
||||
import RNS
|
||||
@ -7,7 +6,7 @@ from os import environ
|
||||
|
||||
from kivy.logger import Logger, LOG_LEVELS
|
||||
|
||||
if __debug_build__ or args.verbose:
|
||||
if __debug_build__:
|
||||
Logger.setLevel(LOG_LEVELS["debug"])
|
||||
else:
|
||||
Logger.setLevel(LOG_LEVELS["error"])
|
||||
|
@ -1062,8 +1062,7 @@ class SidebandCore():
|
||||
self.periodic_thread.start()
|
||||
|
||||
def __start_jobs_immediate(self):
|
||||
# TODO: Reset
|
||||
if True or self.log_verbose:
|
||||
if self.log_verbose:
|
||||
selected_level = 7
|
||||
else:
|
||||
selected_level = 2
|
||||
@ -1227,8 +1226,6 @@ class SidebandCore():
|
||||
RNS.log("Error while adding RNode Interface. The contained exception was: "+str(e))
|
||||
self.interface_rnode = None
|
||||
|
||||
|
||||
|
||||
RNS.log("Reticulum started, activating LXMF...")
|
||||
self.setstate("init.loadingstate", "Activating LXMF Router")
|
||||
self.message_router = LXMF.LXMRouter(identity = self.identity, storagepath = self.lxmf_storage, autopeer = True)
|
||||
|
Loading…
Reference in New Issue
Block a user