Review of "Hacker News Reader" version 1

Details Page Preview

GNOME panel extension to view top Hacker News stories with inline previews and quick open actions.

Extension Homepage
https://github.com/ebarrera89/hacker-news-gnome-extension

No comments.

FAQ

Files

Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.

Shexli (experimental) warning 2

Shexli found 2 issues that may need reviewer attention.

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.

Disconnect all signals

  • extension.js:114
    			this.menu.connect('open-state-changed', (_menu, open) => {
    				if (open && this._stories.length === 0 && !this._loading)
    					this._loadStories(true);
    			})

EGO-L-008 warning

Soup.Session instances should be aborted during cleanup

Soup.Session instances should be aborted during cleanup.

Soup.Session.abort

  • extension.js:91
    this._session = new Soup.Session()

All Versions

Version Status
1 Unreviewed