Skip to content

Commit ba46bbb

Browse files
authored
Merge pull request #51 from plotly/release-1.0.0
Release 1.0.0
2 parents 8a73dc4 + daa1213 commit ba46bbb

File tree

6 files changed

+93
-70
lines changed

6 files changed

+93
-70
lines changed

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Change Log for Dash Player
2+
3+
All notable changes to `dash-player` will be documented in this file.
4+
This project adheres to [Semantic Versioning](https://semver.org/).
5+
6+
---
7+
8+
## [1.0.0] - 2022-10-20
9+
10+
This release is `v1.0.0` to indicate that `dash-player` is now considered production-ready.
11+
12+
### Added
13+
14+
- [#47](https://github.com/plotly/dash-player/pull/47) Add className property to `dash-player`
15+
- [#49](https://github.com/plotly/dash-player/pull/49) Pass in the `id` property to ReactPlayer
16+
- [#50](https://github.com/plotly/dash-player/pull/50) Add testing to the CI process
17+
18+
### Changed
19+
20+
- [#40](https://github.com/plotly/dash-player/pull/40) Updates dependencies in `packages.json`
21+
- [#43](https://github.com/plotly/dash-player/pull/43) Remove the `extract-meta.js` file
22+
- [#41](https://github.com/plotly/dash-player/pull/41) Add build instructions to `README.md`
23+
24+
### Fixed
25+
26+
- [#32](https://github.com/plotly/dash-player/pull/32) Fix errors and replace broken URLs in demo Python files
27+
- [#48](https://github.com/plotly/dash-player/pull/48) Fix issue with `currentTime`, `secondsLoaded`, and `duration` not loading
28+
29+
---
30+
31+
## [0.0.1] - 2018-08-02
32+
33+
### Added
34+
35+
- [#1](https://github.com/plotly/dash-player/pull/1) Initial component release

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: dashPlayer
22
Title: Interactive Media Player Component for Dash
33

4-
Version: 0.0.2
4+
Version: 1.0.0
55
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.
66

77
Depends: R (>= 3.0.2)

R/internal.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
.dashPlayer_js_metadata <- function() {
22
deps_metadata <- list(`dash_player` = structure(list(name = "dash_player",
3-
version = "0.0.2", src = list(href = NULL,
3+
version = "1.0.0", src = list(href = NULL,
44
file = "deps"), meta = NULL,
55
script = 'dash_player.min.js',
66
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashPlayer",
77
all_files = FALSE), class = "html_dependency"),
88
`dash_player` = structure(list(name = "dash_player",
9-
version = "0.0.2", src = list(href = NULL,
9+
version = "1.0.0", src = list(href = NULL,
1010
file = "deps"), meta = NULL,
1111
script = 'dash_player.min.js.map',
1212
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashPlayer",

dash_player/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@plotly/dash-player",
3-
"version": "0.0.2",
3+
"version": "1.0.0",
44
"description": "Dash player component for videos",
55
"repository": {
66
"type": "git",

package-lock.json

Lines changed: 53 additions & 65 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@plotly/dash-player",
3-
"version": "0.0.2",
3+
"version": "1.0.0",
44
"description": "Dash player component for videos",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)