Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
EGO-P-003 error
GSettings schema XML must be present in package
Extension appears to use GSettings but no `.gschema.xml` file is included in the package.
EGO-L-003 warning
signals connected by extension should be disconnected in disable()
Signals assigned in `enable()` are missing matching disconnect calls in `disable()` or its helper methods.
extension.js:85
window.connect("position-changed", () => this.queueOverlapCheck())
extension.js:91
window.connect("position-changed", () => this.queueOverlapCheck())
extension.js:86
window.connect("size-changed", () => this.queueOverlapCheck())
extension.js:92
window.connect("size-changed", () => this.queueOverlapCheck())
Both remaining shexli issues are false positives, in my opinion. I have created GNOME GitLab issues for one of them (GSchema), the other already has one. ``` vodofrede@vera ~/Projekter/wharf > uv tool run shexli wharf@vodofrede.shell-extension.zip shexli: issues_found (2 findings, 1 errors, 1 warnings) EGO-P-003 error Extension appears to use GSettings but no `.gschema.xml` file is included in the package. = rule: GSettings schema XML must be present in package = help: GSettings Schemas https://gjs.guide/extensions/review-guidelines/review-guidelines.html#gsettings-schemas EGO-L-003 warning Signals assigned in `enable()` are missing matching disconnect calls in `disable()` or its helper methods. --> wharf@vodofrede.shell-extension.zip:extension.js:85 | | window.connect("position-changed", () => this.queueOverlapCheck()) | = also: wharf@vodofrede.shell-extension.zip:extension.js:91 = also: wharf@vodofrede.shell-extension.zip:extension.js:86 = also: wharf@vodofrede.shell-extension.zip:extension.js:92 = rule: signals connected by extension should be disconnected in disable() = help: Disconnect all signals https://gjs.guide/extensions/review-guidelines/review-guidelines.html#disconnect-all-signals ```