Skip to content

Releases: Lattice-Automation/seqviz

3.9.1

03 Sep 20:54
Compare
Choose a tag to compare

What's Changed

  • Configuration option to disable loading fonts from Google Fonts by @jcxldn in #226

New Contributors

Full Changelog: 3.9.0...3.9.1

3.9.0

17 Aug 23:12
Compare
Choose a tag to compare

What's Changed

  • Add selectAllEvent keyboard listener event (default is ctrl+A) by @Eng-Elias in #223

New Contributors

Full Changelog: 3.8.11...3.9.0

3.8.11

21 Jun 00:08
Compare
Choose a tag to compare

What's Changed

  • Revert "scroll to selection for managed states" by @jjti in #219

Full Changelog: 3.8.10...3.8.11

3.8.10

19 Jun 15:30
Compare
Choose a tag to compare

What's Changed

  • hide complement in circular viewer when showComplement is turned off by @bugzpodder in #218

Full Changelog: 3.8.8...3.8.10

3.8.8

02 Jun 03:44
Compare
Choose a tag to compare

What's Changed

Full Changelog: 3.8.7...3.8.8

3.8.7

02 Jun 03:43
Compare
Choose a tag to compare

What's Changed

Full Changelog: 3.8.6...3.8.7

3.8.6

08 May 17:05
Compare
Choose a tag to compare

What's Changed

Full Changelog: 3.8.3...3.8.6

3.8.3

08 May 02:36
Compare
Choose a tag to compare

What's Changed

  • Move to css-in-js approach by @jjtimmons in #198

before

import dynamic from "next/dynamic";
import * as React from "react";

const App = dynamic(() => import("../lib/App"), {
  ssr: false,
});

after

import * as React from "react";

import App from "../lib/App";

export default () => <App />;

Full Changelog: 3.8.2...3.8.3

3.8.2

07 May 21:43
Compare
Choose a tag to compare

What's Changed

before:
Screenshot 2023-05-07 at 12 16 14 PM

after:
Screenshot 2023-05-07 at 12 13 33 PM

Full Changelog: 3.8.1...3.8.2

3.8.1

07 May 21:31
Compare
Choose a tag to compare

What's Changed

  • clicking on sequence of circular viewer scrolls the linear viewer by @bugzpodder in #208
  • keyboard presses are fixed -- eg clicking up/down/right/left moves the sequence cursor to that sequence by @bugzpodder in #209

Full Changelog: 3.8.0...3.8.1