Nicolas Meienberger 3 年之前
父节点
当前提交
be04276214

+ 1 - 0
apps/mealie/config.json

@@ -6,6 +6,7 @@
   "description": "Mealie is a self-hosted recipe manager and meal planner with a RestAPI backend and a reactive frontend application built in Vue for a pleasant user experience for the whole family. Easily add recipes into your database by providing the url and Mealie will automatically import the relevant data or add a family recipe with the UI editor. Mealie also provides an API for interactions from 3rd party applications. Default username / password is changeme@email.com / MyPassword",
   "short_desc": "Mealie is a self-hosted recipe manager and meal planner.",
   "author": "hay-kot",
+  "categories": [],
   "source": "https://github.com/hay-kot/mealie",
   "image": "https://raw.githubusercontent.com/hay-kot/mealie/mealie-next/frontend/static/icons/android-chrome-512x512.png",
   "form_fields": {}

+ 1 - 3
apps/plex/docker-compose.yml

@@ -4,7 +4,7 @@ services:
   plex:
     image: lscr.io/linuxserver/plex:1.26.2
     container_name: plex
-    # network_mode: host
+    network_mode: host
     environment:
       - PUID=1000
       - PGID=1000
@@ -15,5 +15,3 @@ services:
     restart: unless-stopped
     ports:
       - ${APP_PORT}:32400
-    networks:
-      - tipi_main_network

+ 1 - 1
packages/dashboard/src/modules/AppStore/components/AppStoreTile.tsx

@@ -9,7 +9,7 @@ const AppStoreTile: React.FC<{ app: AppConfig }> = ({ app }) => {
   return (
     <Link href={`/app-store/${app.id}`} passHref>
       <div key={app.id} className="p-2 rounded-md app-store-tile flex items-center group">
-        <AppLogo src={app.image} className="group-hover:scale-105 transition-all" />
+        <AppLogo src={app.image} className="drop-shadow group-hover:scale-105 transition-all" />
         <div className="ml-2">
           <div className="font-bold">{limitText(app.name, 20)}</div>
           <div className="text-sm mb-1">{limitText(app.short_desc, 45)}</div>