Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Change Log for Dash Player

All notable changes to `dash-player` will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/).

---

## [1.0.0] - 2022-10-20

This release is `v1.0.0` to indicate that `dash-player` is now considered production-ready.

### Added

- [#47](https://github.com/plotly/dash-player/pull/47) Add className property to `dash-player`
- [#49](https://github.com/plotly/dash-player/pull/49) Pass in the `id` property to ReactPlayer
- [#50](https://github.com/plotly/dash-player/pull/50) Add testing to the CI process

### Changed

- [#40](https://github.com/plotly/dash-player/pull/40) Updates dependencies in `packages.json`
- [#43](https://github.com/plotly/dash-player/pull/43) Remove the `extract-meta.js` file
- [#41](https://github.com/plotly/dash-player/pull/41) Add build instructions to `README.md`

### Fixed

- [#32](https://github.com/plotly/dash-player/pull/32) Fix errors and replace broken URLs in demo Python files
- [#48](https://github.com/plotly/dash-player/pull/48) Fix issue with `currentTime`, `secondsLoaded`, and `duration` not loading

---

## [0.0.1] - 2018-08-02

### Added

- [#1](https://github.com/plotly/dash-player/pull/1) Initial component release
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: dashPlayer
Title: Interactive Media Player Component for Dash

Version: 0.0.2
Version: 1.0.0
Description: Dash Player is a dash component for playing a variety of URLs, including file paths, YouTube, Facebook, Twitch, SoundCloud, Streamable, Vimeo, Wistia, Mixcloud, and DailyMotion. It is wrapped around the react-player component.

Depends: R (>= 3.0.2)
Expand Down
4 changes: 2 additions & 2 deletions R/internal.R
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
.dashPlayer_js_metadata <- function() {
deps_metadata <- list(`dash_player` = structure(list(name = "dash_player",
version = "0.0.2", src = list(href = NULL,
version = "1.0.0", src = list(href = NULL,
file = "deps"), meta = NULL,
script = 'dash_player.min.js',
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashPlayer",
all_files = FALSE), class = "html_dependency"),
`dash_player` = structure(list(name = "dash_player",
version = "0.0.2", src = list(href = NULL,
version = "1.0.0", src = list(href = NULL,
file = "deps"), meta = NULL,
script = 'dash_player.min.js.map',
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashPlayer",
Expand Down
2 changes: 1 addition & 1 deletion dash_player/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plotly/dash-player",
"version": "0.0.2",
"version": "1.0.0",
"description": "Dash player component for videos",
"repository": {
"type": "git",
Expand Down
118 changes: 53 additions & 65 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plotly/dash-player",
"version": "0.0.2",
"version": "1.0.0",
"description": "Dash player component for videos",
"repository": {
"type": "git",
Expand Down