Toggle Cloudflare WARP connection from Quick Settings menu
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
EGO-L-002 warning
objects created by extension should be destroyed in disable()
Objects assigned in `enable()` are missing matching `.destroy()` calls in `disable()` or its helper methods.
ui/quickToggle.js:103
this._refreshButton = new St.Button({
style_class: 'icon-button',
child: new St.Icon({ iconName: 'view-refresh-symbolic' }),
})
EGO-L-005 warning
owned object references should be released in disable()
Owned references that are cleaned up in `disable()` should also be released with `null` or `undefined`.
extension.js:56
this._settings = this.getSettings()
ui/quickToggle.js:103
this._refreshButton = new St.Button({
style_class: 'icon-button',
child: new St.Icon({ iconName: 'view-refresh-symbolic' }),
})
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.
ui/quickToggle.js:107
this._refreshButton.connect('clicked', () => {
this._handleRefreshClicked();
})