diff --git a/.gitignore b/.gitignore index 64910910..43ff56bc 100644 --- a/.gitignore +++ b/.gitignore @@ -19,6 +19,7 @@ internal_filesystem_excluded/ # these tests contain actual NWC URLs: tests/manual_test_nwcwallet_alby.py tests/manual_test_nwcwallet_cashu.py +tests/manual_test_nwcwallet_coinos.py # Python cache files (created by CPython when testing imports) __pycache__/ diff --git a/CHANGELOG.md b/CHANGELOG.md index ade46c43..c2ae4212 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +0.6.1 +===== +- ActivityNavigator: support pre-instantiated activities + 0.6.0 ===== - About app: make more beautiful diff --git a/internal_filesystem/lib/mpos/info.py b/internal_filesystem/lib/mpos/info.py index 9afcf9d4..7bad21f2 100644 --- a/internal_filesystem/lib/mpos/info.py +++ b/internal_filesystem/lib/mpos/info.py @@ -1,4 +1,4 @@ -CURRENT_OS_VERSION = "0.6.0" +CURRENT_OS_VERSION = "0.6.1" # Unique string that defines the hardware, used by OSUpdate and the About app _hardware_id = "missing-hardware-info" diff --git a/tests/test_multi_connect.py b/tests/test_multi_connect.py index 1559f7c4..5669d037 100644 --- a/tests/test_multi_connect.py +++ b/tests/test_multi_connect.py @@ -141,9 +141,12 @@ class TestTwoWebsockets(unittest.TestCase): _thread.start_new_thread(self.newthread, ()) time.sleep(10) + + + # This demonstrates a crash when doing asyncio using different threads: #class TestCrashingSeparateThreads(unittest.TestCase): -class TestCrashingSeparateThreads(): +class TestCrashingSeparateThreads(): # Disabled # ---------------------------------------------------------------------- # Configuration