Skip to content

Releases: reconurge/flowsint

v1.2.5

25 Jan 22:44

Choose a tag to compare

v1.2.4

25 Jan 20:22

Choose a tag to compare

  • Minify docker images (up to 90% downsize).
  • Fix mentionlist in analysis editor, that was using deprecated attributes

What's Changed

Full Changelog: v1.2.3...v1.2.4

v1.2.3

25 Jan 15:23

Choose a tag to compare

migrate from AGPL-3.0 to Apache License 2.0.

v1.2.2

25 Jan 15:02

Choose a tag to compare

remove not ready feature (create on paste)

v1.2.1

25 Jan 14:58

Choose a tag to compare

Fixes Makefile make prod and make dev commands.

v1.2.0

25 Jan 14:32
308172a

Choose a tag to compare

  • usage of a new format of GraphNode to manipulate in front and back:

⚠️ Make sure you run make migrate-prod if you want to keep your existing neo4j data (or make migrate-dev in dev mode) after pulling those changes, so that the migration can parse those in the right format.

export type GraphNode = {
  id: string
  nodeType: string
  nodeLabel: string
  nodeProperties: NodeProperties // Domain, Ip, Individual...
  nodeSize: number
  nodeColor: string | null
  nodeIcon: keyof typeof LucideIcons | null
  nodeImage: string | null
  nodeFlag: flagColor | null
  nodeShape: NodeShape // circle, hexagonal, square, triangle
  nodeMetadata: NodeMetadata
  x: number
  y: number
  val?: number
  neighbors?: any[]
  links?: any[]
}

And proper way to store them in neo4j.

  • proper way and usage of GraphService, GraphRepository and GraphSerializer. Previous implementation was shady.
image

What's Changed

  • feat: big codebase refactor + new node display features by @dextmorgn in #111

Full Changelog: v1.1.0...v1.2.0

v1.1.0

21 Jan 17:58

Choose a tag to compare

A bunch of fixes and features, including :

  • json/txt import
  • json/png export
  • new graph settings
  • outlined icons
  • custom icons by types
  • update an edge

What's Changed

Full Changelog: v1.0.0...1.1.0

1.0.0

02 Dec 23:13

Choose a tag to compare