hashashin / OctoPrint-OpiTemp

Simple plugin to show Orange Pi (running armbian) SOC temperature in the navbar.
1 stars 2 forks source link

Lazy fix not working with kernel 6+ #14

Open kverkind opened 1 month ago

kverkind commented 1 month ago

Code: # lazy fix for #3, yeah I known... if platform.release().startswith("4") or platform.release().startswith("5"):

No additional info needed, Problem is very clear.

openSoftMan commented 4 weeks ago

+1 ...thanks for reporting, I thought I was the only one living on the Armbian "edge".

I did another "lazy fix in init.py"

New change: if platform.release().startswith("5") or platform.release().startswith("6"):

My lazy fix only supports kernel 5x and 6x. :-)

kverkind commented 3 weeks ago

Next thing is to create a new version in order to trigger update in octoprint officially. After implementing your small change