diff --git a/README.md b/README.md index f6a66a2..cb62b27 100644 --- a/README.md +++ b/README.md @@ -112,6 +112,7 @@ Additional parameters that can be specified for the track configuration. ## Future Plans +- Jasmine testing - "Loading" screen when recomputing after changing a track setting - turn on/off labels using CSS without redrawing - Ability to add track locally by adding option to menu bar, "File" diff --git a/js/View/Track/NucleotideDensity.js b/js/View/Track/NucleotideDensity.js index 8946ba6..a4c1271 100644 --- a/js/View/Track/NucleotideDensity.js +++ b/js/View/Track/NucleotideDensity.js @@ -3,6 +3,7 @@ define([ 'dojo/_base/array', 'dojo/_base/lang', 'dojo/_base/Color', + 'dojo/colors', 'JBrowse/View/Track/Wiggle/Density', 'JBrowse/Util', 'NucleotideDensityPlugin/Store/SeqFeature/NucDensityMulti', @@ -14,6 +15,7 @@ function( array, lang, Color, + dojoColors, WiggleDensity, Util, NucContent, @@ -67,6 +69,7 @@ function( }, _calculatePixelScores: function(canvasWidth, features, featureRects) { + console.log(features.length, featureRects.length); var pixelValues = new Array(canvasWidth); array.forEach(features, function(f, i) { var fRect = featureRects[i]; diff --git a/release_notes.txt b/release_notes.txt index 3255d41..553dbfd 100644 --- a/release_notes.txt +++ b/release_notes.txt @@ -1,5 +1,8 @@ # Release notes +v1.0.2 - Jun 23, 2017 +- fixed issue when using color values names; all CSS3 color names are supported + v1.0.1 - Jun 21, 2017 - fixed issue with dialog and array colors - added sample dataset to test plugin is installed correctly