It is currently April 16th, 2024, 2:06 pm

Action Timer stopping animation after turning off the display

Get help with creating, editing & fixing problems with skins
User avatar
jsmorley
Developer
Posts: 22629
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: Action Timer stopping animation after turning off the display

Post by jsmorley »

Yincognito wrote: February 17th, 2020, 4:27 pm Are you using the stops or not?
Me, I just began testing the stop featured version. If this one hangs as well, will try increasing the wait time (i.e. #SlidingUpdate# variable) to 240 (10 times more than before), to see how it goes. Oops, I didn't yet finished writing and it hanged - time for the 240 milliseconds version. This way, I will eliminate the "too many Windows messages freeze" possibility. Fingers crossed, LOL...
I am using the "Stop" in mine, and it has been running for 1/2 hour or so without problem. I think if it runs 2-3 hours without an issue, I'd start trusting it a bit.

Ah, I didn't see that yours hung again. Dunno. I do have a reasonably powerful and fast PC, so that might be a factor.
Windows 10 Pro (64-Bit)
Version 1909
Build 18363.657
AMD Ryzen 7 2700X Eight-Core 16-Thread Processor
Running at: 3700 Mhz
User avatar
jsmorley
Developer
Posts: 22629
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: Action Timer stopping animation after turning off the display

Post by jsmorley »

Seems to me that this "handover" approach must be stable. It's two entirely different threads and instances of the ActionTimer plugin, and they really can't step on each other.
User avatar
jsmorley
Developer
Posts: 22629
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: Action Timer stopping animation after turning off the display

Post by jsmorley »

I'm running this... Still ok so far.

Code: Select all

[Rainmeter]
AccurateText=1
OnRefreshAction=[!CommandMeasure MeasureActionTimer1 "Execute 1"]

[Variables]
ContainerWidth=136
TextWidth=0
Counter=0
CurrentStep=1
SlidingUpdate=24
Text="Wed, 00 May 2020   ●   ‒000 °C   ●   Showers Early / Clearing Late"

---Measures---

[ContainerWidthCalc]
Measure=Calc
Formula=#ContainerWidth#+#TextWidth#

[MeasureActionTimer1]
Measure=Plugin
Group=AT
Plugin=ActionTimer
ActionList1=Repeat Move1,#SlidingUpdate#,[ContainerWidthCalc] | Wait #SlidingUpdate# | DoOver1
Move1=[!SetVariable Counter "((#Counter#<0)?(#ContainerWidth#+#TextWidth#):((#Counter#>(#ContainerWidth#+#TextWidth#))?(0):(#Counter#+#CurrentStep#)))"][!UpdateMeasureGroup "AT"][!SetOption MeterText X "(#ContainerWidth#-#Counter#)"][!UpdateMeter *][!Redraw]
DoOver1=[!CommandMeasure MeasureActionTimer1 "Stop 1"][!CommandMeasure MeasureActionTimer2 "Execute 1"]
DynamicVariables=1

[MeasureActionTimer2]
Measure=Plugin
Group=AT
Plugin=ActionTimer
ActionList1=Repeat Move1,#SlidingUpdate#,[ContainerWidthCalc] | Wait #SlidingUpdate# | DoOver1
Move1=[!SetVariable Counter "((#Counter#<0)?(#ContainerWidth#+#TextWidth#):((#Counter#>(#ContainerWidth#+#TextWidth#))?(0):(#Counter#+#CurrentStep#)))"][!UpdateMeasureGroup "AT"][!SetOption MeterText X "(#ContainerWidth#-#Counter#)"][!UpdateMeter *][!Redraw]
DoOver1=[!CommandMeasure MeasureActionTimer2 "Stop 1"][!CommandMeasure MeasureActionTimer1 "Execute 1"]
DynamicVariables=1

---Meters---

[MeterBackground]
Meter=Shape
Shape=Rectangle 0,0,168,13 | StrokeWidth 0.5 | Stroke Color 255,64,32 | Fill Color 32,32,32,128
UpdateDivider=-1

[MeterTitle]
Meter=String
ClipString=2
FontFace=Tahoma
FontSize=7
AntiAlias=1
FontWeight=700
FontColor=255,255,255,255
StringEffect=Shadow
FontEffectColor=0,0,0,255
X=2
Y=0
Text=WEA
UpdateDivider=-1

[MeterContainer]
Meter=Shape
X=31
Y=0
Shape=Rectangle 0,0,136,13 | Fill Color 0,0,0,255 | StrokeWidth 0
UpdateDivider=-1

[MeterText]
Meter=String
Container=MeterContainer
FontFace=Tahoma
FontSize=7
FontWeight=400
FontColor=160,255,160,255
FontEffectColor=0,0,0,255
StringEffect=Shadow
Antialias=1
ClipString=0
InlineSetting=Color | 128,255,255,255
InlinePattern="^([^●]*)   ●"
InlineSetting2=Color | 255,255,255,255
InlinePattern2="(   ●   )"
InlineSetting3=Color | 255,224,128,255
InlinePattern3="●   ([^●]*)$"
X=(#ContainerWidth#/2)
Y=0
Text=#Text#
UpdateDivider=-1
OnUpdateAction=[!SetVariable TextWidth [MeterText:W]]
DynamicVariables=1
User avatar
Yincognito
Rainmeter Sage
Posts: 7118
Joined: February 27th, 2015, 2:38 pm
Location: Terra Yincognita

Re: Action Timer stopping animation after turning off the display

Post by Yincognito »

jsmorley wrote: February 17th, 2020, 4:32 pm Seems to me that this "handover" approach must be stable. It's two entirely different threads and instances of the ActionTimer plugin, and they really can't step on each other.
That is logically / in theory correct. In practice however, your implementation works fine, while in mine, it hangs. That is a good sign however, it would have been bad if it hanged on both. Now I can only hope that there is something else in my skins / environment that doesn't fit well with this AT attempt, but as I said, the other skins in the set have been working flawlessly for the past years (well, since I released the last version of them, to be precise).

I'm thinking if the little "lag" when querying / updating the feed sites in the other skin has anything to do with this one hanging. At the start, AT is "loosing some steps" (i.e. jumping / sliding with more than usual) when the feeds update, as that is a relatively CPU intensive operation.

Damn! Just when I thought about writing it doesn't hang anymore, it did it again. :x I just increased the wait time to 240 ms to check the last possibility, but it will take an eternity to move in these conditions...
jsmorley wrote: February 17th, 2020, 4:42 pmI'm running this... Still ok so far.
Mine is similar, bar some name changes in the Calc measure. I've included it in the AT group, since in a future implementation (where the text is subject to changes) the result of that formula needs updating as well - but I don't think these minor differences are the cause of it anyway.

Code: Select all

[Rainmeter]
AccurateText=1
OnRefreshAction=[!CommandMeasure MeasureActionTimer1 "Execute 1"]

[Variables]
ContainerWidth=136
TextWidth=0
Counter=0
CurrentStep=1
SlidingUpdate=240
Text="Wed, 00 May 2020   ●   ‒000 °C   ●   Showers Early / Clearing Late"

---Measures---

[MeasureSlideWidth]
Group=AT
Measure=Calc
Formula=(#ContainerWidth#+#TextWidth#)
UpdateDivider=-1
DynamicVariables=1

[MeasureActionTimer1]
Group=AT
Measure=Plugin
Plugin=ActionTimer
ActionList1=Repeat Move1,#SlidingUpdate#,[MeasureSlideWidth] | Wait #SlidingUpdate# | DoOver1
Move1=[!SetVariable Counter "((#Counter#<0)?(#ContainerWidth#+#TextWidth#):((#Counter#>(#ContainerWidth#+#TextWidth#))?(0):(#Counter#+#CurrentStep#)))"][!UpdateMeasureGroup "AT"][!SetOption MeterText X "(#ContainerWidth#-#Counter#)"][!UpdateMeter *][!Redraw]
DoOver1=[!CommandMeasure MeasureActionTimer1 "Stop 1"][!CommandMeasure MeasureActionTimer2 "Execute 1"]
DynamicVariables=1

[MeasureActionTimer2]
Group=AT
Measure=Plugin
Plugin=ActionTimer
ActionList1=Repeat Move1,#SlidingUpdate#,[MeasureSlideWidth] | Wait #SlidingUpdate# | DoOver1
Move1=[!SetVariable Counter "((#Counter#<0)?(#ContainerWidth#+#TextWidth#):((#Counter#>(#ContainerWidth#+#TextWidth#))?(0):(#Counter#+#CurrentStep#)))"][!UpdateMeasureGroup "AT"][!SetOption MeterText X "(#ContainerWidth#-#Counter#)"][!UpdateMeter *][!Redraw]
DoOver1=[!CommandMeasure MeasureActionTimer2 "Stop 1"][!CommandMeasure MeasureActionTimer1 "Execute 1"]
DynamicVariables=1

---Meters---

[MeterBackground]
Meter=Shape
Shape=Rectangle 0,0,168,13 | StrokeWidth 0.5 | Stroke Color 255,64,32 | Fill Color 32,32,32,128
UpdateDivider=-1

[MeterTitle]
Meter=String
ClipString=2
FontFace=Tahoma
FontSize=7
AntiAlias=1
FontWeight=700
FontColor=255,255,255,255
StringEffect=Shadow
FontEffectColor=0,0,0,255
X=2
Y=0
Text=WEA
UpdateDivider=-1

[MeterContainer]
Meter=Shape
X=31
Y=0
Shape=Rectangle 0,0,136,13 | Fill Color 0,0,0,255 | StrokeWidth 0
UpdateDivider=-1

[MeterText]
Meter=String
Container=MeterContainer
FontFace=Tahoma
FontSize=7
FontWeight=400
FontColor=160,255,160,255
FontEffectColor=0,0,0,255
StringEffect=Shadow
Antialias=1
ClipString=0
InlineSetting=Color | 128,255,255,255
InlinePattern="^([^●]*)   ●"
InlineSetting2=Color | 255,255,255,255
InlinePattern2="(   ●   )"
InlineSetting3=Color | 255,224,128,255
InlinePattern3="●   ([^●]*)$"
X=(#ContainerWidth#/2)
Y=0
Text=#Text#
UpdateDivider=-1
OnUpdateAction=[!SetVariable TextWidth [MeterText:W]]
DynamicVariables=1
This is the 240ms version, by the way. The 24s version was exactly the same, except for the value.
Profiles: Rainmeter ProfileDeviantArt ProfileSuites: MYiniMeterSkins: Earth
User avatar
jsmorley
Developer
Posts: 22629
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: Action Timer stopping animation after turning off the display

Post by jsmorley »

Dunno. Mine has been running for an hour now with no issue.

I have 14 skins running all the time, and 7 of them use WebParser to get feeds of one form or another. My Rainmeter uses between 0.1% - 0.4% of CPU.

I do only have one skin using ActionTimer, and that is just a "slide over" that is entirely mouse driven, and so happens pretty rarely.
User avatar
Yincognito
Rainmeter Sage
Posts: 7118
Joined: February 27th, 2015, 2:38 pm
Location: Terra Yincognita

Re: Action Timer stopping animation after turning off the display

Post by Yincognito »

jsmorley wrote: February 17th, 2020, 5:05 pm Dunno. Mine has been running for an hour now with no issue.

I have 14 skins running all the time, and 7 of them use WebParser to get feeds of one form or another. My Rainmeter uses between 0.1% - 0.4% of CPU.
I see. I now gave up testing the 240ms version, since although it didn't (yet) hang, it was awfully slow. I set the wait back to 24ms, but unloaded the feeds skin (which was "clasically" animated using a counter-like slide). Who knows, maybe AT doesn't deal well with other animations happening at the same time...

P.S. I had 9 skins running before, now I have 8.
Profiles: Rainmeter ProfileDeviantArt ProfileSuites: MYiniMeterSkins: Earth
User avatar
jsmorley
Developer
Posts: 22629
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: Action Timer stopping animation after turning off the display

Post by jsmorley »

Yeah, I have NO skins that use other than Update=1000. I try very hard to stay away from short update times, as no matter what other work you do to optimize things, the "redraw" of the skin will happen every Update milliseconds, and depending on the skin, redraw can be quite expensive.

It's why I never run any music visualizer skins and such, that really requires a very low Update rate.

Rainmeter is just not very good at "animations"...

It's one reason why I don't recommend never-ending animations. Even with ActionTimer, which has it's own thread and so avoids needing Update to be low in the skin, keep in mind that the only way it can work is if you absolutely hammer the Rainmeter message queue with !Redraw bangs, and so in effect you are forcing the skin to behave as if it had Update=5 or something. Each of those "redraws" is going to "interrupt" Rainmeter and say, "do this NOW", which Rainmeter will do its best to fit in with all the other stuff it is doing.

This is perfectly fine for a short animation on a mouse-over, but I would be very hesitant indeed to have this going on at all times in the skin.

Generally speaking, the effect of overloading the Rainmeter message queue is a "laggy" mouse. Mouse actions share the message queue with what ActionTimer is doing. However, if it gets bad enough it can in fact "hang".
User avatar
Yincognito
Rainmeter Sage
Posts: 7118
Joined: February 27th, 2015, 2:38 pm
Location: Terra Yincognita

Re: Action Timer stopping animation after turning off the display

Post by Yincognito »

jsmorley wrote: February 17th, 2020, 5:19 pm Yeah, I have NO skins that use other than Update=1000. I try very hard to stay away from short update times, as no matter what other work you do to optimize things, the "redraw" of the skin will happen every Update milliseconds, and depending on the skin, redraw can be quite expensive.

It's why I never run any music visualizer skins and such, that really requires a very low Update rate.

Rainmeter is just not very good at "animations"...

It's one reason why I don't recommend never-ending animations. Even with ActionTimer, which has it's own thread and so avoids needing Update to be low in the skin, keep in mind that the only way it can work is if you absolutely hammer the Rainmeter message queue with !Redraw bangs, and so in effect you are forcing the skin to behave as if it had Update=5 or something. Each of those "redraws" is going to "interrupt" Rainmeter and say, "do this NOW", which Rainmeter will do its best to fit in with all the other stuff it is doing.
I can understand that. Since we're talking about that (as the skin didn't - yet - hang with the clasically animated one unloaded, so maybe that was the issue), do you think there would be a similar danger of hanging if there were 2 AT skins instead of 1 AT and one classical? Since then there won't be any Rainmeter "proper" skins with an update rate of less than 1 second...

EDIT: Forget about what I was saying, it hanged yet again, despite the fact that it was the only animated skin (and the only one that had anything to do with less than 1 second tasks). I will now test with hardware acceleration enabled in Rainmeter, and if it still causes hangs, I'll just forget about this for a while. It seems I had good reasons to stay away from AT all this time, as Rainmeter "proper" never did such nasty things on me... :(
jsmorley wrote: February 17th, 2020, 5:19 pm Yeah, I have NO skins that use other than Update=1000. I try verGenerally speaking, the effect of overloading the Rainmeter message queue is a "laggy" mouse. Mouse actions share the message queue with what ActionTimer is doing. However, if it gets bad enough it can in fact "hang".
The laggy mouse didn't happen at all. The thing that bothered me in this was that this was absolutely NOT an operation "bad enough" for Rainmeter to hang. I would have understood if I had some multiple big image animation and such, less than 136 x 13 pixels of text related Windows messages shouldn't have been an issue.
Last edited by Yincognito on February 17th, 2020, 5:50 pm, edited 1 time in total.
Profiles: Rainmeter ProfileDeviantArt ProfileSuites: MYiniMeterSkins: Earth
User avatar
jsmorley
Developer
Posts: 22629
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: Action Timer stopping animation after turning off the display

Post by jsmorley »

I really don't know. Mine has been running for going on 2 hours now without any issue.

I have hardware acceleration turned on, but hopefully that isn't the issue, since you can't distribute a skin that depends on that.
User avatar
Yincognito
Rainmeter Sage
Posts: 7118
Joined: February 27th, 2015, 2:38 pm
Location: Terra Yincognita

Re: Action Timer stopping animation after turning off the display

Post by Yincognito »

jsmorley wrote: February 17th, 2020, 5:46 pm I really don't know. Mine has been running for going on 2 hours now without any issue.

I have hardware acceleration turned on, but hopefully that isn't the issue, since you can't distribute a skin that depends on that.
Why not? I agree that would be slightly inconvenient, but surely it wouldn't be that hard for the user to check that box and restart Rainmeter, all that done just one time (i.e. set and forget).

Just in case it helps (someday), the log:

Code: Select all

NOTE (19:38:37.405) : Rainmeter 4.3.0.3298 (64-bit)
NOTE (19:38:37.406) : Language: English (1033)
NOTE (19:38:37.407) : Build time: 2019-03-18 11:00:34
NOTE (19:38:37.408) : Commit Hash: 3593c281
NOTE (19:38:37.408) : Windows 10 Enterprise 1803 64-bit (build 17134) - English (1048)
NOTE (19:38:37.409) : Path: C:\Program Files\Rainmeter\
NOTE (19:38:37.410) : SkinPath: C:\Users\Zedd\Documents\Rainmeter\Skins\
NOTE (19:38:37.410) : SettingsPath: C:\Users\Zedd\AppData\Roaming\Rainmeter\
NOTE (19:38:37.411) : IniFile: C:\Users\Zedd\AppData\Roaming\Rainmeter\Rainmeter.ini
DBUG (19:38:37.414) : ------------------------------
DBUG (19:38:37.416) : * EnumDisplayDevices / EnumDisplaySettings API
DBUG (19:38:37.417) : \\.\DISPLAY1
DBUG (19:38:37.417) :   Name     : Generic PnP Monitor
DBUG (19:38:37.418) :   Adapter  : AMD Radeon HD 7500/7600 Series
DBUG (19:38:37.418) :   Flags    : ACTIVE PRIMARY (0x00000005)
DBUG (19:38:37.419) :   Handle   : 0x0000000000010001
DBUG (19:38:37.420) :   ScrArea  : L=0, T=0, R=1366, B=768 (W=1366, H=768)
DBUG (19:38:37.420) :   WorkArea : L=0, T=0, R=1366, B=738 (W=1366, H=738)
DBUG (19:38:37.421) : \\.\DISPLAY2
DBUG (19:38:37.422) :   Adapter  : AMD Radeon HD 7500/7600 Series
DBUG (19:38:37.422) :   Flags    : PRUNED (0x08000000)
DBUG (19:38:37.423) : ------------------------------
DBUG (19:38:37.423) : * EnumDisplayMonitors API
DBUG (19:38:37.424) : \\.\DISPLAY1
DBUG (19:38:37.424) :   Flags    : PRIMARY (0x00000001)
DBUG (19:38:37.425) :   Handle   : 0x0000000000010001
DBUG (19:38:37.426) :   ScrArea  : L=0, T=0, R=1366, B=768 (W=1366, H=768)
DBUG (19:38:37.426) :   WorkArea : L=0, T=0, R=1366, B=738 (W=1366, H=738)
DBUG (19:38:37.427) : ------------------------------
DBUG (19:38:37.427) : * METHOD: EnumDisplayDevices + EnumDisplaySettings Mode
DBUG (19:38:37.428) : * MONITORS: Count=2, Primary=@1
DBUG (19:38:37.428) : @0: Virtual screen
DBUG (19:38:37.429) :   L=0, T=0, R=1366, B=768 (W=1366, H=768)
DBUG (19:38:37.429) : @1: \\.\DISPLAY1 (active), MonitorName: Generic PnP Monitor
DBUG (19:38:37.430) :   L=0, T=0, R=1366, B=768 (W=1366, H=768)
DBUG (19:38:37.431) : @2: \\.\DISPLAY2 (inactive), MonitorName: 
DBUG (19:38:37.431) : ------------------------------
DBUG (19:38:37.434) : ------------------------------
DBUG (19:38:37.434) : * NETWORK-INTERFACE: Count=67
DBUG (19:38:37.435) : 1: Bluetooth Device (RFCOMM Protocol TDI)
DBUG (19:38:37.436) :   Alias: Local Area Connection* 3
DBUG (19:38:37.437) :   Type=Other(1), Hardware=No, Filter=No
DBUG (19:38:37.437) : 2: VirtualBox Host-Only Ethernet Adapter-WFP Native MAC Layer LightWeight Filter-0000
DBUG (19:38:37.438) :   Alias: VirtualBox Host-Only Network-WFP Native MAC Layer LightWeight Filter-0000
DBUG (19:38:37.439) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.440) : 3: Npcap Loopback Adapter-WFP Native MAC Layer LightWeight Filter-0000
DBUG (19:38:37.440) :   Alias: Npcap Loopback Adapter-WFP Native MAC Layer LightWeight Filter-0000
DBUG (19:38:37.441) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.441) : 4: Realtek PCIe FE Family Controller-WFP Native MAC Layer LightWeight Filter-0000
DBUG (19:38:37.442) :   Alias: Ethernet-WFP Native MAC Layer LightWeight Filter-0000
DBUG (19:38:37.443) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.443) : 5: Bluetooth Device (Personal Area Network)-Npcap Packet Driver (NPCAP)-0000
DBUG (19:38:37.444) :   Alias: Bluetooth Network Connection-Npcap Packet Driver (NPCAP)-0000
DBUG (19:38:37.444) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.445) : 6: Realtek PCIe FE Family Controller-Npcap Packet Driver (NPCAP)-0000
DBUG (19:38:37.446) :   Alias: Ethernet-Npcap Packet Driver (NPCAP)-0000
DBUG (19:38:37.446) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.447) : 7: Realtek PCIe FE Family Controller-VirtualBox NDIS Light-Weight Filter-0000
DBUG (19:38:37.447) :   Alias: Ethernet-VirtualBox NDIS Light-Weight Filter-0000
DBUG (19:38:37.448) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.449) : 8: Realtek PCIe FE Family Controller-QoS Packet Scheduler-0000
DBUG (19:38:37.449) :   Alias: Ethernet-QoS Packet Scheduler-0000
DBUG (19:38:37.450) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.450) : 9: Realtek PCIe FE Family Controller-WFP 802.3 MAC Layer LightWeight Filter-0000
DBUG (19:38:37.451) :   Alias: Ethernet-WFP 802.3 MAC Layer LightWeight Filter-0000
DBUG (19:38:37.452) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.452) : 10: Npcap Loopback Adapter-Npcap Packet Driver (NPCAP)-0000
DBUG (19:38:37.453) :   Alias: Npcap Loopback Adapter-Npcap Packet Driver (NPCAP)-0000
DBUG (19:38:37.454) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.454) : 11: Npcap Loopback Adapter-VirtualBox NDIS Light-Weight Filter-0000
DBUG (19:38:37.455) :   Alias: Npcap Loopback Adapter-VirtualBox NDIS Light-Weight Filter-0000
DBUG (19:38:37.456) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.456) : 12: Npcap Loopback Adapter-QoS Packet Scheduler-0000
DBUG (19:38:37.457) :   Alias: Npcap Loopback Adapter-QoS Packet Scheduler-0000
DBUG (19:38:37.457) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.458) : 13: Npcap Loopback Adapter-WFP 802.3 MAC Layer LightWeight Filter-0000
DBUG (19:38:37.459) :   Alias: Npcap Loopback Adapter-WFP 802.3 MAC Layer LightWeight Filter-0000
DBUG (19:38:37.459) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.460) : 14: VirtualBox Host-Only Ethernet Adapter-Npcap Packet Driver (NPCAP)-0000
DBUG (19:38:37.461) :   Alias: VirtualBox Host-Only Network-Npcap Packet Driver (NPCAP)-0000
DBUG (19:38:37.461) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.462) : 15: VirtualBox Host-Only Ethernet Adapter-QoS Packet Scheduler-0000
DBUG (19:38:37.462) :   Alias: VirtualBox Host-Only Network-QoS Packet Scheduler-0000
DBUG (19:38:37.463) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.464) : 16: VirtualBox Host-Only Ethernet Adapter-WFP 802.3 MAC Layer LightWeight Filter-0000
DBUG (19:38:37.464) :   Alias: VirtualBox Host-Only Network-WFP 802.3 MAC Layer LightWeight Filter-0000
DBUG (19:38:37.465) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.465) : 17: WAN Miniport (IP)-WFP Native MAC Layer LightWeight Filter-0000
DBUG (19:38:37.466) :   Alias: Local Area Connection* 9-WFP Native MAC Layer LightWeight Filter-0000
DBUG (19:38:37.467) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.467) : 18: WAN Miniport (IP)-Npcap Packet Driver (NPCAP)-0000
DBUG (19:38:37.468) :   Alias: Local Area Connection* 9-Npcap Packet Driver (NPCAP)-0000
DBUG (19:38:37.469) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.469) : 19: WAN Miniport (IP)-QoS Packet Scheduler-0000
DBUG (19:38:37.470) :   Alias: Local Area Connection* 9-QoS Packet Scheduler-0000
DBUG (19:38:37.471) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.472) : 20: WAN Miniport (IPv6)-WFP Native MAC Layer LightWeight Filter-0000
DBUG (19:38:37.472) :   Alias: Local Area Connection* 10-WFP Native MAC Layer LightWeight Filter-0000
DBUG (19:38:37.473) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.474) : 21: WAN Miniport (IPv6)-Npcap Packet Driver (NPCAP)-0000
DBUG (19:38:37.474) :   Alias: Local Area Connection* 10-Npcap Packet Driver (NPCAP)-0000
DBUG (19:38:37.475) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.476) : 22: WAN Miniport (IPv6)-QoS Packet Scheduler-0000
DBUG (19:38:37.476) :   Alias: Local Area Connection* 10-QoS Packet Scheduler-0000
DBUG (19:38:37.477) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.478) : 23: WAN Miniport (Network Monitor)-WFP Native MAC Layer LightWeight Filter-0000
DBUG (19:38:37.478) :   Alias: Local Area Connection* 11-WFP Native MAC Layer LightWeight Filter-0000
DBUG (19:38:37.479) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.479) : 24: WAN Miniport (Network Monitor)-Npcap Packet Driver (NPCAP)-0000
DBUG (19:38:37.480) :   Alias: Local Area Connection* 11-Npcap Packet Driver (NPCAP)-0000
DBUG (19:38:37.481) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.481) : 25: WAN Miniport (Network Monitor)-QoS Packet Scheduler-0000
DBUG (19:38:37.482) :   Alias: Local Area Connection* 11-QoS Packet Scheduler-0000
DBUG (19:38:37.482) :   Type=Ethernet(6), Hardware=No, Filter=Yes
DBUG (19:38:37.483) : 26: Microsoft Kernel Debug Network Adapter
DBUG (19:38:37.484) :   Alias: Ethernet (Kernel Debugger)
DBUG (19:38:37.484) :   Type=Ethernet(6), Hardware=No, Filter=No
DBUG (19:38:37.485) : 27: Realtek PCIe FE Family Controller
DBUG (19:38:37.485) :   Alias: Ethernet
DBUG (19:38:37.486) :   Type=Ethernet(6), Hardware=Yes, Filter=No
DBUG (19:38:37.487) : 28: Bluetooth Device (Personal Area Network)
DBUG (19:38:37.487) :   Alias: Bluetooth Network Connection
DBUG (19:38:37.488) :   Type=Ethernet(6), Hardware=No, Filter=No
DBUG (19:38:37.489) : 29: WAN Miniport (IP)
DBUG (19:38:37.489) :   Alias: Local Area Connection* 9
DBUG (19:38:37.490) :   Type=Ethernet(6), Hardware=No, Filter=No
DBUG (19:38:37.491) : 30: WAN Miniport (IPv6)
DBUG (19:38:37.491) :   Alias: Local Area Connection* 10
DBUG (19:38:37.492) :   Type=Ethernet(6), Hardware=No, Filter=No
DBUG (19:38:37.493) : 31: WAN Miniport (Network Monitor)
DBUG (19:38:37.493) :   Alias: Local Area Connection* 11
DBUG (19:38:37.494) :   Type=Ethernet(6), Hardware=No, Filter=No
DBUG (19:38:37.494) : 32: VirtualBox Host-Only Ethernet Adapter
DBUG (19:38:37.495) :   Alias: VirtualBox Host-Only Network
DBUG (19:38:37.496) :   Type=Ethernet(6), Hardware=No, Filter=No
DBUG (19:38:37.496) : 33: Npcap Loopback Adapter
DBUG (19:38:37.497) :   Alias: Npcap Loopback Adapter
DBUG (19:38:37.497) :   Type=Ethernet(6), Hardware=Yes, Filter=No
DBUG (19:38:37.498) : 34: WAN Miniport (PPPOE)
DBUG (19:38:37.499) :   Alias: Local Area Connection* 8
DBUG (19:38:37.499) :   Type=PPP(23), Hardware=No, Filter=No
DBUG (19:38:37.500) : 35: Software Loopback Interface 1
DBUG (19:38:37.501) :   Alias: Loopback Pseudo-Interface 1
DBUG (19:38:37.501) :   Type=Loopback(24), Hardware=No, Filter=No
DBUG (19:38:37.502) : 36: Realtek RTL8723AE Wireless LAN 802.11n PCI-E NIC-WFP Native MAC Layer LightWeight Filter-0000
DBUG (19:38:37.503) :   Alias: Wi-Fi-WFP Native MAC Layer LightWeight Filter-0000
DBUG (19:38:37.503) :   Type=IEEE802.11(71), Hardware=No, Filter=Yes
DBUG (19:38:37.504) : 37: Realtek RTL8723AE Wireless LAN 802.11n PCI-E NIC-Npcap Packet Driver (NPCAP) (WiFi version)-0000
DBUG (19:38:37.505) :   Alias: Wi-Fi-Npcap Packet Driver (NPCAP) (WiFi version)-0000
DBUG (19:38:37.506) :   Type=IEEE802.11(71), Hardware=No, Filter=Yes
DBUG (19:38:37.506) : 38: Realtek RTL8723AE Wireless LAN 802.11n PCI-E NIC-Virtual WiFi Filter Driver-0000
DBUG (19:38:37.507) :   Alias: Wi-Fi-Virtual WiFi Filter Driver-0000
DBUG (19:38:37.507) :   Type=IEEE802.11(71), Hardware=No, Filter=Yes
DBUG (19:38:37.508) : 39: Realtek RTL8723AE Wireless LAN 802.11n PCI-E NIC-Native WiFi Filter Driver-0000
DBUG (19:38:37.509) :   Alias: Wi-Fi-Native WiFi Filter Driver-0000
DBUG (19:38:37.509) :   Type=IEEE802.11(71), Hardware=No, Filter=Yes
DBUG (19:38:37.510) : 40: Realtek RTL8723AE Wireless LAN 802.11n PCI-E NIC-Npcap Packet Driver (NPCAP)-0000
DBUG (19:38:37.510) :   Alias: Wi-Fi-Npcap Packet Driver (NPCAP)-0000
DBUG (19:38:37.511) :   Type=IEEE802.11(71), Hardware=No, Filter=Yes
DBUG (19:38:37.512) : 41: Realtek RTL8723AE Wireless LAN 802.11n PCI-E NIC-VirtualBox NDIS Light-Weight Filter-0000
DBUG (19:38:37.512) :   Alias: Wi-Fi-VirtualBox NDIS Light-Weight Filter-0000
DBUG (19:38:37.513) :   Type=IEEE802.11(71), Hardware=No, Filter=Yes
DBUG (19:38:37.513) : 42: Realtek RTL8723AE Wireless LAN 802.11n PCI-E NIC-QoS Packet Scheduler-0000
DBUG (19:38:37.514) :   Alias: Wi-Fi-QoS Packet Scheduler-0000
DBUG (19:38:37.515) :   Type=IEEE802.11(71), Hardware=No, Filter=Yes
DBUG (19:38:37.515) : 43: Realtek RTL8723AE Wireless LAN 802.11n PCI-E NIC-WFP 802.3 MAC Layer LightWeight Filter-0000
DBUG (19:38:37.516) :   Alias: Wi-Fi-WFP 802.3 MAC Layer LightWeight Filter-0000
DBUG (19:38:37.517) :   Type=IEEE802.11(71), Hardware=No, Filter=Yes
DBUG (19:38:37.517) : 44: Microsoft Wi-Fi Direct Virtual Adapter-WFP Native MAC Layer LightWeight Filter-0000
DBUG (19:38:37.518) :   Alias: Local Area Connection* 1-WFP Native MAC Layer LightWeight Filter-0000
DBUG (19:38:37.519) :   Type=IEEE802.11(71), Hardware=No, Filter=Yes
DBUG (19:38:37.519) : 45: Microsoft Wi-Fi Direct Virtual Adapter-Npcap Packet Driver (NPCAP) (WiFi version)-0000
DBUG (19:38:37.520) :   Alias: Local Area Connection* 1-Npcap Packet Driver (NPCAP) (WiFi version)-0000
DBUG (19:38:37.520) :   Type=IEEE802.11(71), Hardware=No, Filter=Yes
DBUG (19:38:37.521) : 46: Microsoft Wi-Fi Direct Virtual Adapter-Native WiFi Filter Driver-0000
DBUG (19:38:37.522) :   Alias: Local Area Connection* 1-Native WiFi Filter Driver-0000
DBUG (19:38:37.522) :   Type=IEEE802.11(71), Hardware=No, Filter=Yes
DBUG (19:38:37.523) : 47: Microsoft Wi-Fi Direct Virtual Adapter-Npcap Packet Driver (NPCAP)-0000
DBUG (19:38:37.524) :   Alias: Local Area Connection* 1-Npcap Packet Driver (NPCAP)-0000
DBUG (19:38:37.524) :   Type=IEEE802.11(71), Hardware=No, Filter=Yes
DBUG (19:38:37.525) : 48: Microsoft Wi-Fi Direct Virtual Adapter-VirtualBox NDIS Light-Weight Filter-0000
DBUG (19:38:37.526) :   Alias: Local Area Connection* 1-VirtualBox NDIS Light-Weight Filter-0000
DBUG (19:38:37.526) :   Type=IEEE802.11(71), Hardware=No, Filter=Yes
DBUG (19:38:37.527) : 49: Microsoft Wi-Fi Direct Virtual Adapter-QoS Packet Scheduler-0000
DBUG (19:38:37.527) :   Alias: Local Area Connection* 1-QoS Packet Scheduler-0000
DBUG (19:38:37.528) :   Type=IEEE802.11(71), Hardware=No, Filter=Yes
DBUG (19:38:37.528) : 50: Microsoft Wi-Fi Direct Virtual Adapter-WFP 802.3 MAC Layer LightWeight Filter-0000
DBUG (19:38:37.529) :   Alias: Local Area Connection* 1-WFP 802.3 MAC Layer LightWeight Filter-0000
DBUG (19:38:37.530) :   Type=IEEE802.11(71), Hardware=No, Filter=Yes
DBUG (19:38:37.531) : 51: Microsoft Wi-Fi Direct Virtual Adapter #2-WFP Native MAC Layer LightWeight Filter-0000
DBUG (19:38:37.531) :   Alias: Local Area Connection* 2-WFP Native MAC Layer LightWeight Filter-0000
DBUG (19:38:37.532) :   Type=IEEE802.11(71), Hardware=No, Filter=Yes
DBUG (19:38:37.533) : 52: Microsoft Wi-Fi Direct Virtual Adapter #2-Npcap Packet Driver (NPCAP) (WiFi version)-0000
DBUG (19:38:37.533) :   Alias: Local Area Connection* 2-Npcap Packet Driver (NPCAP) (WiFi version)-0000
DBUG (19:38:37.534) :   Type=IEEE802.11(71), Hardware=No, Filter=Yes
DBUG (19:38:37.535) : 53: Microsoft Wi-Fi Direct Virtual Adapter #2-Native WiFi Filter Driver-0000
DBUG (19:38:37.535) :   Alias: Local Area Connection* 2-Native WiFi Filter Driver-0000
DBUG (19:38:37.536) :   Type=IEEE802.11(71), Hardware=No, Filter=Yes
DBUG (19:38:37.536) : 54: Microsoft Wi-Fi Direct Virtual Adapter #2-Npcap Packet Driver (NPCAP)-0000
DBUG (19:38:37.537) :   Alias: Local Area Connection* 2-Npcap Packet Driver (NPCAP)-0000
DBUG (19:38:37.538) :   Type=IEEE802.11(71), Hardware=No, Filter=Yes
DBUG (19:38:37.539) : 55: Microsoft Wi-Fi Direct Virtual Adapter #2-VirtualBox NDIS Light-Weight Filter-0000
DBUG (19:38:37.539) :   Alias: Local Area Connection* 2-VirtualBox NDIS Light-Weight Filter-0000
DBUG (19:38:37.540) :   Type=IEEE802.11(71), Hardware=No, Filter=Yes
DBUG (19:38:37.541) : 56: Microsoft Wi-Fi Direct Virtual Adapter #2-QoS Packet Scheduler-0000
DBUG (19:38:37.541) :   Alias: Local Area Connection* 2-QoS Packet Scheduler-0000
DBUG (19:38:37.542) :   Type=IEEE802.11(71), Hardware=No, Filter=Yes
DBUG (19:38:37.543) : 57: Microsoft Wi-Fi Direct Virtual Adapter #2-WFP 802.3 MAC Layer LightWeight Filter-0000
DBUG (19:38:37.543) :   Alias: Local Area Connection* 2-WFP 802.3 MAC Layer LightWeight Filter-0000
DBUG (19:38:37.544) :   Type=IEEE802.11(71), Hardware=No, Filter=Yes
DBUG (19:38:37.545) : 58: Realtek RTL8723AE Wireless LAN 802.11n PCI-E NIC
DBUG (19:38:37.545) :   Alias: Wi-Fi
DBUG (19:38:37.546) :   Type=IEEE802.11(71), Hardware=Yes, Filter=No
DBUG (19:38:37.547) : 59: Microsoft Wi-Fi Direct Virtual Adapter
DBUG (19:38:37.547) :   Alias: Local Area Connection* 1
DBUG (19:38:37.548) :   Type=IEEE802.11(71), Hardware=No, Filter=No
DBUG (19:38:37.549) : 60: Microsoft Wi-Fi Direct Virtual Adapter #2
DBUG (19:38:37.550) :   Alias: Local Area Connection* 2
DBUG (19:38:37.551) :   Type=IEEE802.11(71), Hardware=No, Filter=No
DBUG (19:38:37.551) : 61: Microsoft Teredo Tunneling Adapter
DBUG (19:38:37.552) :   Alias: Teredo Tunneling Pseudo-Interface
DBUG (19:38:37.553) :   Type=Tunnel(131), Hardware=No, Filter=No
DBUG (19:38:37.553) : 62: Microsoft IP-HTTPS Platform Adapter
DBUG (19:38:37.554) :   Alias: Microsoft IP-HTTPS Platform Interface
DBUG (19:38:37.555) :   Type=Tunnel(131), Hardware=No, Filter=No
DBUG (19:38:37.555) : 63: Microsoft 6to4 Adapter
DBUG (19:38:37.556) :   Alias: 6to4 Adapter
DBUG (19:38:37.557) :   Type=Tunnel(131), Hardware=No, Filter=No
DBUG (19:38:37.558) : 64: WAN Miniport (SSTP)
DBUG (19:38:37.558) :   Alias: Local Area Connection* 4
DBUG (19:38:37.559) :   Type=Tunnel(131), Hardware=No, Filter=No
DBUG (19:38:37.560) : 65: WAN Miniport (IKEv2)
DBUG (19:38:37.560) :   Alias: Local Area Connection* 5
DBUG (19:38:37.561) :   Type=Tunnel(131), Hardware=No, Filter=No
DBUG (19:38:37.562) : 66: WAN Miniport (L2TP)
DBUG (19:38:37.562) :   Alias: Local Area Connection* 6
DBUG (19:38:37.563) :   Type=Tunnel(131), Hardware=No, Filter=No
DBUG (19:38:37.564) : 67: WAN Miniport (PPTP)
DBUG (19:38:37.565) :   Alias: Local Area Connection* 7
DBUG (19:38:37.565) :   Type=Tunnel(131), Hardware=No, Filter=No
DBUG (19:38:37.566) : ------------------------------
DBUG (19:38:37.567) : ------------------------------
DBUG (19:38:37.567) : * Font families:
DBUG (19:38:37.574) : Adobe Arabic, Adobe Caslon Pro, Adobe Caslon Pro Bold, Adobe Devanagari, Adobe Fan Heiti Std B, Adobe Fangsong Std R, Adobe Garamond Pro, Adobe Garamond Pro Bold, Adobe Gothic Std B, Adobe Hebrew, Adobe Heiti Std R, Adobe Kaiti Std R, Adobe Ming Std L, Adobe Myungjo Std M, Adobe Naskh Medium, Adobe Song Std L, Algerian, Arial, Arial Black, Arial Narrow, Arial Narrow Special G1, Arial Narrow Special G2, Arial Special G1, Arial Special G2, Bahnschrift, Bahnschrift Condensed, Bahnschrift Light, Bahnschrift Light Condensed, Bahnschrift Light SemiCondensed, Bahnschrift SemiBold, Bahnschrift SemiBold Condensed, Bahnschrift SemiCondensed, Bahnschrift SemiLight, Bahnschrift SemiLight Condensed, Baskerville Old Face, Bauhaus 93, Bell MT, Berlin Sans FB, Berlin Sans FB Demi, Bernard MT Condensed, Birch Std, Blackoak Std, Bodoni MT Poster Compressed, Bolt Bd BT, Book Antiqua, Bookman Old Style, Bookshelf Symbol 7, Britannic Bold, Broadway, Brush Script MT, Brush Script Std, Calibri, Calibri Light, Californian FB, Cambria, Cambria Math, Candara, Centaur, Century, Century Gothic, Chaparral Pro, Chaparral Pro Light, Charlemagne Std, Chiller, Colonna MT, Comic Sans MS, Consolas, Constantia, Cooper Black, Cooper Std Black, Corbel, Courier New, Digital Readout ExpUpright, Ebrima, Footlight MT Light, Franklin Gothic Medium, Franklin Gothic Medium Cond, Freestyle Script, Gabriola, Gadugi, Garamond, Georgia, Georgia Ref, Giddyup Std, Haettenschweiler, HandelGotDLig, Harlow Solid Italic, Harrington, High Tower Text, Hobo Std, HoloLens MDL2 Assets, Impact, Informal Roman, Ink Free, Javanese Text, Jokerman, Juice ITC, Kozuka Gothic Pr6N B, Kozuka Gothic Pr6N EL, Kozuka Gothic Pr6N H, Kozuka Gothic Pr6N L, Kozuka Gothic Pr6N M, Kozuka Gothic Pr6N R, Kozuka Gothic Pro B, Kozuka Gothic Pro EL, Kozuka Gothic Pro H, Kozuka Gothic Pro L, Kozuka Gothic Pro M, Kozuka Gothic Pro R, Kozuka Mincho Pr6N B, Kozuka Mincho Pr6N EL, Kozuka Mincho Pr6N H, Kozuka Mincho Pr6N L, Kozuka Mincho Pr6N M, Kozuka Mincho Pr6N R, Kozuka Mincho Pro B, Kozuka Mincho Pro EL, Kozuka Mincho Pro H, Kozuka Mincho Pro L, Kozuka Mincho Pro M, Kozuka Mincho Pro R, Kristen ITC, Kunstler Script, LcdD, Leelawadee, Leelawadee UI, Leelawadee UI Semilight, Letter Gothic Std, Liberation Mono, Liberation Sans, Liberation Serif, Lithos Pro Regular, Lucida Bright, Lucida Calligraphy, Lucida Console, Lucida Fax, Lucida Handwriting, Lucida Sans Unicode, Magneto, Malgun Gothic, Malgun Gothic Semilight, Marlett, Matura MT Script Capitals, Mesquite Std, Microsoft Himalaya, Microsoft JhengHei, Microsoft JhengHei Light, Microsoft JhengHei UI, Microsoft JhengHei UI Light, Microsoft New Tai Lue, Microsoft PhagsPa, Microsoft Sans Serif, Microsoft Tai Le, Microsoft Uighur, Microsoft YaHei, Microsoft YaHei Light, Microsoft YaHei UI, Microsoft YaHei UI Light, Microsoft Yi Baiti, MingLiU-ExtB, MingLiU_HKSCS-ExtB, Minion Pro, Minion Pro Cond, Minion Pro Med, Minion Pro SmBd, Mistral, Modern No. 20, Mongolian Baiti, Monotype Corsiva, MS Gothic, MS Outlook, MS PGothic, MS Reference 1, MS Reference 2, MS Reference Sans Serif, MS Reference Serif, MS Reference Specialty, MS UI Gothic, MT Extra, MV Boli, Myanmar Text, Myriad Arabic, Myriad Hebrew, Myriad Pro, Myriad Pro Cond, Myriad Pro Light, Niagara Engraved, Niagara Solid, Nirmala UI, Nirmala UI Semilight, NSimSun, Nueva Std, Nueva Std Cond, OCR A Std, Old English Text MT, Onyx, Orator Std, Palatino Linotype, Parchment, Playbill, PMingLiU-ExtB, Poor Richard, Poplar Std, Prestige Elite Std, Ravie, RefSpecialty, Rosewood Std Regular, Segoe MDL2 Assets, Segoe Print, Segoe Script, Segoe UI, Segoe UI Black, Segoe UI Emoji, Segoe UI Historic, Segoe UI Light, Segoe UI Semibold, Segoe UI Semilight, Segoe UI Symbol, SF Digital Readout, Showcard Gothic, SimSun, SimSun-ExtB, Sitka Banner, Sitka Display, Sitka Heading, Sitka Small, Sitka Subheading, Sitka Text, Snap ITC, Stencil, Stencil Std, Sylfaen, Symbol, Tahoma, TeamViewer14, Tekton Pro, Tekton Pro Cond, Tekton Pro Ext, Tempus Sans ITC, Times New Roman, Times New Roman Special G1, Times New Roman Special G2, Trajan Pro, Trebuchet MS, Unispace, Verdana, Verdana Ref, Viner Hand ITC, Vivaldi, Vladimir Script, Webdings, Wide Latin, Wingdings, Wingdings 2, Wingdings 3, Yu Gothic, Yu Gothic Light, Yu Gothic Medium, Yu Gothic UI, Yu Gothic UI Light, Yu Gothic UI Semibold, Yu Gothic UI Semilight
DBUG (19:38:37.575) : ------------------------------
DBUG (19:38:37.584) : Reading file: C:\Users\Zedd\AppData\Roaming\Rainmeter\Rainmeter.ini
NOTE (19:38:37.610) : ConfigEditor: C:\Windows\system32\NOTEPAD.EXE
DBUG (19:38:37.611) : Reading file: C:\Users\Zedd\AppData\Roaming\Rainmeter\Rainmeter.stats
NOTE (19:38:37.617) MYiniMeter\Processes\Processes.ini: Refreshing skin
DBUG (19:38:37.618) : Reading file: C:\Users\Zedd\AppData\Roaming\Rainmeter\Rainmeter.ini
DBUG (19:38:37.619) MYiniMeter\Processes\Processes.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\Processes\Processes.ini
DBUG (19:38:37.620) MYiniMeter\Processes\Processes.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Variables.inc
DBUG (19:38:37.622) MYiniMeter\Processes\Processes.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Rainmeter.inc
DBUG (19:38:37.623) MYiniMeter\Processes\Processes.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Styles.inc
DBUG (19:38:37.628) MYiniMeter\Processes\Processes.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Design.inc
NOTE (19:38:37.759) MYiniMeter\Processor\Processor.ini: Refreshing skin
DBUG (19:38:37.760) : Reading file: C:\Users\Zedd\AppData\Roaming\Rainmeter\Rainmeter.ini
DBUG (19:38:37.761) MYiniMeter\Processor\Processor.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\Processor\Processor.ini
DBUG (19:38:37.763) MYiniMeter\Processor\Processor.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Variables.inc
DBUG (19:38:37.764) MYiniMeter\Processor\Processor.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Rainmeter.inc
DBUG (19:38:37.766) MYiniMeter\Processor\Processor.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Styles.inc
DBUG (19:38:37.794) MYiniMeter\Processor\Processor.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Design.inc
NOTE (19:38:37.828) MYiniMeter\Memory\Memory.ini: Refreshing skin
DBUG (19:38:37.829) : Reading file: C:\Users\Zedd\AppData\Roaming\Rainmeter\Rainmeter.ini
DBUG (19:38:37.830) MYiniMeter\Memory\Memory.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\Memory\Memory.ini
DBUG (19:38:37.832) MYiniMeter\Memory\Memory.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Variables.inc
DBUG (19:38:37.833) MYiniMeter\Memory\Memory.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Rainmeter.inc
DBUG (19:38:37.835) MYiniMeter\Memory\Memory.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Styles.inc
DBUG (19:38:37.844) MYiniMeter\Memory\Memory.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Design.inc
NOTE (19:38:37.874) MYiniMeter\Video\Video.ini: Refreshing skin
DBUG (19:38:37.875) : Reading file: C:\Users\Zedd\AppData\Roaming\Rainmeter\Rainmeter.ini
DBUG (19:38:37.876) MYiniMeter\Video\Video.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\Video\Video.ini
DBUG (19:38:37.877) MYiniMeter\Video\Video.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Variables.inc
DBUG (19:38:37.879) MYiniMeter\Video\Video.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Rainmeter.inc
DBUG (19:38:37.880) MYiniMeter\Video\Video.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Styles.inc
DBUG (19:38:37.890) MYiniMeter\Video\Video.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Design.inc
NOTE (19:38:37.916) MYiniMeter\Network\Network.ini: Refreshing skin
DBUG (19:38:37.917) : Reading file: C:\Users\Zedd\AppData\Roaming\Rainmeter\Rainmeter.ini
DBUG (19:38:37.918) MYiniMeter\Network\Network.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\Network\Network.ini
DBUG (19:38:37.919) MYiniMeter\Network\Network.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Variables.inc
DBUG (19:38:37.921) MYiniMeter\Network\Network.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Rainmeter.inc
DBUG (19:38:37.922) MYiniMeter\Network\Network.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Styles.inc
DBUG (19:38:37.928) MYiniMeter\Network\Network.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Design.inc
DBUG (19:38:37.939) : ProxyServer="/auto" (type=PRECONFIG, handle=0x0000000000CC0004) UserAgent=Rainmeter WebParser plugin
DBUG (19:38:37.968) MYiniMeter\Network\Network.ini - [MS_WebParser_EXTIP]: Fetching: https://ident.me/.json
NOTE (19:38:37.982) MYiniMeter\Feeds\Feeds.ini: Refreshing skin
DBUG (19:38:37.983) : Reading file: C:\Users\Zedd\AppData\Roaming\Rainmeter\Rainmeter.ini
DBUG (19:38:37.985) MYiniMeter\Feeds\Feeds.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\Feeds\Feeds.ini
DBUG (19:38:37.988) MYiniMeter\Feeds\Feeds.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Variables.inc
DBUG (19:38:37.992) MYiniMeter\Feeds\Feeds.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Rainmeter.inc
DBUG (19:38:37.995) MYiniMeter\Feeds\Feeds.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Styles.inc
DBUG (19:38:38.011) MYiniMeter\Feeds\Feeds.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Design.inc
DBUG (19:38:38.054) MYiniMeter\Feeds\Feeds.ini - [MS_WebParser_Feeds]: Fetching: http://rss.cnn.com/rss/edition.rss
DBUG (19:38:38.069) MYiniMeter\Feeds\Feeds.ini - [MS_WebParser_VisitedLinks]: Fetching: file://C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Visited Links - Feeds.inc
NOTE (19:38:38.078) MYiniMeter\Toggler\Toggler.ini: Refreshing skin
DBUG (19:38:38.079) : Reading file: C:\Users\Zedd\AppData\Roaming\Rainmeter\Rainmeter.ini
DBUG (19:38:38.080) MYiniMeter\Toggler\Toggler.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\Toggler\Toggler.ini
DBUG (19:38:38.082) MYiniMeter\Toggler\Toggler.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Variables.inc
DBUG (19:38:38.083) MYiniMeter\Toggler\Toggler.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Rainmeter.inc
DBUG (19:38:38.084) MYiniMeter\Toggler\Toggler.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Styles.inc
DBUG (19:38:38.088) MYiniMeter\Toggler\Toggler.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Design - Toggler.inc
NOTE (19:38:38.103) MYiniMeter\Clock\Clock.ini: Refreshing skin
DBUG (19:38:38.104) : Reading file: C:\Users\Zedd\AppData\Roaming\Rainmeter\Rainmeter.ini
DBUG (19:38:38.106) MYiniMeter\Clock\Clock.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\Clock\Clock.ini
DBUG (19:38:38.107) MYiniMeter\Clock\Clock.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Variables.inc
DBUG (19:38:38.108) MYiniMeter\Clock\Clock.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Rainmeter.inc
DBUG (19:38:38.109) MYiniMeter\Clock\Clock.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Styles.inc
DBUG (19:38:38.120) MYiniMeter\Clock\Clock.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\MYiniMeter\@Resources\Design.inc
NOTE (19:38:38.165) Marquee\Marquee.ini: Refreshing skin
DBUG (19:38:38.166) : Reading file: C:\Users\Zedd\AppData\Roaming\Rainmeter\Rainmeter.ini
DBUG (19:38:38.168) Marquee\Marquee.ini: Reading file: C:\Users\Zedd\Documents\Rainmeter\Skins\Marquee\Marquee.ini
NOTE (19:38:38.181) MYiniMeter\Feeds\Feeds.ini: Successfully parsed feed 1: http://rss.cnn.com/rss/edition.rss
DBUG (19:38:38.316) MYiniMeter\Feeds\Feeds.ini - [MS_WebParser_Feeds]: Fetching: http://rss.realitatea.net/stiri.xml
NOTE (19:38:38.399) MYiniMeter\Feeds\Feeds.ini: Successfully parsed feed 2: http://rss.realitatea.net/stiri.xml
DBUG (19:38:39.726) MYiniMeter\Feeds\Feeds.ini - [MS_WebParser_Feeds]: Fetching: http://feeds.feedburner.com/descopera/iIyY?format=xml
NOTE (19:38:39.920) MYiniMeter\Feeds\Feeds.ini: Successfully parsed feed 3: http://feeds.feedburner.com/descopera/iIyY?format=xml
DBUG (19:38:40.062) MYiniMeter\Feeds\Feeds.ini - [MS_WebParser_Feeds]: Fetching: http://www.goal.com/en/feeds/news?fmt=rss&ICID=OP
NOTE (19:38:40.239) MYiniMeter\Feeds\Feeds.ini: Successfully parsed feed 4: http://www.goal.com/en/feeds/news?fmt=rss&ICID=OP
DBUG (19:38:40.307) MYiniMeter\Feeds\Feeds.ini - [MS_WebParser_Feeds]: Fetching: http://estaticos.marca.com/rss/en/index.xml
NOTE (19:38:40.354) MYiniMeter\Feeds\Feeds.ini: Successfully parsed feed 5: http://estaticos.marca.com/rss/en/index.xml
DBUG (19:38:40.552) MYiniMeter\Feeds\Feeds.ini - [MS_WebParser_Feeds]: Fetching: http://www.sport.ro/rss
NOTE (19:38:40.901) MYiniMeter\Feeds\Feeds.ini: Successfully parsed feed 6: http://www.sport.ro/rss
DBUG (19:43:40.989) MYiniMeter\Network\Network.ini - [MS_WebParser_EXTIP]: Fetching: https://ident.me/.json
DBUG (19:48:43.992) MYiniMeter\Network\Network.ini - [MS_WebParser_EXTIP]: Fetching: https://ident.me/.json
DBUG (19:53:47.069) MYiniMeter\Network\Network.ini - [MS_WebParser_EXTIP]: Fetching: https://ident.me/.json
DBUG (19:58:47.200) MYiniMeter\Network\Network.ini - [MS_WebParser_EXTIP]: Fetching: https://ident.me/.json
DBUG (20:03:47.290) MYiniMeter\Network\Network.ini - [MS_WebParser_EXTIP]: Fetching: https://ident.me/.json
Funny enough, it now runs for at least 25 minutes with no hang involved ... :confused: EDIT: Didn't last for long though. Same dead end. Goodbye, ActionTimer; welcome back, Rainmeter "proper".
Profiles: Rainmeter ProfileDeviantArt ProfileSuites: MYiniMeterSkins: Earth