Quick access to Docker and Docker Compose.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
EGO-A-005 manual_review
extensions should not access the clipboard directly
Direct clipboard access via `St.Clipboard.get_default()` requires reviewer scrutiny.
modules/containerMenu.js:75
St.Clipboard.get_default()
ui/dialogs/information.js:83
St.Clipboard.get_default()
ui/dialogs/information.js:97
St.Clipboard.get_default()
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/dialogs/information.js:19
this._main_box = new St.BoxLayout({
orientation: Clutter.Orientation.VERTICAL,
})
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`.
ui/dialogs/information.js:19
this._main_box = new St.BoxLayout({
orientation: Clutter.Orientation.VERTICAL,
})
| Version | Status |
|---|---|
| 45 | Active |
| 44 | Active |
| 43 | Active |
| 42 | Active |
| 41 | Inactive |
| 40 | Active |
| 39 | Inactive |
| 38 | Inactive |
| 37 | Inactive |
| 36 | Rejected |
| 35 | Active |
| 34 | Active |
| 33 | Active |
| 32 | Rejected |
| 31 | Active |
| 30 | Inactive |
| 29 | Active |
| 28 | Active |
| 27 | Inactive |
| 26 | Rejected |
| 25 | Rejected |
| 24 | Active |
| 23 | Inactive |
| 22 | Rejected |
| 21 | Active |
| 20 | Active |
| 19 | Active |
| 18 | Rejected |
| 17 | Active |
| 16 | Active |
| 15 | Inactive |
| 14 | Inactive |
| 13 | Inactive |
| 12 | Inactive |
| 11 | Inactive |
| 10 | Inactive |
| 9 | Inactive |
| 8 | Inactive |
| 7 | Inactive |
| 6 | Inactive |
| 5 | Inactive |
| 4 | Inactive |
| 3 | Rejected |
| 2 | Inactive |
| 1 | Rejected |
Please use `connectObject()` and `disconnectObject()` so it is easier to track for cleanup.