Skip to content

Commit

Permalink
Merge branch 'release-0.24'
Browse files Browse the repository at this point in the history
  • Loading branch information
longsleep committed Aug 13, 2015
2 parents e40ca05 + 7ea04e9 commit 873314e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
spreed-webrtc-server (0.24.8) trusty; urgency=medium

* Avoid to scale up screen sharing when sharing not full screen.

-- Simon Eisenmann <[email protected]> Thu, 13 Aug 2015 16:21:22 +0200

spreed-webrtc-server (0.24.7) trusty; urgency=medium

* Fixed a problem where Chrome did not apply screen sharing constraints correctly and screen sharing was using a low resolution.
Expand Down
4 changes: 2 additions & 2 deletions static/js/mediastream/peerscreenshare.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ define(['jquery', 'underscore', 'mediastream/peercall', 'mediastream/tokens'], f
var mandatoryVideoConstraints = $.extend(true, {}, {
maxWidth: screenWidth,
maxHeight: screenHeight,
minWidth: screenWidth,
minHeight: screenHeight
minWidth: 1,
minHeight: 1
}, webrtc.settings.screensharing.mediaConstraints.video.mandatory, options);
var mediaConstraints = $.extend(true, {}, webrtc.settings.screensharing.mediaConstraints, {
audio: false
Expand Down

0 comments on commit 873314e

Please sign in to comment.