diff --git a/PLANNED & NOT PLANNED.md b/PLANNED & NOT PLANNED.md index 830de62..5323aa5 100644 --- a/PLANNED & NOT PLANNED.md +++ b/PLANNED & NOT PLANNED.md @@ -1,30 +1,40 @@ > This document exists to inform feature requesters, contributors, and anyone else who is curious on the state of Warehouse. Make sure to give this a read before requesting any new features. +### Bug fixes (Ready to ship in next Minor or Bugfix update) + +- Typo [#151](https://github.com/flattool/warehouse/issues/151) +- Incorrect navigation page row being selected at launch in wide view + # Features Being Worked On -### Features that have all work done and will release in the next update (ready to ship) +### Completed features (Ready to ship in next Minor update) -- Edit flatpak pins +- -### Features that might release in the next update, but will release in some update +### Planned features for some update -- Uninstall unused packages +- Uninstall unused flatpaks +- Updating flatpaks +- Installation and configuration of locales # Features Being Considered -### Features that might be worked on in the future - - Supporting host icon themes -- Updating flatpaks -- Open flatpak ref and remote files with Warehouse from the file manager -- Choose a custom install location for a remote -- Move remotes between install locations +- Filter option for "only verified" Flatpaks +- Add Warehouse to "Open With" for .flatpak, .flatpakref, and .flatpakrepo +- Creation of new custom installations +- Sorting settings for packages list +- Sorting settings for snapshots list +- General settings + - Where to save snapshots + - Restore filters on startup + - Restore shown page on startup -# Features not Planned to be Added +# Features NOT Planned to be Added -### Features that will never be added to Warehouse +### Features that will NEVER be added to Warehouse -- Permission management +- Permission management (like Flatseal) - Full fledge package manager / app store - Viewing app icons and screenshots from remotes - Reading and leaving app reviews diff --git a/src/main_window/window.py b/src/main_window/window.py index 59a70c1..155e16a 100644 --- a/src/main_window/window.py +++ b/src/main_window/window.py @@ -91,7 +91,7 @@ class WarehouseWindow(Adw.ApplicationWindow): def navigation_handler(self, _, row): if self.main_split.get_collapsed(): self.main_split.set_show_sidebar(False) - + row = row.get_child() page = self.pages[row] self.stack.set_visible_child(page)