Turns the default horizontal app grid into a vertical one
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Changes in this version: - New favorites section - Fix alignment issues - Support Shell 48
Please disconnect object on destroy (line 104, 109, 114, 119 `appDisplay.js`): [EGO Review Guidelines: Disconnect all signals](https://gjs.guide/extensions/review-guidelines/review-guidelines.html#disconnect-all-signals)
All signals are connected to the object itself and will be disconnected when the object is destroyed. See [GObject.Object.connect_object(name, callback, gobject, flags)](https://gjs-docs.gnome.org/gjs/overrides.md#gobject-object-connect_object) for reference.
I'm well aware of that. Approved, but it's better to disconnect the object manually on destroy. If you change the class to a non-gobject in a future updates and we don't see the connection in the diff, we might miss it, so the code won't clean up properly.