Skip to content

Commit 918c86e

Browse files
committed
Version 1.0.24
Includes PR: #258
1 parent a35c1ab commit 918c86e

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "webcamjs",
3-
"version": "1.0.23",
3+
"version": "1.0.24",
44
"homepage": "https://github.com/jhuckaby/webcamjs",
55
"authors": [
66
"Joseph Huckaby <[email protected]>"

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# Build Script for WebcamJS
44
# Install uglifyjs first: sudo npm install uglify-js -g
55

6-
uglifyjs webcam.js -o webcam.min.js --mangle --reserved "Webcam" --preamble "// WebcamJS v1.0.23 - http://github.com/jhuckaby/webcamjs - MIT Licensed"
6+
uglifyjs webcam.js -o webcam.min.js --mangle --reserved "Webcam" --preamble "// WebcamJS v1.0.24 - http://github.com/jhuckaby/webcamjs - MIT Licensed"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "webcamjs",
3-
"version": "1.0.23",
3+
"version": "1.0.24",
44
"description": "HTML5 Webcam Image Capture Library with Flash Fallback",
55
"author": "Joseph Huckaby <[email protected]>",
66
"homepage": "https://github.com/jhuckaby/webcamjs",

webcam.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// WebcamJS v1.0.23
1+
// WebcamJS v1.0.24
22
// Webcam library for capturing JPEG/PNG images in JavaScript
33
// Attempts getUserMedia, falls back to Flash
44
// Author: Joseph Huckaby: http://github.com/jhuckaby
@@ -34,7 +34,7 @@ FlashError.prototype = new IntermediateInheritor();
3434
WebcamError.prototype = new IntermediateInheritor();
3535

3636
var Webcam = {
37-
version: '1.0.23',
37+
version: '1.0.24',
3838

3939
// globals
4040
protocol: location.protocol.match(/https/i) ? 'https' : 'http',

webcam.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)