@@ -152,6 +157,32 @@ or file an issue on GitHub.
[Google Group][google-group]
+## Roadmap
+
+If you want to know what's planned for the very near future,
+[check out our roadmap](https://ohif.canny.io/). The best way to influence when
+and what is worked on is to contribute to the conversation by creating GitHub
+issues, and contributing code through pull requests. OHIF's high level
+priorities for the near future are:
+
+- Feature parity with version 1
+- Extension and configuration improvements with key integration partners
+- Continued Developer Experience Improvements
+- Segmentation Tools, and improved VTK.js support
+
+More granular information will make it's way to the backlog as these items
+become scoped for development by core maintainers.
+
+> Don't hesitate to ask questions, propose features, or create pull requests.
+> We're here, we're listening, and we're ready to build the best open source
+> medical imaging viewer on the web.
+
+#### Roadmap Generously Powered by Canny.io
+
+
+
+
+
## Contributors
Thanks goes to these wonderful people
diff --git a/docs/latest/assets/designs/canny-full.fig b/docs/latest/assets/designs/canny-full.fig
new file mode 100644
index 000000000..cb8d0ee27
Binary files /dev/null and b/docs/latest/assets/designs/canny-full.fig differ
diff --git a/docs/latest/assets/img/canny-full.png b/docs/latest/assets/img/canny-full.png
new file mode 100644
index 000000000..cb8d0ee27
Binary files /dev/null and b/docs/latest/assets/img/canny-full.png differ
diff --git a/docs/latest/assets/img/canny-logo-name.svg b/docs/latest/assets/img/canny-logo-name.svg
new file mode 100644
index 000000000..99ca594b7
--- /dev/null
+++ b/docs/latest/assets/img/canny-logo-name.svg
@@ -0,0 +1,12 @@
+
+
+
+
\ No newline at end of file
diff --git a/docs/latest/assets/img/canny-logo.svg b/docs/latest/assets/img/canny-logo.svg
new file mode 100644
index 000000000..e6bb0370c
--- /dev/null
+++ b/docs/latest/assets/img/canny-logo.svg
@@ -0,0 +1,19 @@
+
+
+
+
diff --git a/docs/latest/deployment/recipes/embedded-viewer.md b/docs/latest/deployment/recipes/embedded-viewer.md
index c5a08f2cf..d35bf3dea 100644
--- a/docs/latest/deployment/recipes/embedded-viewer.md
+++ b/docs/latest/deployment/recipes/embedded-viewer.md
@@ -44,7 +44,6 @@ include tags. Here's how it works:
-
Create a JS Object to hold the OHIF Viewer's configuration. Here are some
@@ -52,10 +51,12 @@ include tags. Here's how it works:
```js
-var props = {
- // Directory your application runs in (e.g. /viewer/)
+// Set before importing `ohif-viewer`
+window.config = {
+ // default: '/'
routerBasename: '/',
- rootUrl: 'https://lrjoo3znxm.codesandbox.io',
+ // default: ''
+ relativeWebWorkerScriptsPath: '',
servers: {
dicomWeb: [
{
@@ -82,7 +83,7 @@ var props = {
```js
// Made available by the `ohif-viewer` script included in step 1
var Viewer = window.OHIFStandaloneViewer.App
-var app = React.createElement(Viewer, props, null)
+var app = React.createElement(Viewer, window.config, null)
ReactDOM.render(app, document.getElementById('ohif-viewer-target'))
```
@@ -92,9 +93,9 @@ ReactDOM.render(app, document.getElementById('ohif-viewer-target'))
> I'm having trouble getting this to work. Where can I go for help?
First, check out this fully functional
-[CodeSandbox](https://codesandbox.io/s/lrjoo3znxm) example. If you're still
-having trouble, feel free to search or GitHub issues. Can't find anything
-related your problem? Create a new one.
+[CodeSandbox](https://codesandbox.io/s/ohif-viewer-script-tag-usage-b3st9)
+example. If you're still having trouble, feel free to search or GitHub issues.
+Can't find anything related your problem? Create a new one.
> When I include bootstrap, other styles on my page no longer work correctly.
> What can I do?