Software hub in quick settings
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:68
this._settings.connect(
'changed::download-updates',
() => {
this.checked =
this._settings.get_boolean('download-updates');
this._updateSubtitle();
this._updateMenuheader();
}
)