Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
d8a7a73
Initial plan
Copilot May 12, 2026
5ea19eb
feat: create /src architecture with Core, Application, Infrastructure…
Copilot May 12, 2026
1a55dcb
fix: remove Application reference from Infrastructure (clean arch), u…
Copilot May 12, 2026
d5c3c1c
feat: Phase 2 /src restructure — domain models, application services,…
Copilot May 12, 2026
0c7a635
feat: Phase 3+7+6 — UI.Components RCL, UI.Blazor host, UI.MAUI host w…
Copilot May 12, 2026
c22ff13
fix: address code review — constants, safe continuations, defensive I…
Copilot May 12, 2026
5f9ca0c
feat: Phase 5+6 — camera abstraction, MJPEG provider, SQLite + Influx…
Copilot May 12, 2026
a56e3ff
feat: add AppDeploymentMode — Standalone/CloudMakerspace two-mode sup…
Copilot May 25, 2026
14806db
feat(phase1): complete MAUI migration to src/MakerPrompt.UI.MAUI
akinbender May 25, 2026
2e3932c
feat(phase2): consolidate models — unify PrinterConnectionSettings, r…
akinbender May 25, 2026
0538de8
feat(tests): port 11 UI.Components test files to Tests.Unit — 185 tests
akinbender May 25, 2026
99bb40c
chore: remove superseded root projects — Shared, Blazor, MAUI, Tests …
akinbender May 25, 2026
c6ba532
ci: update workflow paths for src/ clean-architecture layout
akinbender May 25, 2026
6384efa
chore: move E2E projects to src/ and update solution + workflow paths
akinbender May 25, 2026
3038c0f
update
akinbender May 27, 2026
b6556e8
fix: update all backends and tests to new IPrinterCommunicationServic…
akinbender May 28, 2026
14fc946
update
akinbender May 28, 2026
acbd4d2
changes
akinbender May 28, 2026
2c12754
check
akinbender May 28, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ jobs:
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_YELLOW_SEA_04668C503 }}
repo_token: ${{ secrets.GITHUB_TOKEN }}
action: "upload"
app_location: "./MakerPrompt.Blazor"
app_location: "./src/MakerPrompt.UI.Blazor"
api_location: ""
output_location: "wwwroot"
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:
dotnet workload install maui-windows

- name: Restore dependencies (Blazor)
run: dotnet restore MakerPrompt.Blazor/MakerPrompt.Blazor.csproj
run: dotnet restore src/MakerPrompt.UI.Blazor/MakerPrompt.UI.Blazor.csproj

- name: Build (Windows)
run: dotnet build MakerPrompt.MAUI/MakerPrompt.MAUI.csproj -c Release -f net10.0-windows10.0.19041.0 -p:RuntimeIdentifierOverride=win-x64
run: dotnet build src/MakerPrompt.UI.MAUI/MakerPrompt.UI.MAUI.csproj -c Release -f net10.0-windows10.0.19041.0 -p:RuntimeIdentifierOverride=win-x64

- name: Build (Blazor WebAssembly)
run: dotnet build MakerPrompt.Blazor/MakerPrompt.Blazor.csproj -c Release --no-restore
run: dotnet build src/MakerPrompt.UI.Blazor/MakerPrompt.UI.Blazor.csproj -c Release --no-restore

- name: Test (Unit)
run: dotnet test MakerPrompt.Tests/MakerPrompt.Tests.csproj -c Release
run: dotnet test tests/MakerPrompt.Tests.Unit/MakerPrompt.Tests.Unit.csproj -c Release
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ jobs:
dotnet-version: '10.0.x'

- name: Restore
run: dotnet restore MakerPrompt.Tests/MakerPrompt.Tests.csproj
run: dotnet restore tests/MakerPrompt.Tests.Unit/MakerPrompt.Tests.Unit.csproj

- name: Build
run: dotnet build MakerPrompt.Tests/MakerPrompt.Tests.csproj --no-restore -c Release
run: dotnet build tests/MakerPrompt.Tests.Unit/MakerPrompt.Tests.Unit.csproj --no-restore -c Release

- name: Test with coverage
run: |
dotnet test MakerPrompt.Tests/MakerPrompt.Tests.csproj \
dotnet test tests/MakerPrompt.Tests.Unit/MakerPrompt.Tests.Unit.csproj \
--no-build \
--configuration Release \
--collect:"XPlat Code Coverage" \
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ jobs:
run: dotnet workload install wasm-tools

- name: Restore
run: dotnet restore MakerPrompt.E2E.Wasm/MakerPrompt.E2E.Wasm.csproj
run: dotnet restore tests/MakerPrompt.Tests.E2E.Wasm/MakerPrompt.Tests.E2E.Wasm.csproj

