From b99744c2b634fa43cb4be18cafe5eea97458d946 Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Fri, 13 Feb 2026 05:18:39 +0000 Subject: [PATCH 1/2] Fix thinking block dots layout race condition Changed flex layout to inline-flex with inline-block dots to prevent vertical misalignment issues that were appearing on desktop during streaming. The dots now properly align with the text baseline. Fixes #422 Co-authored-by: Anthony --- frontend/src/components/markdown.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src/components/markdown.tsx b/frontend/src/components/markdown.tsx index 4fb72cda5..25d2e4189 100644 --- a/frontend/src/components/markdown.tsx +++ b/frontend/src/components/markdown.tsx @@ -88,16 +88,16 @@ export function ThinkingBlock({ content, isThinking, duration }: ThinkingBlockPr {isThinking ? ( - + Thinking for {durationText} seconds - - + + . - + . - + . From 56a6791f90d80b269987346433e67547082b0fd0 Mon Sep 17 00:00:00 2001 From: Tony Giorgio Date: Fri, 13 Feb 2026 12:38:29 -0600 Subject: [PATCH 2/2] Fix Android CI: pin nttld/setup-ndk to v1.5.0 The v1.6.0 release of nttld/setup-ndk (today) broke NDK extraction, leaving clang binaries missing. Pin to v1.5.0 as a workaround. See: https://github.com/nttld/setup-ndk/issues/576 Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com> --- .github/workflows/android-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/android-build.yml b/.github/workflows/android-build.yml index df928e8e5..5803d88ea 100644 --- a/.github/workflows/android-build.yml +++ b/.github/workflows/android-build.yml @@ -42,7 +42,7 @@ jobs: targets: aarch64-linux-android,armv7-linux-androideabi,x86_64-linux-android,i686-linux-android - name: Setup Android NDK - uses: nttld/setup-ndk@v1 + uses: nttld/setup-ndk@v1.5.0 id: setup-ndk with: ndk-version: r27c