Skip to content

Commit

Permalink
version 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pwr committed Jul 13, 2013
1 parent c690b2c commit 16af3a9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
0.9.1:
* When devices report a battery alert, only show the alert once.
* Make sure devices in the window tree are sorted by registration index.
* Added an autostart .desktop file.
* Replaced single-instance code with GtkApplication.
* Fixed indentification of the M505 mouse.
* Fixed an occasional windowing layout bug with the C52F Nano Receiver.

0.9.0:
* New single-window UI.
* Performance MX leds show the current battery charge.
Expand Down
2 changes: 1 addition & 1 deletion lib/solaar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

from __future__ import absolute_import, division, print_function, unicode_literals

__version__ = '0.9.0'
__version__ = '0.9.1'
NAME = 'Solaar'
2 changes: 2 additions & 0 deletions lib/solaar/ui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@

def _init_application():
app = Gtk.Application.new('io.github.pwr.solaar', 0)
# not sure this is necessary...
# app.set_property('register-session', True)
registered = app.register(None)
if _log.isEnabledFor(_INFO):
_log.info("application %s, registered %s", app.get_dbus_object_path(), registered)
Expand Down

0 comments on commit 16af3a9

Please sign in to comment.