chore: stage all in-progress work before repo split
CI / test (push) Has been cancelled

Web app: new entities (Image, RenderedAsset, SharedImage, Token,
DeviceImageHistory), enums, repositories, controllers, message handlers,
migrations, tests, frontend upload/library/sticker UI, Vue components.

Firmware: EPD background screen binaries + gen scripts, setup_bg header.

Infra: ddev config, test bundle, gitignore coverage dir.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-06 12:11:31 -04:00
parent 062c52eec7
commit 12245759ac
149 changed files with 14846 additions and 92 deletions
+7
View File
@@ -0,0 +1,7 @@
<?php
declare(strict_types=1);
namespace App\Message;
final class AdvanceRotationMessage {}
+14
View File
@@ -0,0 +1,14 @@
<?php
declare(strict_types=1);
namespace App\Message;
final readonly class RenderImageMessage
{
public function __construct(
public int $imageId,
public string $deviceModel,
public string $orientation,
) {}
}
+7
View File
@@ -0,0 +1,7 @@
<?php
declare(strict_types=1);
namespace App\Message;
final class RunImageCleanupMessage {}