diff --git a/Makefile b/Makefile index 62d441a..25f6b78 100644 --- a/Makefile +++ b/Makefile @@ -23,10 +23,10 @@ apk: prepare release postbuild devapk: prepare debug postbuild install: - adb install bin/sideband-0.1.5-arm64-v8a-debug.apk + adb install bin/sideband-0.1.6-arm64-v8a-debug.apk install-release: - adb install bin/sideband-0.1.5-arm64-v8a-release.apk + adb install bin/sideband-0.1.6-arm64-v8a-release.apk console: (adb logcat | grep python) diff --git a/main.py b/main.py index 4d6978e..a0c783f 100644 --- a/main.py +++ b/main.py @@ -510,7 +510,7 @@ class SidebandApp(MDApp): import webbrowser webbrowser.open("https://unsigned.io/sideband") - info = "This is Sideband v"+__version__+" "+__variant__+", running on RNS v"+RNS.__version__+"\n\nHumbly build using the following open components:\n\n - [b]Reticulum[/b] (MIT License)\n - [b]LXMF[/b] (MIT License)\n - [b]KivyMD[/b] (MIT License)\n - [b]Kivy[/b] (MIT License)\n - [b]Python[/b] (PSF License)"+"\n\nGo to [u][ref=link]https://unsigned.io/sideband[/ref][/u] to support the project.\n\nThe Sideband app is Copyright (c) 2022 Mark Qvist / unsigned.io\n\nPermission is granted to freely share and distribute binary copies of Sideband v"+__version__+" "+__variant__+", so long as no payment or compensation is charged for said distribution or sharing.\n\nIf you were charged or paid anything for this copy of Sideband, please report it to [b]license@unsigned.io[/b].\n\nTHIS IS EXPERIMENTAL SOFTWARE - USE AT YOUR OWN RISK AND RESPONSIBILITY" + info = "This is Sideband v"+__version__+" "+__variant__+", on RNS v"+RNS.__version__+"\n\nHumbly build using the following open components:\n\n - [b]Reticulum[/b] (MIT License)\n - [b]LXMF[/b] (MIT License)\n - [b]KivyMD[/b] (MIT License)\n - [b]Kivy[/b] (MIT License)\n - [b]Python[/b] (PSF License)"+"\n\nGo to [u][ref=link]https://unsigned.io/sideband[/ref][/u] to support the project.\n\nThe Sideband app is Copyright (c) 2022 Mark Qvist / unsigned.io\n\nPermission is granted to freely share and distribute binary copies of Sideband v"+__version__+" "+__variant__+", so long as no payment or compensation is charged for said distribution or sharing.\n\nIf you were charged or paid anything for this copy of Sideband, please report it to [b]license@unsigned.io[/b].\n\nTHIS IS EXPERIMENTAL SOFTWARE - USE AT YOUR OWN RISK AND RESPONSIBILITY" self.root.ids.information_info.text = info self.root.ids.information_info.bind(on_ref_press=link_exec) self.root.ids.screen_manager.transition.direction = "left" @@ -630,6 +630,7 @@ class SidebandApp(MDApp): self.widget_hide(self.root.ids.connectivity_rnode_label) self.widget_hide(self.root.ids.connectivity_use_rnode) self.widget_hide(self.root.ids.connectivity_rnode_cid) + self.widget_hide(self.root.ids.rnode_support_info) def save_connectivity(sender=None, event=None): RNS.log("Save connectivity") @@ -748,7 +749,7 @@ class SidebandApp(MDApp): import webbrowser webbrowser.open("https://unsigned.io/sideband") - info = "The [b]Encryption Keys[/b] import and export feature is not yet implemented in Sideband.\n\nWant it faster? Go to [u][ref=link]https://unsigned.io/sideband[/ref][/u] to support the project." + info = "The [b]Encryption Keys[/b] import and export feature is not yet implemented in Sideband. In this section of the program, you will be able to export, import and back up your RNS identities, and to link Sideband with your Nomad Network identity, for fetching messages from it on the go.\n\nWant it faster? Go to [u][ref=link]https://unsigned.io/sideband[/ref][/u] to support the project." self.root.ids.keys_info.text = info self.root.ids.keys_info.bind(on_ref_press=link_exec) self.root.ids.screen_manager.transition.direction = "left" diff --git a/ui/layouts.py b/ui/layouts.py index b1d930c..0eb5211 100644 --- a/ui/layouts.py +++ b/ui/layouts.py @@ -306,6 +306,14 @@ MDNavigationLayout: active: False disabled: True + MDLabel: + id: rnode_support_info + markup: True + text: "[i]RNode support is in development[/i]" + size_hint_y: None + text_size: self.width, None + height: self.texture_size[1] + MDTextField: id: connectivity_rnode_cid hint_text: "RNode Pairing ID"