Skip to content

Publish 0.0.8 #44

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

Merged
merged 4 commits into from
Apr 15, 2021
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
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: dashVtk
Title: React based declarative usage of vtk.js for Dash
Version: 0.0.7
Version: 0.0.8
Description: React based declarative usage of vtk.js for Dash
Depends: R (>= 3.0.2)
Imports:
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "DashVtk"
uuid = "1b08a953-4be3-4667-9a23-818b1eccd4c7"
authors = ["Kitware Inc <[email protected]> and Plotly Technologies <[email protected]>"]
version = "0.0.7"
version = "0.0.8"

[deps]
Dash = "1b08a953-4be3-4667-9a23-3db579824955"
Expand Down
8 changes: 4 additions & 4 deletions R/internal.R
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
.dashVtk_js_metadata <- function() {
deps_metadata <- list(`dash_vtk` = structure(list(name = "dash_vtk",
version = "0.0.7", src = list(href = NULL,
version = "0.0.8", src = list(href = NULL,
file = "deps"), meta = NULL,
script = 'dash_vtk.min.js',
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashVtk",
all_files = FALSE), class = "html_dependency"),
`dash_vtk` = structure(list(name = "dash_vtk",
version = "0.0.7", src = list(href = NULL,
version = "0.0.8", src = list(href = NULL,
file = "deps"), meta = NULL,
script = 'dash_vtk.min.js.map',
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashVtk",
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
`dash_vtk` = structure(list(name = "dash_vtk",
version = "0.0.7", src = list(href = NULL,
version = "0.0.8", src = list(href = NULL,
file = "deps"), meta = NULL,
script = 'async-ReactVTK.js',
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashVtk",
all_files = FALSE, async = TRUE), class = "html_dependency"),
`dash_vtk` = structure(list(name = "dash_vtk",
version = "0.0.7", src = list(href = NULL,
version = "0.0.8", src = list(href = NULL,
file = "deps"), meta = NULL,
script = 'async-ReactVTK.js.map',
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashVtk",
Expand Down
2 changes: 1 addition & 1 deletion dash_vtk/async-ReactVTK.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_vtk/dash_vtk.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_vtk/package-info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash_vtk",
"version": "0.0.7",
"version": "0.0.8",
"description": "React based declarative usage of vtk.js for Dash",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion deps/async-ReactVTK.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion deps/dash_vtk.min.js

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]


## [0.0.8] - 2021-04-15

### Changed

- `react-vtk-js` was updated from `1.2.1` to `1.5.0`. See [diffs](https://github.com/Kitware/react-vtk-js/compare/v1.2.1...v1.5.0)
- dash-vtk is now loaded asynchronously (see https://github.com/plotly/dash-vtk/pull/29). It will only be loaded when one or more components is called/displayed; this helps optimize for multi-page apps and use cases where dash-vtk is dynamically loaded.


## [0.0.7] - 2021-04-06

### Added
Expand Down
2 changes: 1 addition & 1 deletion inst/deps/async-ReactVTK.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion inst/deps/dash_vtk.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion 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": "dash_vtk",
"version": "0.0.7",
"version": "0.0.8",
"description": "React based declarative usage of vtk.js for Dash",
"repository": {
"type": "git",
Expand Down
10 changes: 5 additions & 5 deletions src/DashVtk.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module DashVtk
using Dash

const resources_path = realpath(joinpath( @__DIR__, "..", "deps"))
const version = "0.0.7"
const version = "0.0.8"

include("vtk_algorithm.jl")
include("vtk_calculator.jl")
Expand Down Expand Up @@ -35,28 +35,28 @@ function __init__()
[
DashBase.Resource(
relative_package_path = "dash_vtk.min.js",
external_url = "https://unpkg.com/[email protected].7/dash_vtk/dash_vtk.min.js",
external_url = "https://unpkg.com/[email protected].8/dash_vtk/dash_vtk.min.js",
dynamic = nothing,
async = nothing,
type = :js
),
DashBase.Resource(
relative_package_path = "dash_vtk.min.js.map",
external_url = "https://unpkg.com/[email protected].7/dash_vtk/dash_vtk.min.js.map",
external_url = "https://unpkg.com/[email protected].8/dash_vtk/dash_vtk.min.js.map",
dynamic = true,
async = nothing,
type = :js
),
DashBase.Resource(
relative_package_path = "async-ReactVTK.js",
external_url = "https://unpkg.com/[email protected].7/dash_vtk/async-ReactVTK.js",
external_url = "https://unpkg.com/[email protected].8/dash_vtk/async-ReactVTK.js",
dynamic = nothing,
async = :true,
type = :js
),
DashBase.Resource(
relative_package_path = "async-ReactVTK.js.map",
external_url = "https://unpkg.com/[email protected].7/dash_vtk/async-ReactVTK.js.map",
external_url = "https://unpkg.com/[email protected].8/dash_vtk/async-ReactVTK.js.map",
dynamic = true,
async = nothing,
type = :js
Expand Down