A quick notes and tasks panel menu for GNOME Shell with markdown formatting. This extension uses the system clipboard for copy, cut and paste operations.
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.
extension.js:357
St.Clipboard.get_default()
extension.js:366
St.Clipboard.get_default()
extension.js:377
St.Clipboard.get_default()
EGO-A-004 warning
extension files should not contain excessive ungated console logging
File contains 7 ungated console.log/warn/error calls (threshold: 5).
extension.js:124
console.error(`QuickNotes: Load failed — ${e}`)
extension.js:170
console.error(`QuickNotes: Async save — ${e}`)
extension.js:173
console.error(`QuickNotes: Save error — ${e}`)
extension.js:183
console.error(`QuickNotes: Sync save — ${e}`)
extension.js:196
console.error(`QuickNotes: Bad tab-definitions — ${e}`)
extension.js:749
console.warn(`QuickNotes: Markdown error — ${e}`)
extension.js:791
console.warn(`QuickNotes: Theme colors unavailable — ${e}`)
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.
extension.js:245
this._contentArea = new St.BoxLayout({
vertical: true, x_expand: true, y_expand: true,
})
extension.js:672
this._focusTarget = textActor
extension.js:228
this._headerBar = new St.BoxLayout({ x_expand: true, style: 'padding-bottom: 6px;' })
extension.js:224
this._mainBox = new St.BoxLayout({
vertical: true, style: 'width: 350px; min-height: 250px;',
})
extension.js:673
this._notesTextActor = textActor
extension.js:229
this._tabBar = new St.BoxLayout({ x_expand: true })
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:245
this._contentArea = new St.BoxLayout({
vertical: true, x_expand: true, y_expand: true,
})
extension.js:228
this._headerBar = new St.BoxLayout({ x_expand: true, style: 'padding-bottom: 6px;' })
extension.js:224
this._mainBox = new St.BoxLayout({
vertical: true, style: 'width: 350px; min-height: 250px;',
})
extension.js:229
this._tabBar = new St.BoxLayout({ x_expand: true })
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:834
entry.clutter_text.connect('activate', () => {
this._pushUndo();
content.tasks.splice(i + 1, 0, '');
this._queueSave();
renderTasks(i + 1);
})
extension.js:841
entry.clutter_text.connect('key-press-event', (_a, event) => {
if (event.get_key_symbol() === Clutter.KEY_BackSpace
&& entry.get_text() === ''
&& content.tasks.length > 1) {
this._pushUndo();
extension.js:827
entry.clutter_text.connect('text-changed', () => {
if (this._isMutating) return;
content.tasks[i] = entry.get_text();
this._queueSave();
this._scheduleUndoCapture();
})