-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* npm run build * bump version * Update changelog * npm run build
- Loading branch information
Xing Han Lu
authored
Apr 15, 2021
1 parent
efc6a09
commit 05e2467
Showing
14 changed files
with
29 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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") | ||
|
@@ -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 | ||
|