3 Commits
0.1.0 ... 0.1.1

Author SHA1 Message Date
b4fe916085 Merge branch 'develop' 2017-10-27 22:55:00 +02:00
030b270a33 Increased version to 0.1.1 2017-09-05 17:08:49 +02:00
251fa0f6d1 Update for OctoPrint 1.3.5 2017-09-05 17:07:02 +02:00
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ $(function() {
var currentSrc = webcamImage.attr("src");
// safari bug doesn't release the mjpeg stream, so we just set it up the once
if (self.control._isSafari() && currentSrc != undefined) {
if (OctoPrint.coreui.browser.safari && currentSrc != undefined) {
return;
}

View File

@ -6,7 +6,7 @@ from setuptools import setup
plugin_identifier = "webcamtab"
plugin_package = "octoprint_webcamtab"
plugin_name = "OctoPrint-WebcamTab"
plugin_version = "0.1.0"
plugin_version = "0.1.1"
plugin_description = """Show webcam stream in separate tab"""
plugin_author = "Sven Lohrmann"
plugin_author_email = "malnvenshorn@gmail.com"