From 76dbedd0f74a520a0b1df9f4cb01f20e6f582981 Mon Sep 17 00:00:00 2001 From: Melvin Strobl Date: Tue, 18 Aug 2026 14:22:47 +0200 Subject: [PATCH] link Signed-off-by: Melvin Strobl --- NOTEPAD.md | 3 +++ ROADMAP.md | 4 ++-- frontend/src/components/Common/Footer.tsx | 6 +++--- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/NOTEPAD.md b/NOTEPAD.md index 7229d6b..63270a4 100644 --- a/NOTEPAD.md +++ b/NOTEPAD.md @@ -13,6 +13,9 @@ should reopen it. ### To be sorted +- BUG/UI loop-lag in home view can't have a value when there are no flows (push back if I'm wrong here) +- BUG/UI brain view in the home view should be hidden when there are no flows/nodes +- FEAT/UI in addition to the two issues above we should introduce a default flow and dashboard for every new user. These should be very minimal to quickly understand what's happening but still show off most of the features of the application. We could make this optional by offering a "Create Demo" button showing at the location of the brain view if there are no existing flows. This demo could then also serve as a demo.fluksio.com site later to play around without signup - BUG/UI auto node placement on flows should be improved in regards to least crossing edges and a more vertical layout on mobile devices - BUG/UI when opening a flow, the graph should enlarge from the center (same animation as the brain view). Currently it swipes in from the side - BUG/UI dots and rings of nodes in the brain graph are not pixel-perfect centered diff --git a/ROADMAP.md b/ROADMAP.md index c524f25..70a57fc 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -22,9 +22,9 @@ existing flow engine reachable and persistent precedes new feature breadth. stacks, one Traefik serving `${DOMAIN}`, `app.${DOMAIN}`, `api.${DOMAIN}` - [x] Design token contract: root `DESIGN-GUIDELINES.md`, per-repo `DESIGN.md`, byte-identical token blocks verified by `make design-check` -- [x] CI on Codeberg (Forgejo Actions): pre-commit, backend tests, Playwright, compose smoke +- [x] CI on Gitea (Forgejo Actions): pre-commit, backend tests, Playwright, compose smoke — the four workflows in `.gitea/workflows/`. Never observed running on a - Codeberg push from here, so treat the wiring as written but unproven + Gitea push from here, so treat the wiring as written but unproven - [x] Soak and chaos harness: sustained load with the state backend, the broker and the engine itself taken away underneath it. `backend/scripts/soak.py` behind `make soak`, driving the durable webhook path through load, redis, engine and diff --git a/frontend/src/components/Common/Footer.tsx b/frontend/src/components/Common/Footer.tsx index 7742702..bef73e1 100644 --- a/frontend/src/components/Common/Footer.tsx +++ b/frontend/src/components/Common/Footer.tsx @@ -1,10 +1,10 @@ -import { SiCodeberg } from "react-icons/si" +import { SiGitea } from "react-icons/si" const socialLinks = [ { - icon: SiCodeberg, + icon: SiGitea, href: "https://git.stroblme.de/Fluksio", - label: "Codeberg", + label: "Gitea", }, ]