From c137acb6762969136a1ef455991644614b6e49ea Mon Sep 17 00:00:00 2001 From: Lightning Pixel Date: Tue, 28 Apr 2026 10:31:49 +0200 Subject: [PATCH 1/2] hotfix: repair button missed --- src/areas/models/components/ExtensionCard.tsx | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/src/areas/models/components/ExtensionCard.tsx b/src/areas/models/components/ExtensionCard.tsx index f801e11..c057156 100644 --- a/src/areas/models/components/ExtensionCard.tsx +++ b/src/areas/models/components/ExtensionCard.tsx @@ -102,30 +102,30 @@ export function ExtensionCard({ ext, installedIds, downloading, loadError, disab {/* Load error */} {(loadError || repairError) && ( -
-
- - +
+ + + +

{repairError ?? loadError}

+
+ )} + + {/* Repair — always visible for model extensions */} + {ext.type === 'model' && ( + )} -
+ {repairing ? 'Repairing…' : 'Repair'} + )} {/* Description */} From f257634fb48fc76b13fd9749956be59003afb867 Mon Sep 17 00:00:00 2001 From: Lightning Pixel Date: Tue, 28 Apr 2026 10:32:12 +0200 Subject: [PATCH 2/2] dump version 0.3.4 --- api/main.py | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api/main.py b/api/main.py index 133d22d..2a1b22e 100644 --- a/api/main.py +++ b/api/main.py @@ -31,7 +31,7 @@ def filter(self, record): app = FastAPI( title="Modly API", - version="0.3.3", + version="0.3.4", lifespan=lifespan, ) diff --git a/package.json b/package.json index 7fad71d..45b3202 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "modly", - "version": "0.3.3", + "version": "0.3.4", "description": "Local AI-powered 3D mesh generation from images", "main": "./out/main/index.js", "author": "Modly",