thijsbekke / OctoPrint-Pushover

A Pushover plugin for OctoPrint
GNU General Public License v3.0
33 stars 21 forks source link

Octoprint 1.9.2 Image orientation #72

Open JasenKrueger opened 1 year ago

JasenKrueger commented 1 year ago

After updating Opctoprint to 1.9.2 my Pushover images are now upside down. I have a Raspberry Pi cam mounted upside down and used the invert buttons on Octoprint and the image has alway been fine until 1.9.2. Am I missing something? I have 0.3.8 installed.

Tailslide commented 1 year ago

Me too :/

Moxified commented 8 months ago

Had the same issue. I edited ~/oprint/lib/python3.7/site-packages/octoprint_pushover/init.py and changed:

            hflip = True #self._settings.global_get(["webcam", "flipH"])
            vflip = True #self._settings.global_get(["webcam", "flipV"])

Seems as though with the new webcam method, the flip settings are no longer there. I basically hard coded the variables to True. Didn't work until I restarted octoprint.

Seems this project is dead so you can fork or just manually edit your files like I did.