Skip to content

Commit d981889

Browse files
author
Xing Han Lu
authored
Pre v0.0.3 PR (#20)
* Update changelog for v0.0.3 * Bump version in package.json * npm run build
1 parent 11535bf commit d981889

File tree

7 files changed

+14
-9
lines changed

7 files changed

+14
-9
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: dashVtk
22
Title: React based declarative usage of vtk.js for Dash
3-
Version: 0.0.2
3+
Version: 0.0.3
44
Description: React based declarative usage of vtk.js for Dash
55
Depends: R (>= 3.0.2)
66
Imports:

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "DashVtk"
33
uuid = "1b08a953-4be3-4667-9a23-818b1eccd4c7"
44
authors = ["Kitware Inc <[email protected]> and Plotly Technologies <[email protected]>"]
5-
version = "0.0.2"
5+
version = "0.0.3"
66

77
[deps]
88
Dash = "1b08a953-4be3-4667-9a23-3db579824955"

R/internal.R

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

dash_vtk/package-info.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash_vtk",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"description": "React based declarative usage of vtk.js for Dash",
55
"repository": {
66
"type": "git",

docs/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.0.3] - 2021-02-04
10+
911
### Changed
1012
* [Demos](https://github.com/plotly/dash-vtk/pull/16): removed headers, updated layout sizes, remove unused files
1113
* `demos/usage-vtk-cfd`: update viz on drag
@@ -14,6 +16,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1416
* `README.md`: Change relative links to URLs
1517
* `docs/CONTRIBUTING.md` ([commit](https://github.com/plotly/dash-vtk/pull/15/commits/0ec656e20b7e34e77bab7c573748e2842eba0d5f)): Various clarification and improvements
1618

19+
## Fixed
20+
* Simplified imports in `dash_vtk.utils.vtk` to only load necessary modules from `vtk`. This avoids `libGL.so.1` since server side rendering is not needed.
21+
1722
## [0.0.2] - 2021-01-29
1823

1924
### Added

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash_vtk",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"description": "React based declarative usage of vtk.js for Dash",
55
"repository": {
66
"type": "git",

src/DashVtk.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module DashVtk
33
using Dash
44

55
const resources_path = realpath(joinpath( @__DIR__, "..", "deps"))
6-
const version = "0.0.2"
6+
const version = "0.0.3"
77

88
include("vtk_algorithm.jl")
99
include("vtk_calculator.jl")
@@ -34,14 +34,14 @@ function __init__()
3434
[
3535
DashBase.Resource(
3636
relative_package_path = "dash_vtk.min.js",
37-
external_url = "https://unpkg.com/[email protected].2/dash_vtk/dash_vtk.min.js",
37+
external_url = "https://unpkg.com/[email protected].3/dash_vtk/dash_vtk.min.js",
3838
dynamic = nothing,
3939
async = nothing,
4040
type = :js
4141
),
4242
DashBase.Resource(
4343
relative_package_path = "dash_vtk.min.js.map",
44-
external_url = "https://unpkg.com/[email protected].2/dash_vtk/dash_vtk.min.js.map",
44+
external_url = "https://unpkg.com/[email protected].3/dash_vtk/dash_vtk.min.js.map",
4545
dynamic = true,
4646
async = nothing,
4747
type = :js

0 commit comments

Comments
 (0)