Review of "Hot Edge" version 2

Details Page Preview

Add a hot edge that activates the overview to the bottom of the screen. This provides a better mouse-based workflow and can be an alternative to a dock.

Extension Homepage
https://github.com/jdoda/hotedge

No comments.

Diff Against

Files

Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.

All Versions

Previous Reviews on this Version

JustPerfection active
Approved but It's better to have those logs only in debug mode.
jdoda posted a review
(not sure if the reviewer will see this, but worth a shot...) Agreed, but the documentation I was looking at ( https://gjs.guide/extensions/development/debugging.html#basic-debugging ) didn't give any indication on how to do debug logging, or how to activate debug mode. Could you point me to any documentation on that?
JustPerfection posted a review
Create a function called logDebug like this: const debugMode = true; function logDebug(message) { if (!debugMode) { return; } log(message); } Now instead of using log() directly, you can use logDebug() instead. When you want send your extension for review, just set debugMode to false. If you have any question about the extensions, you can ask us on GNOME Matrix channel: https://matrix.to/#/#extensions:gnome.org