- name: Build E2E project
run: dotnet build MakerPrompt.E2E.Wasm/MakerPrompt.E2E.Wasm.csproj --no-restore -c Release
run: dotnet build tests/MakerPrompt.Tests.E2E.Wasm/MakerPrompt.Tests.E2E.Wasm.csproj --no-restore -c Release

- name: Install Playwright browsers
run: pwsh MakerPrompt.E2E.Wasm/bin/Release/net10.0/playwright.ps1 install --with-deps chromium
run: pwsh tests/MakerPrompt.Tests.E2E.Wasm/bin/Release/net10.0/playwright.ps1 install --with-deps chromium

- name: Run Playwright E2E tests
env:
E2E_HEADLESS: "true"
run: |
dotnet test MakerPrompt.E2E.Wasm/MakerPrompt.E2E.Wasm.csproj \
dotnet test tests/MakerPrompt.Tests.E2E.Wasm/MakerPrompt.Tests.E2E.Wasm.csproj \
--no-build \
--configuration Release \
--logger "trx;LogFileName=wasm-e2e-results.trx" \
Expand Down Expand Up @@ -74,25 +74,25 @@ jobs:

- name: Build MAUI app (Debug — enables CDP debugging port)
run: >
dotnet build MakerPrompt.MAUI/MakerPrompt.MAUI.csproj
dotnet build src/MakerPrompt.UI.MAUI/MakerPrompt.UI.MAUI.csproj
-c Debug
-f net10.0-windows10.0.19041.0
-p:RuntimeIdentifierOverride=win-x64

- name: Restore E2E.Maui
run: dotnet restore MakerPrompt.E2E.Maui/MakerPrompt.E2E.Maui.csproj
run: dotnet restore tests/MakerPrompt.Tests.E2E.Maui/MakerPrompt.Tests.E2E.Maui.csproj

- name: Build E2E.Maui project
run: dotnet build MakerPrompt.E2E.Maui/MakerPrompt.E2E.Maui.csproj --no-restore -c Release
run: dotnet build tests/MakerPrompt.Tests.E2E.Maui/MakerPrompt.Tests.E2E.Maui.csproj --no-restore -c Release

- name: Install Playwright browsers
run: pwsh MakerPrompt.E2E.Maui/bin/Release/net10.0/playwright.ps1 install --with-deps chromium
run: pwsh tests/MakerPrompt.Tests.E2E.Maui/bin/Release/net10.0/playwright.ps1 install --with-deps chromium

- name: Run MAUI E2E tests
env:
MAUI_APP_PATH: ${{ github.workspace }}\MakerPrompt.MAUI\bin\Debug\net10.0-windows10.0.19041.0\win-x64\MakerPrompt.MAUI.exe
MAUI_APP_PATH: ${{ github.workspace }}\src\MakerPrompt.UI.MAUI\bin\Debug\net10.0-windows10.0.19041.0\win-x64\MakerPrompt.UI.MAUI.exe
run: |
dotnet test MakerPrompt.E2E.Maui/MakerPrompt.E2E.Maui.csproj `
dotnet test tests/MakerPrompt.Tests.E2E.Maui/MakerPrompt.Tests.E2E.Maui.csproj `
--no-build `
--configuration Release `
--logger "trx;LogFileName=maui-e2e-results.trx" `
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
workflow_dispatch:

env:
WASM_PROJECT: 'MakerPrompt.Blazor/MakerPrompt.Blazor.csproj'
WASM_PROJECT: 'src/MakerPrompt.UI.Blazor/MakerPrompt.UI.Blazor.csproj'
OUTPUT_DIR: 'publish_wasm'

concurrency:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-maui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:
- 'v*'

env:
MAUI_PROJECT_DIR: 'MakerPrompt.MAUI/'
MAUI_PROJECT: 'MakerPrompt.MAUI/MakerPrompt.MAUI.csproj'
MAUI_PROJECT_DIR: 'src/MakerPrompt.UI.MAUI/'
MAUI_PROJECT: 'src/MakerPrompt.UI.MAUI/MakerPrompt.UI.MAUI.csproj'
OUTPUT_DIR: 'publish'

jobs:
Expand Down
1 change: 0 additions & 1 deletion MakerPrompt.Blazor/.gitattributes

This file was deleted.

42 changes: 0 additions & 42 deletions MakerPrompt.Blazor/Program.cs

This file was deleted.

43 changes: 0 additions & 43 deletions MakerPrompt.Blazor/Services/AppConfigurationService.cs

This file was deleted.

138 changes: 0 additions & 138 deletions MakerPrompt.E2E.Maui/Tests/FleetWorkflowTests.cs

This file was deleted.

15 changes: 0 additions & 15 deletions MakerPrompt.MAUI/App.xaml.cs

This file was deleted.

12 changes: 0 additions & 12 deletions MakerPrompt.MAUI/Components/Routes.razor

This file was deleted.

10 changes: 0 additions & 10 deletions MakerPrompt.MAUI/MainPage.xaml.cs

This file was deleted.

Loading
Loading