Skip to content

Commit 873314e

Browse files
committed
Merge branch 'release-0.24'
2 parents e40ca05 + 7ea04e9 commit 873314e

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
spreed-webrtc-server (0.24.8) trusty; urgency=medium
2+
3+
* Avoid to scale up screen sharing when sharing not full screen.
4+
5+
-- Simon Eisenmann <[email protected]> Thu, 13 Aug 2015 16:21:22 +0200
6+
17
spreed-webrtc-server (0.24.7) trusty; urgency=medium
28

39
* Fixed a problem where Chrome did not apply screen sharing constraints correctly and screen sharing was using a low resolution.

static/js/mediastream/peerscreenshare.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ define(['jquery', 'underscore', 'mediastream/peercall', 'mediastream/tokens'], f
8080
var mandatoryVideoConstraints = $.extend(true, {}, {
8181
maxWidth: screenWidth,
8282
maxHeight: screenHeight,
83-
minWidth: screenWidth,
84-
minHeight: screenHeight
83+
minWidth: 1,
84+
minHeight: 1
8585
}, webrtc.settings.screensharing.mediaConstraints.video.mandatory, options);
8686
var mediaConstraints = $.extend(true, {}, webrtc.settings.screensharing.mediaConstraints, {
8787
audio: false

0 commit comments

Comments
 (0)