diff --git a/TODO.md b/TODO.md index b0257f85..2c8ce7e4 100644 --- a/TODO.md +++ b/TODO.md @@ -5,7 +5,6 @@ - device list keyboard navigation - device IP geolocation -- field/area focus line in popups weird - unregister popup/menu when destroyed without being closed - menu click-through padding to close it easily - show scrollbars for a few secs if there's content to scroll on beginning @@ -13,7 +12,8 @@ - can leave room with a reason? - use new nio `restore_login()` -- verify all popups and boxes work: enter/esc, tab focus, operations +- verify all popups and box-pages work: enter/esc, tab focus, operations +- write changelog - update requirements.txt and flatpak nio version ## Refactoring diff --git a/src/backend/__init__.py b/src/backend/__init__.py index 89ff70c7..f4a21784 100644 --- a/src/backend/__init__.py +++ b/src/backend/__init__.py @@ -13,4 +13,4 @@ documentation in the following modules first: __app_name__ = "mirage" __display_name__ = "Mirage" -__version__ = "0.5.1" +__version__ = "0.5.2" diff --git a/src/main.cpp b/src/main.cpp index e8c1ead8..6f2ca7fb 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -81,7 +81,7 @@ int main(int argc, char *argv[]) { QApplication::setOrganizationName("mirage"); QApplication::setApplicationName("mirage"); QApplication::setApplicationDisplayName("Mirage"); - QApplication::setApplicationVersion("0.5.1"); + QApplication::setApplicationVersion("0.5.2"); QApplication::setAttribute(Qt::AA_EnableHighDpiScaling); QApplication app(argc, argv);