Skip to content
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
b6557af
docs: update project structure in project-context.md
JanZachmann Feb 3, 2026
56c6e1e
docs: add rule to update project structure in project-context.md
JanZachmann Feb 3, 2026
b4ff9e0
refactor(ui): unify camelCase naming and improve ODS data parsing
JanZachmann Feb 4, 2026
f67b539
refactor: unify shared types between core and backend
JanZachmann Feb 4, 2026
1df35d2
chore(ui): optimize build chunks and silence large chunk warnings
JanZachmann Feb 4, 2026
333a267
docs: clean up code comments by removing historical context and markers
JanZachmann Feb 4, 2026
e929cc3
docs: update project structure in project-context.md
JanZachmann Feb 4, 2026
ed79514
refactor(ui): enhance network configuration visualization and layout
JanZachmann Feb 4, 2026
cf2430e
fix(backend): prevent network rollback wait from blocking server rest…
JanZachmann Feb 5, 2026
3ead5e1
fix(core): extract detailed error context from backend response bodies
JanZachmann Feb 5, 2026
684e048
perf(backend): optimize firmware upload performance
JanZachmann Feb 6, 2026
cd9be35
feat(ui): redesign update page and unify action styles across all pages
JanZachmann Feb 6, 2026
7ce1e92
feat(ui): add modal popups for factory reset and update validation re…
JanZachmann Feb 8, 2026
c9565fa
fix(auth): extract token from set-password response for direct authen…
JanZachmann Feb 8, 2026
8310445
fix(core): deserialize ODS factory reset status as integer
JanZachmann Feb 8, 2026
1d7f978
feat(ui): add countdown timer and cert hint to device operation overlays
JanZachmann Feb 8, 2026
0cefa1d
fix(ui): use filled error buttons for destructive dialog actions
JanZachmann Feb 8, 2026
96cce21
chore(docker): remove unused COREPACK_ENABLE_DOWNLOAD_PROMPT env var
JanZachmann Feb 9, 2026
b8cb8cb
chore(deps): update all workspace dependencies
JanZachmann Feb 9, 2026
3b73319
refactor(ui): align network page UX with device and update pages
JanZachmann Feb 9, 2026
63dd206
fix(ui): navigate to dashboard after successful password update
JanZachmann Feb 9, 2026
3f577dc
fix(ui): display auth errors inline instead of as toasts
JanZachmann Feb 9, 2026
aace5dc
chore(test): remove debug logging from e2e tests
JanZachmann Feb 9, 2026
26a91b0
fix(docker): prevent cache conflicts between architectures
JanZachmann Feb 10, 2026
ba8b922
Merge remote-tracking branch 'upstream/main' into refactor/ux
JanZachmann Feb 10, 2026
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ COPY --from=vue-build /usr/src/app/dist ./src/ui/dist
# Build omnect-ui for target architecture with embedded frontend
# Cache mounts persist compiled dependencies across builds
# Pass GIT_SHORT_REV as environment variable to avoid copying .git directory
RUN --mount=type=cache,target=/usr/local/cargo/registry \
--mount=type=cache,target=/work/build \
RUN --mount=type=cache,target=/usr/local/cargo/registry,id=cargo-registry-${TARGETARCH} \
--mount=type=cache,target=/work/build,id=cargo-build-${TARGETARCH} \
GIT_SHORT_REV=${GIT_SHORT_REV} cargo build ${OMNECT_UI_BUILD_ARG} --release -p omnect-ui --target-dir ./build && \
cp ./build/release/omnect-ui /work/omnect-ui-bin

Expand Down
Loading