Review of "Brightness Control" version 7

Details Page Preview

A helper letting you control your display brightness. Can be set to persist across reboots. Supports hover scrolling and custom keybindings for changing brightness. The original author is lmedinas. Special thanks to dsboger, pulb, koluch and jonius! Note: Not compatible with Ubuntu 14.04. For Gnome Shell 3.10, please use the integrated control.

Extension Homepage
http://gitorious.org/gnome-shell-brightness-extension/gnome-shell-brightness-extension

No comments.

Diff Against

Files

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

All Versions

Version Status
19 Active
18 Active
17 Rejected
16 Active
15 Active
14 Active
13 Active
12 Active
11 Active
10 Rejected
9 Rejected
8 Active
7 Rejected
6 Inactive
5 Active
4 Inactive
3 Inactive
2 Rejected
1 Rejected

Previous Reviews on this Version

lmedinas posted a review
This release adds gettext support and scroll event.
gcampax posted a review
You cannot use Gettext.textdomain, as that overrides the textdomain of the whole shell. You need to use const Gettext = imports.gettext.domain(your_domain); const _ = Gettext.gettext;
lmedinas posted a review
I don't understand.... it should be like: const Gettext = imports.gettext.domain('gnome-shell-extensions'); const _ = Gettext.gettext; function init(metadata) { Gettext.bindtextdomain("gnome-shell-brightness-extension", metadata.path + "/locale"); } ?
gcampax posted a review
Almost const Gettext = imports.gettext.domain('gnome-shell-extensions'); const _ = Gettext.gettext; function init(metadata) { imports.gettext.bindtextdomain("gnome-shell-brightness-extension", metadata.path + "/locale"); }
lmedinas posted a review
Done! Thanks submitting a new version.