-
Notifications
You must be signed in to change notification settings - Fork 7.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dmlap Merge Changes #1039
Dmlap Merge Changes #1039
Commits on Dec 4, 2013
-
Add a new grunt task to create a new release version. It can be run like this: grunt dist version:patch Running dist before the version task is required so the build artifacts are available. The task uses `npm version` to bump the package version, copies the new version into the bower file and then force commits the dist directory in one shot. If that's successful, the dist directory is deleted in another commit so that no one accidentally makes patches against those files.
Configuration menu - View commit details
-
Copy full SHA for cfb0f9b - Browse repository at this point
Copy the full SHA cfb0f9bView commit details
Commits on Dec 5, 2013
-
Break-up release task in smaller units
Create three smaller release tasks: check-for-changes, version, and commit-version. Add a roll-up task to execute them in the proper order. To create a minor release, you would run: grunt release --type=minor
Configuration menu - View commit details
-
Copy full SHA for 5b98213 - Browse repository at this point
Copy the full SHA 5b98213View commit details -
Update SWF to pull in pause fix
If pause was called on the SWF before the video started playing, it would be silently ignored. This new version ensures that does not happen.
Configuration menu - View commit details
-
Copy full SHA for f8996a5 - Browse repository at this point
Copy the full SHA f8996a5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8b9e800 - Browse repository at this point
Copy the full SHA 8b9e800View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1e46a19 - Browse repository at this point
Copy the full SHA 1e46a19View commit details -
Our .gitignore excludes the dist/ directory but we definitely want dist/ to be available for npm. Copied over the current .gitignore and removed the entry for dist.
Configuration menu - View commit details
-
Copy full SHA for dbdf211 - Browse repository at this point
Copy the full SHA dbdf211View commit details -
Configuration menu - View commit details
-
Copy full SHA for c680897 - Browse repository at this point
Copy the full SHA c680897View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3c64b9b - Browse repository at this point
Copy the full SHA 3c64b9bView commit details -
Fix capability detection for poster image
We were checking if `backgroundSize` was present on the video element, not the style property of the video element. That meant the IE fallback was being used on all platforms and breaks aspect-ratio preserving poster scaling for those browsers that support it.
Configuration menu - View commit details
-
Copy full SHA for 1c8e9d6 - Browse repository at this point
Copy the full SHA 1c8e9d6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 349e91c - Browse repository at this point
Copy the full SHA 349e91cView commit details -
Configuration menu - View commit details
-
Copy full SHA for b8819a0 - Browse repository at this point
Copy the full SHA b8819a0View commit details
Commits on Dec 29, 2013
-
Pick up fix for SWF buffered property
Use the netstream to determine buffered endpoint when duration is unavailable.
Configuration menu - View commit details
-
Copy full SHA for b63c83a - Browse repository at this point
Copy the full SHA b63c83aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 234ccc9 - Browse repository at this point
Copy the full SHA 234ccc9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1a7c164 - Browse repository at this point
Copy the full SHA 1a7c164View commit details
Commits on Jan 3, 2014
-
Update SWF to pick up HLS fixes
Buffered shouldn't break for non-data gen content. Video dimension events on the netstream should be handled appropriately.
Configuration menu - View commit details
-
Copy full SHA for 4275401 - Browse repository at this point
Copy the full SHA 4275401View commit details -
Configuration menu - View commit details
-
Copy full SHA for 90a2361 - Browse repository at this point
Copy the full SHA 90a2361View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9481586 - Browse repository at this point
Copy the full SHA 9481586View commit details
Commits on Jan 20, 2014
-
Pick up swf fixes for playhead position after seeking
When the netstream is in data generation mode, buffering must take the last seek into account.
Configuration menu - View commit details
-
Copy full SHA for 59905b8 - Browse repository at this point
Copy the full SHA 59905b8View commit details -
Configuration menu - View commit details
-
Copy full SHA for b60de19 - Browse repository at this point
Copy the full SHA b60de19View commit details -
Configuration menu - View commit details
-
Copy full SHA for 818602d - Browse repository at this point
Copy the full SHA 818602dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5eae7ae - Browse repository at this point
Copy the full SHA 5eae7aeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 65e17fa - Browse repository at this point
Copy the full SHA 65e17faView commit details
Commits on Jan 23, 2014
-
Store last seek time in the Flash tech
Instead of caching the last seek time at the player level, cache it in the Flash tech. The only place this value was used was in the progress controls when Flash was loaded, so this simplifies the logic in that component and pushes the hack down into a single location at least.
Configuration menu - View commit details
-
Copy full SHA for 1f0ae88 - Browse repository at this point
Copy the full SHA 1f0ae88View commit details -
Fix touch detection test on non-touch devices
TOUCH_ENABLED is false on non-touch devices which causes our minified API test to fail when opened in a browser on a traditional destktop machine. It worked fine through the command line because apparanetly phantomjs supports touch events (ha!). Check to make sure the property is not undefined instead.
Configuration menu - View commit details
-
Copy full SHA for 15120c8 - Browse repository at this point
Copy the full SHA 15120c8View commit details
Commits on Jan 24, 2014
-
Update SWF to pick up seeking cleanup
Consolidate stream start offset logic in HTTPVideoProvider
Configuration menu - View commit details
-
Copy full SHA for 04afaba - Browse repository at this point
Copy the full SHA 04afabaView commit details -
Configuration menu - View commit details
-
Copy full SHA for cfd17a9 - Browse repository at this point
Copy the full SHA cfd17a9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 621788e - Browse repository at this point
Copy the full SHA 621788eView commit details
Commits on Jan 26, 2014
-
src() called as a getter should return the video src
It can be handy that src() returns the player object when it is invoked but it does not match the behavior of the corresponding property on the video element. Ignoring the spec however, while the video element is running the resource selection algorithm, currentSrc may be undefined. If the video source has been specified through an attribute on the video element, src() is the natural way to expose that URL programmatically. Without this change, it's necessary to bypass the player and interact with the tech directly to determine the value of the src attribute.
Configuration menu - View commit details
-
Copy full SHA for 25bd62b - Browse repository at this point
Copy the full SHA 25bd62bView commit details
Commits on Jan 27, 2014
-
Seek behavior looks out of sync with the latest from vjs-swf. Updating to pick up changes.
Configuration menu - View commit details
-
Copy full SHA for ecb8502 - Browse repository at this point
Copy the full SHA ecb8502View commit details -
Configuration menu - View commit details
-
Copy full SHA for 486b4ed - Browse repository at this point
Copy the full SHA 486b4edView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3d6089f - Browse repository at this point
Copy the full SHA 3d6089fView commit details
Commits on Jan 28, 2014
-
Pick up addition of endOfStream function to allow media sources to signal when the underlying video data is finishing.
Configuration menu - View commit details
-
Copy full SHA for c183e67 - Browse repository at this point
Copy the full SHA c183e67View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4eb7db0 - Browse repository at this point
Copy the full SHA 4eb7db0View commit details
Commits on Feb 25, 2014
-
Configuration menu - View commit details
-
Copy full SHA for 9101a4f - Browse repository at this point
Copy the full SHA 9101a4fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 09e7f9a - Browse repository at this point
Copy the full SHA 09e7f9aView commit details