It is currently May 1st, 2024, 4:35 pm

Possible Bugs (AdvancedCPU & Memory)

Report bugs with the Rainmeter application and suggest features.
PantherX
Posts: 13
Joined: December 3rd, 2012, 5:57 am

Possible Bugs (AdvancedCPU & Memory)

Post by PantherX »

Please note that I am rather new to rainmeter (and am loving it) so a quick search didn't display the bugs that I encountered. Sorry if that has already been covered somewhere else.

Memory
The Free RAM value is reported 0.04GB less than Task Manager
The Used RAM value is correct to the nearest 0.1GB
The Total RAM value is reported 0.01GB less than Task Manager
Code is as follows:

Code: Select all

[UsedRAM]
Measure = PhysicalMemory

[FreeRAM]
Measure = PhysicalMemory
InvertMeasure = 1

[TotalRAM]
Measure = PhysicalMemory
Total = 1

[UsedRAMGraph]
MeasureName = UsedRAM
Meter =  String
X = 163
Y = 16
FontColor = #FontColor1#
FontSize = #FontHeight#
FontFace = #FontName#
StringAlign = Left
StringEffect = #BlueBorder#
FontEffectColor = #BlueColor#
AntiAlias = 0
Percentual = 1
PreFix = "USED "
PostFix = "%"

[UsedRAMString]
MeasureName = UsedRAM
Meter = String
X = 258
Y = 16
FontColor = #FontColor1#
FontSize = #FontHeight#
FontFace = #FontName#
StringAlign = Right
StringEffect = #BlueBorder#
FontEffectColor = #BlueColor#
AntiAlias = 0
Autoscale = 1
NumOfDecimals = 2
PostFix = "B"

[TotalRAMString]
MeasureName = TotalRAM
Meter = String
X = 258
Y = 31
FontColor = #FontColor1#
FontSize = #FontHeight#
FontFace = #FontName#
StringAlign = Right
StringEffect = #BlueBorder#
FontEffectColor = #BlueColor#
AntiAlias = 0
Autoscale = 1
NumOfDecimals = 2
PostFix = "B"
RAM Bug.png
AdvancedCPU
The reported CPU Usage is higher than 100% if you are using LinX and after running it, stop and start it. It is easy to reproduce. The Skin used is the Enigma 4 Patch 1.
CPU Bug.png
System details:
Windows 8 Pro 64 bit
Rainmeter 2.4.0 r1678 64-bit (Nov 4 2012)
Additional information can be provided if necessary.

While none of the bugs are major, it would be nice to see it resolved in the future. Thanks for such an amazing application :D

Edit -> Added RAM Code
You do not have the required permissions to view the files attached to this post.
Daimondx
Posts: 6
Joined: April 16th, 2012, 5:11 am

Re: Possible Bugs (AdvancedCPU & Memory)

Post by Daimondx »

The problem is not a bug with Raimeter its what windows 8 taskmanager is doing.
You are using " NumOfDecimals = 2 " where as windows is using 1 Decimal, so the 0.0x is being rounded up/down on taskmanager giving diferent readings. Raimeter is set to be more percise thats all.
So if you set "NumOfDecimals = 2" to =1 instead you will should come up with same resualts.