version 0.9.1
This commit is contained in:
parent
c690b2c9e9
commit
16af3a9acc
|
@ -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:
|
0.9.0:
|
||||||
* New single-window UI.
|
* New single-window UI.
|
||||||
* Performance MX leds show the current battery charge.
|
* Performance MX leds show the current battery charge.
|
||||||
|
|
|
@ -4,5 +4,5 @@
|
||||||
|
|
||||||
from __future__ import absolute_import, division, print_function, unicode_literals
|
from __future__ import absolute_import, division, print_function, unicode_literals
|
||||||
|
|
||||||
__version__ = '0.9.0'
|
__version__ = '0.9.1'
|
||||||
NAME = 'Solaar'
|
NAME = 'Solaar'
|
||||||
|
|
|
@ -18,6 +18,8 @@ GLib.threads_init()
|
||||||
|
|
||||||
def _init_application():
|
def _init_application():
|
||||||
app = Gtk.Application.new('io.github.pwr.solaar', 0)
|
app = Gtk.Application.new('io.github.pwr.solaar', 0)
|
||||||
|
# not sure this is necessary...
|
||||||
|
# app.set_property('register-session', True)
|
||||||
registered = app.register(None)
|
registered = app.register(None)
|
||||||
if _log.isEnabledFor(_INFO):
|
if _log.isEnabledFor(_INFO):
|
||||||
_log.info("application %s, registered %s", app.get_dbus_object_path(), registered)
|
_log.info("application %s, registered %s", app.get_dbus_object_path(), registered)
|
||||||
|
|
Loading…
Reference in New Issue