diff --git a/CHANGELOG.md b/CHANGELOG.md index a537c4b..b404038 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ -**v0.1.0** +**v0.3.0** + +- Improved SVG export +- More flexible color options. `labelBackgroundColor` has been replaced by `labelBackgroundPlusStrandColor` and `labelBackgroundMinusStrandColor`. + +**v0.2.0** - The track is now 1-based diff --git a/package-lock.json b/package-lock.json index 906e90a..1665877 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "higlass-transcripts", - "version": "0.2.1", + "version": "0.3.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index a8d1ede..641c798 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "higlass-transcripts", - "version": "0.2.1", + "version": "0.3.0", "description": "Gene transcripts track for HiGlass", "private": false, "author": "Alexander Veit", diff --git a/src/index.html b/src/index.html index 726547e..ef7f73e 100644 --- a/src/index.html +++ b/src/index.html @@ -133,7 +133,8 @@ "options": { "fontSize": 9, "labelFontColor": "#222222", - "labelBackgroundColor": "#e9e9e9", + "labelBackgroundPlusStrandColor": "#e9e9e9", + "labelBackgroundMinusStrandColor": "#e9e9e9", "minHeight": 24, "plusStrandColor": "#bdbfff", "minusStrandColor": "#fabec2",