Kaydet (Commit) c94e8c07 authored tarafından Bahadır Kandemir's avatar Bahadır Kandemir

New release. Wireless signal quailty max value added

üst cc47fba2
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
# option) any later version. Please read the COPYING file. # option) any later version. Please read the COPYING file.
# #
__version__ = '2.4.4' __version__ = '2.4.5'
import dbus import dbus
import locale import locale
......
...@@ -66,6 +66,7 @@ class AccessPoint: ...@@ -66,6 +66,7 @@ class AccessPoint:
self.mac = "" self.mac = ""
self.encryption = "none" self.encryption = "none"
self.qual = "" self.qual = ""
self.qual_max = "100"
self.protocol = "" self.protocol = ""
self.channel = "" self.channel = ""
if id: if id:
...@@ -83,6 +84,7 @@ class AccessPoint: ...@@ -83,6 +84,7 @@ class AccessPoint:
"mac": self.mac, "mac": self.mac,
"encryption": self.encryption, "encryption": self.encryption,
"quality": self.qual, "quality": self.qual,
"quality_max": self.qual_max,
"protocol": self.protocol, "protocol": self.protocol,
"channel": self.channel, "channel": self.channel,
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment