Skip to content
Merged

Test #162

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

All notable changes to this project are documented here.

## 2.4.0 (2026-05-06)

### Feat

- migrate worker autostart to policy-based configuration and implement managed worker termination via WorkerManager
- **worker-settings**: add worker configuration management in settings menu

### Fix

- update checkbox state handling in settings menu and add corresponding test coverage

## 2.3.0 (2026-03-17)

### Feat
Expand Down
10 changes: 8 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
[project]
name = "funcnodes-react-flow"
version = "2.3.0"
version = "2.4.0"
description = "funcnodes frontend for react flow"
readme = "README.md"
classifiers = [ "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",]
requires-python = ">=3.11"
dependencies = [ "funcnodes-core>=1.0.0", "funcnodes-worker>=1.0.0", "funcnodes>=1.0.0; sys_platform != 'emscripten'", "funcnodes>=1.0.0",]
dependencies = [
"funcnodes-core>=1.0.0",
"funcnodes-worker>=1.0.0",
"funcnodes>=1.6.0; sys_platform != 'emscripten'",
"funcnodes>=1.6.0",
]

[[project.authors]]
name = "Julian Kimmig"
email = "[email protected]"
Expand Down
Loading
Loading