Ubo-app

Latest version: v1.3.0

Safety actively analyzes 724051 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 1 of 19

1.3.0

- fix: remove dependencies of `publish` job of `publish_to_pypi` workflow
- fix: vscode binary now needs to be instructed about the location of the binary with `version use` sub-command - closes 217
- fix: image size being too big for the lite version of the raspberry os
- fix: restart avahi-daemon after the hostname is set in `ubo-system`
- feat: add support for `set`s and `dict`s for rpc api
- feat: `{{hostname}}`, as a template variable, will be replaced with the hostname of the device whenever used in `title` and `content` properties of a `Notification` instance or in the `text`, `picovoice_text` or `piper_text` properties of a `ReadableInformation` instance.
- refactor: minor improvements like add `volume` to `AudioPlayAudioEvent`, metric's `density` of kivy to `DisplayRenderEvent` and `DisplayCompressedRenderEvent`, some housekeeping in syntax, logs and ci/cd scripts
- refactor: to make it easier for other modules to interact with docker containers and compositions, there is now a store action for each interaction and now they run as side effects of those store actions dispatched to the store, instead of directly calling functions
- feat(web-ui): implement react web application for the web-ui service - closes 224
- refactor(web-ui): use mui dialogs for input demands - closes 224
- chore(web-ui): add linting and formatting to the web application code - closes 224
- refactor(web-ui): use webaudio for audio playback in the web application and add an unmute button - closes 224
- feat(web-ui): add side buttons layout, and handle swipe gestures for the web application - closes 224
- feat(web-ui): add dark-mode support for layout buttons and add color scheme switch buttons - closes 224
- fix(web-ui): provide input field for when there is no `fields` nor `pattern` in the `InputDescription`
- refactor(voice): upgrade `access_key` input to use the new `fields` value of the `InputDescription`
- refactor(web-ui): use the same mui interface in static server too (instead of jinja-rendered interface) and add action buttons for all status reported by server - closes 224
- fix(rpi-connect): use `with_state` of the latest python-redux version instead of `view` to avoid memoization of actions - closes 248
- refactor(core,audio,display,keypad,sensors): read and check content of eeprom to determine if a device/service should be initialized or not - closes 223, closes 249
- fix(core): improve syntax of `str_to_bool`, removing all unnecessary `== 1` postfixes
- feat(core): implement services menu in settings for controlling services - closes 4, closes 226
- feat(core): store services configuration into and read them from the persistent store
- refactor: use the new subscriptions return value of the `setup` function for different services to report subscriptions so that the service manager can clean up the subscriptions when the service is stopped
- fix(core): remove the reference of the async task handle after it is done to avoid memory leaks
- feat(core): clean up status icons of a service when it stops
- refactor(tests): make different parts of code explicitly return their cleanup functions and make test_services wait until all services are completely loaded without any errors plus small improvements to logs
- chore(lint): update ruff to the latest version and update codebase to be compatible with it
- build(installation): remove the line in install.sh uninstalling `RPI.GPIO` as it is no longer needed with the latest release of adafruit-blinka
- build(installation): remove the raspberry pi's ssh daemon banner warning about setting a valid user
- refactor(core): make `subscribe_event` created in services, run the handler in the event loop of the service instead of the event loop of the main thread - closes 226
- refactor: add `ubo_app.colors` and move hardcoded color codes to it
- feat: add menu switch for service threads to enable/disable auto-run and auto-rerun of services - closes 227
- build(install): avoid swallowing stdout of the `pip install` command in the `install.sh`, lock onnxruntime to 1.20.1, related: <https://github.com/microsoft/onnxruntime/issues/23957>
- test: improve cleanup and add explicit wait for loaded services to unload at the end of `test_services` test
- feat(core): add a barrier for services after they register their reducer, they will pass it only when the rest of them have registered their reducer - closes 163
- refactor(core): replace `kivy.clock.Clock.create_trigger` as the scheduler of the store with a new in house implementation of a scheduler using `asyncio` running in a separate thread and multiple improvements in resource cleanup, test utilities to ensure tests are reproducible and don't fail randomly
- docs: add a section for adding new services, mentioning general patterns, to avoid common mistakes
- refactor(core): better handle circular references in formatting log messages
- fix(core): wrap `callback` call of the scheduler in `try` to avoid the scheduler stopping when an exception is raised in its thread
- refactor(docker): make docker container menus load even if `ip` service is not available
- test: mock `has_gateway` and better mock `send_command` to make it return `done` instead of `Connected` when the command is not `connection`
- refactor(core): use latest version of `python-redux` and `ubo-gui` and remove all `mainthread` decorators for actions on the menu as `ubo-gui` now takes care of running them in the main thread itself
- fix(core): improve resource cleanup of service threads so that they can be restarted after being stopped
- refactor(core): defer attaching the main reducer to the root reducer using `CombineReducerRegisterAction` to avoid circular imports or sacrificing the purity of reducers.
- fix(core): add cleanup for gpio pins including display pins and run `gpiozero.devices._shutdown` as part of the cleanup process
- test: wait for scheduler to completely stop before stopping the kivy app to make sure no `kivy.clock.Clock` event gets scheduled after the app is stopped
- fix(core): add display cleanup for raspberry pi 4 as adafruit uses `RPi.GPIO` in pi 4 instead of `lgpio` which it uses for pi 5 and we already have a cleanup for it
- test: add `UBO_TEST_INVESTIGATION_MODE` to enable advanced and costly tools like recording stack-trace of `cell`s, generating dependency graph using `objgraph` and running pdb session when memory leak is found to better investigate memory leaks
- test: move all dbus custom interfaces in `ubo_app.utils.dbus_interfaces` and preserve it in test cleanup, this is due to sdbus having a hidden mapping of dbus interfaces to their implementations in the C code and it doesn't clean up the mapping when the interface is removed
- refactor: avoid using `Clock.schedule_interval` and replace it with `asyncio.sleep` in services needing to periodically run a function
- test: add `test_menu`, as the first in a category of tests purposed to reproduce rare and hard-to-reproduce bugs: these tests run a few times normally, but when `UBO_TEST_INVESTIGATION_MODE` environment variable is set, they repeat the expected reproduction steps thousands of times until the bug is reproduced, and then run a pdb session for investigation
- refactor(services): better error representation containing more content in a single page
- fix(sensors): explicitly set the `light_integration_time` for the light sensor - closes 269
- fix(core): add `task_runner` parameter to `async_.create_task` and use it with `async_.get_task_runner` in store event handlers instead of directly calling the task runner to make sure a reference to tasks are stored in the memory until they are finished, handle by `async_.create_task` - closes 247, closes 266
- chore: update pyright and fix/silent newly reported type errors
- fix(core): improve `has_gateway` utility function to ignore default routes with local scope - closes 251
- fix(display): decrease baudrate from 70,000,000 to 60,000,000 to avoid residual noise on the display - closes 236
- fix(web-ui): don't interpret keys pressed outside the `web-app-root`, or keys pressed on `HTMLInputElement`, `HTMLTextAreaElement`, `HTMLSelectElement` and `HTMLButtonElement` as interactions with the pod
- fix(system): make system process completely exit when it's done so that systemd can restart it, the exit used to get blocked by the `check_connection` thread, also make it not exit simply because a client sends an empty datagram, the client may have crashed but system process doesn't need to exit - closes 272
- refactor(ip): remove python-ping package and the connection monitoring code in the system-manager, use system ping command instead, this is because none of the python packages providing ping functionality are actively maintained and ping command has the benefit of not needing to run as root, lowering the communication traffic between the system process and the main process - closes 267
- refactor(core): move setting gpio 17 to `config.txt` so that it happens on boot and remove it from `hardware_initialization`
- refactor(core): make the scheduler compensate for the time it took to run the last scheduled event, by waiting less time in the next scheduled event, also sync its frequency with the frequency of the display updates
- feat(core): handle system signal `USR1` as the signal to initiate `ipdb` only if `DEBUG_MODE_PDB_SIGNAL` is set
- refactor(system): improve the user experience of the reset button, add a pattern for restarting the app without killing it
- refactor(core): add unified API to access “current service” via thread-local, parent thread, or call stack
- refactor(core): better representation of errors in logs and service menus
- fix(ip): make sure the connection status is set to not-connected when ping is not generating any output
- refactor(services): avoid silencing caught exceptions in services by either reraising them so that they are caught and reported by the global exception handler or directly reporting them
- fix(audio): make audio run the `unbind` and `bind` sequence if the audio card is not listed by `alsaaudio.cards`
- fix(audio): replace wareshare repo with ubopod fork
- refactor(wifi): show wifi onboarding only on ubo-pod, and initiate the wifi input over hotspot on non-ubo-pods
- fix(audio): make sure `set_playback_mute`, `set_playback_volume` and `set_capture_volume` are applied on the audio card, even if audio manager is not initialized when these methods are called

