diff --git a/addon/globalPlugins/resourceMonitor/__init__.py b/addon/globalPlugins/resourceMonitor/__init__.py index 0a20bd4b..00377e55 100644 --- a/addon/globalPlugins/resourceMonitor/__init__.py +++ b/addon/globalPlugins/resourceMonitor/__init__.py @@ -33,7 +33,7 @@ def toBiggestBytes(n, x=2, useLongNames=False): else: return res+units[i] def tryTrunk(n): - #this method basically removes decimal zeros, so 5/0 will just be 5. + #this method basically removes decimal zeros, so 5.0 will just be 5. #If the number ends in anything other than a 0, nothing happens (if the trunkated number is not equal to the decimal). if n==int(n): return int(n) return n diff --git a/buildVars.py b/buildVars.py index 5018c0ac..33f3d65f 100644 --- a/buildVars.py +++ b/buildVars.py @@ -19,7 +19,7 @@ # Translators: Long description to be shown for this add-on on add-on information from add-ons manager "addon_description" : _("A handy resource monitor to report CPU load, memory usage, battery, disk usage status and more."), # version - "addon_version" : "17.04", + "addon_version" : "17.05", # Author(s) "addon_author" : "Alex Hall , Joseph Lee , beqa gozalishvili , Tuukka Ojala and other NVDA contributors", # URL for the add-on documentation support diff --git a/readme.md b/readme.md index 4035c595..d735185a 100644 --- a/readme.md +++ b/readme.md @@ -24,6 +24,10 @@ This add-on does not replace task manager and other system information programs * CPU usage is given for logical processors, not physical cores. This is noticeable for processors which uses Hyper-Threading where number of CPU's is twice the number of CPU cores. * If there is heavy disk activity such as copying large files, there might be delays when obtaining disk usage information. +## Version 17.05 + +* Announcement of system uptime (time passed since last boot; NVDA+Shift+7). + ## Version 17.02 * Updated psutil dependency to 5.0.1.