diff --git a/.forgejo/workflows/deploy-dev.yml b/.forgejo/workflows/deploy-dev.yml index 53fab0d..af74f17 100644 --- a/.forgejo/workflows/deploy-dev.yml +++ b/.forgejo/workflows/deploy-dev.yml @@ -7,7 +7,7 @@ on: jobs: build-web: - runs-on: docker + runs-on: nixos steps: - name: Check out repo uses: https://data.forgejo.org/actions/checkout@v4 @@ -15,9 +15,6 @@ jobs: - name: Install Packages run: apt-get update && apt-get install -y sudo curl jq fakeroot dpkg rpm - - name: Install Nix - uses: https://github.com/cachix/install-nix-action@v30 - - name: Install Bun uses: oven-sh/setup-bun@v2 @@ -40,7 +37,7 @@ jobs: run: rsync -a --delete apps/web/dist/ /var/lib/www/tensamin-web-dev/ build-mobile: - runs-on: docker + runs-on: nixos steps: - name: Check out repo uses: https://data.forgejo.org/actions/checkout@v4 @@ -48,9 +45,6 @@ jobs: - name: Install Packages run: apt-get update && apt-get install -y sudo curl jq fakeroot dpkg rpm - - name: Install Nix - uses: https://github.com/cachix/install-nix-action@v30 - - name: Install Bun uses: oven-sh/setup-bun@v2 diff --git a/.forgejo/workflows/deploy-prod.yml b/.forgejo/workflows/deploy-prod.yml index d1d93c8..59dd2bf 100644 --- a/.forgejo/workflows/deploy-prod.yml +++ b/.forgejo/workflows/deploy-prod.yml @@ -8,7 +8,7 @@ on: jobs: build-web: - runs-on: docker + runs-on: nixos steps: - name: Check out repo uses: https://data.forgejo.org/actions/checkout@v4 @@ -16,9 +16,6 @@ jobs: - name: Install Packages run: apt-get update && apt-get install -y sudo curl jq fakeroot dpkg rpm - - name: Install Nix - uses: https://github.com/cachix/install-nix-action@v30 - - name: Install Bun uses: oven-sh/setup-bun@v2 @@ -41,7 +38,7 @@ jobs: run: rsync -a --delete apps/web/dist/ /var/lib/www/tensamin-web-prod/ build-mobile: - runs-on: docker + runs-on: nixos steps: - name: Check out repo uses: https://data.forgejo.org/actions/checkout@v4 @@ -49,9 +46,6 @@ jobs: - name: Install Packages run: apt-get update && apt-get install -y sudo curl jq fakeroot dpkg rpm - - name: Install Nix - uses: https://github.com/cachix/install-nix-action@v30 - - name: Install Bun uses: oven-sh/setup-bun@v2 diff --git a/packages/call/todo.md b/packages/call/todo.md index 4d00174..beb0e48 100644 --- a/packages/call/todo.md +++ b/packages/call/todo.md @@ -7,3 +7,4 @@ - Implement context menu features - Add quality selection - Good preview page +- Settings page diff --git a/packages/chat/src/components/message.tsx b/packages/chat/src/components/message.tsx index 3f83198..6a8ffe5 100644 --- a/packages/chat/src/components/message.tsx +++ b/packages/chat/src/components/message.tsx @@ -1,7 +1,15 @@ import * as React from "react"; import type { RawMessage } from "../values"; import Text from "@tensamin/markdown/text"; -import { AlertTriangle, Check, Ellipse, RefreshCw } from "lucide-react"; +import { + AlertTriangle, + Check, + Ellipse, + Forward, + Laugh, + RefreshCw, + Reply, +} from "lucide-react"; import { useCallback, useEffect, useState } from "react"; import type { User } from "@tensamin/user/context"; @@ -9,7 +17,10 @@ import { Avatar, AvatarFallback, AvatarImage, + Button, + Card, cn, + Separator, Tooltip, TooltipContent, TooltipTrigger, @@ -125,7 +136,7 @@ function MessageComponent({ >
} /> )} -{user.display}