1.2.2

- fix: temperature sensor is on 0x48, not 0x44

1.2.1

- fix: tenacity is now a production dependency
- chore: add pypi publish and automatic release github workflows

1.2.0

- chore: add `log_async_process` to log the output of an async processes in a notification if they don't run successfully
- refactor(core): housekeeping: rename `extra_information` to `qr_code_generation_instructions` in `ubo_input`, add `.tmpl` extension for extension files, use `textarea` for `LONG` input field type in web dashboard, rename `..._HOST` env variables to `..._ADDRESS`, use underscore thousand separators for big numbers in codebase
- feat(docker): support docker compositions and add a way to import `docker-compose.yml` files
- feat(docker): add instructions and icon for docker compositions
- refactor(core): rerender screen when rendering on the display is resumed like when returning from viewfinder to avoid artifacts
- refactor(docker): make composition menus responsive: showing spinner, etc
- fix: pass raw bytes to `DisplayRenderEvent` and `DisplayCompressedRenderEvent` to avoid encoding issues
- fix: add ".local" to hostname in users menus - closes 134
- fix: use stdout instead of stderr for reading rpi-connect process output - closes 174
- feat: hold update until the app creates a file signaling it is loaded - closes 177
- feat: setup a wifi hotspot for when the a web-ui input is demanded and the device is not connected to any network - closes 169
- feat: let the user upload directory content of the docker composition they are creating - closes 202
- feat: use `pod_id` as the ssid of the wifi hotspot
- feat: add dark mode for web-ui
- docs: update development documentation
- feat(web-ui): automatically run the wifi creation procedure when there is no ssid saved in the network manager and no default gateway is set - closes 214
- feat(web-ui): use captive portal in the hotspot started by web-ui - closes 211
- fix(core): an issue where a tuple of lists where passed as active_inputs instead of a list due to an unwanted comma - closes 212
- fix(core): high cpu usage due to the while loop going non-blocking when the ping raised an exception - closes 216
- feat(core): add a utility function to apply templates to filesystem based on a templates directory, while taking backups of the original files and another utility function to restore the backups
- fix(web-ui): run `iw wlan0 set power_save off` before running hotspot to avoid the soft block - closes 222
- refactor(ci): use new github runner arm images for building images
- feat(web-ui): add `ubo-redirect-server` service
- refactor(web-ui): add notifications for when starting/stopping the hotspot fails in the system manager
- refactor(web-ui): move starting/stopping of the required hotspot system services to the `ubo-hotspot` service (the more general version of the `ubo-redirect-server` service which runs the redirect server as its main process.)
- fix(core): uninstall RPi.GPIO after installing python packages in `install.sh` [related](https://github.com/adafruit/Adafruit_Blinka/issues/910) - closes #231
- fix(web-ui): avoid web-ui stop procedure being triggered when qr-code input is cancelled
- fix(system): run `time.sleep` for both branches of the ping loop (success and failure) to avoid high cpu usage of the system process
- fix(camera): avoid values read from qrcode being overridden by `None` values of alternative patterns - closes 230
- fix(wifi): wait a few seconds before creating the wifi connection if the provided input result has the input method `WEB_DASHBOARD` - closes 230
- fix(wifi): set `network_manager.wireless_enabled` for when hotspot is being turned off and also before creating a wifi connection and before connecting to a wifi network - closes 230
- fix(keypad,sensors): retry i2c initializations - closes 234
- fix(wifi): make `get_saved_wifi_ssids` return empty list in non-rpi environments

1.1.0

- chore: migrate from poetry to uv for the sake of improving performance and dealing with conflicting sub-dependencies
- feat(core): add colors to logs based on their level to make them more readable
- chore: use dynamic version field in `pyproject.toml` based on `hatch.build.hooks.vcs` and publish dev packages on pypi for all pushes to the main branch and all pull requests targeting the main branch
- chore: remove what has remained from poetry in the codebase
- refactor(core): avoid truncating or coloring logs in log files
- feat(web-ui): add web-ui service
- feat(web-ui): process input demands, dispatched on the bus
- feat(keypad): ability to use key-combinations, set key combinations for screenshot, snapshot and quit
- feat(web-ui): add `fields` in `InputDescription` with `InputFieldDescription` data structures to describe the fields of an input demand in detail
- fix(users): avoid setting user as sudoer when it performs a password reset
- feat(ip): use pythonping to perform a real ping test instead to determine the internet connection status instead of opening a socket
- feat(core): user can start/end recording actioning by hitting r, actions will be recorded in `recordings/` directory and the last recording can be replayed by hitting `ctrl+r` - closes 187
- feat(core): use new `SpinnerWidget` of ubo-gui to show unknown progress in notifications, and add `General` sub menu to `System` settings menu to host ubo-pod/ubo-app related settings, currently it has `Debug` toggle to control a debug feature of `HeadlessWidget` - closes 190
- feat(core): add recording and replaying indicators, avoid replaying while recording and vice versa, move keypad events to its own reducer as it has grown too big

1.0.0

- hotfix(users): do not mark the generated password as expired as it will cause boot failures as the os can't autologin into the ubo user when its password is expired
- hotfix(core): render blank screen on the display when `FinishEvent` is dispatched (makes sure display is clean after powering off)

Page 1 of 19

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.