Comparing version
@@ -9,1 +9,47 @@ # Changelog | ||
## [Unreleased] | ||
## [2.0.2] | ||
### Added | ||
- Add this Changelog | ||
## [2.0.1] | ||
### Fixed | ||
- Change demo's seqviz dependency to `latest` | ||
## [2.0.0] | ||
### Changed | ||
- Refactor direction property, in annotations, translations, searchResults, to -1, 0, 1, from "REVERSE", "NONE", and "FORWARD", respectively | ||
- the string enums are still supported, but they're no longer the default | ||
- Change the `row` property of searchResults to `direction` (either 1 or -1, for FWD or REV). Example below of a `searchResults` object from `options.onSearch()`: | ||
```json | ||
{ | ||
"searchResults": [ | ||
{ | ||
"start": 728, | ||
"end": 733, | ||
"direction": 1, | ||
"index": 0 | ||
}, | ||
{ | ||
"start": 1788, | ||
"end": 1793, | ||
"direction": -1, | ||
"index": 1 | ||
} | ||
], | ||
"searchIndex": 0 | ||
} | ||
``` | ||
- Overhaul the README.md to match the changes above and add examples of translations, annotations, functions | ||
### Removed | ||
- Remove the `showAnnotations` options/prop. To avoid rendering `annotations`, we ask users to simply not provide `options.annotations` to the viewer |
{ | ||
"name": "seqviz", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"private": false, | ||
@@ -5,0 +5,0 @@ "description": "DNA sequence viewer supporting custom, GenBank, FASTA, NCBI accession, and iGEM part input", |
@@ -11,3 +11,3 @@ <div align="center"> | ||
**Latest Production Build:** <!-- exec-bash(cmd:echo `date`) -->Mon Dec 16 15:39:40 EST 2019<!-- /exec-bash --> | ||
**Latest Production Build:** <!-- exec-bash(cmd:echo `date`) -->Mon Dec 16 15:49:01 EST 2019<!-- /exec-bash --> | ||
@@ -84,3 +84,3 @@ **Maintained by:** <!-- pkg-author(cmd:) -->[Lattice Automation](https://latticeautomation.com/)<!-- /pkg-author --> | ||
```html | ||
<script src="https://cdn.latticeautomation.com/libs/seqviz/2.0.1/seqviz.min.js"></script> | ||
<script src="https://cdn.latticeautomation.com/libs/seqviz/2.0.2/seqviz.min.js"></script> | ||
``` | ||
@@ -87,0 +87,0 @@ <!-- /cdn-example --> |
Sorry, the diff of this file is too big to display
287540
0.36%