惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - Franky
J
Java Code Geeks
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Jina AI
Jina AI
博客园 - 司徒正美
Stack Overflow Blog
Stack Overflow Blog
美团技术团队
L
LangChain Blog
WordPress大学
WordPress大学
A
About on SuperTechFans
Martin Fowler
Martin Fowler
月光博客
月光博客
Y
Y Combinator Blog
U
Unit 42
D
Docker
Recent Announcements
Recent Announcements
Hugging Face - Blog
Hugging Face - Blog
B
Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
G
Google Developers Blog
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
improve: refresh Android overview control surface (#95557...
Solvely-Coli · 2026-06-23 · via Recent Commits to openclaw:main

@@ -55,7 +55,7 @@ import androidx.compose.ui.text.style.TextOverflow

5555

import androidx.compose.ui.unit.dp

5656

import androidx.compose.ui.unit.sp

575758-

/** Session browser for recent and currently-live chat sessions. */

58+

/** Session browser for recent and current chat sessions. */

5959

@Composable

6060

internal fun SessionsScreen(

6161

viewModel: MainViewModel,

@@ -73,7 +73,7 @@ internal fun SessionsScreen(

7373

.let { rows ->

7474

when (filter) {

7575

SessionFilter.Recent -> rows

76-

SessionFilter.Live -> rows.filter { it.key == chatSessionKey }

76+

SessionFilter.Current -> rows.filter { it.key == chatSessionKey }

7777

}

7878

}.let { rows ->

7979

if (recentFirst) {

@@ -92,12 +92,12 @@ internal fun SessionsScreen(

9292

}

93939494

ClawScaffold(

95-

contentPadding = PaddingValues(start = 20.dp, top = 14.dp, end = 20.dp, bottom = 6.dp),

95+

contentPadding = PaddingValues(start = 16.dp, top = 10.dp, end = 16.dp, bottom = 4.dp),

9696

contentWindowInsets = WindowInsets.safeDrawing.only(WindowInsetsSides.Top + WindowInsetsSides.Horizontal),

9797

) {

9898

LazyColumn(

9999

modifier = Modifier.fillMaxSize(),

100-

verticalArrangement = Arrangement.spacedBy(7.dp),

100+

verticalArrangement = Arrangement.spacedBy(9.dp),

101101

contentPadding = PaddingValues(bottom = 4.dp),

102102

) {

103103

item {

@@ -106,7 +106,7 @@ internal fun SessionsScreen(

106106

verticalAlignment = Alignment.CenterVertically,

107107

horizontalArrangement = Arrangement.spacedBy(8.dp),

108108

) {

109-

Text(text = "Sessions", style = ClawTheme.type.display.copy(fontSize = 17.4.sp, lineHeight = 21.sp), color = ClawTheme.colors.text, modifier = Modifier.weight(1f))

109+

Text(text = "Sessions", style = ClawTheme.type.display.copy(fontSize = 24.sp, lineHeight = 28.sp), color = ClawTheme.colors.text, modifier = Modifier.weight(1f))

110110

SessionPlainIconButton(icon = Icons.Default.Search, contentDescription = "Search sessions", onClick = onOpenCommand)

111111

SessionPlainIconButton(icon = Icons.Default.SwapVert, contentDescription = "Reverse session sort", onClick = { recentFirst = !recentFirst })

112112

}

@@ -115,7 +115,7 @@ internal fun SessionsScreen(

115115

item {

116116

Row(horizontalArrangement = Arrangement.spacedBy(5.dp)) {

117117

FilterPill(text = "Recent", icon = Icons.Outlined.AccessTime, active = filter == SessionFilter.Recent, onClick = { filter = SessionFilter.Recent })

118-

FilterPill(text = "Live", icon = Icons.Outlined.MicNone, active = filter == SessionFilter.Live, live = sessions.any { it.key == chatSessionKey }, onClick = { filter = SessionFilter.Live })

118+

FilterPill(text = "Current", icon = Icons.Outlined.MicNone, active = filter == SessionFilter.Current, showDot = sessions.any { it.key == chatSessionKey }, onClick = { filter = SessionFilter.Current })

119119

}

120120

}

121121

@@ -179,7 +179,7 @@ private fun FilterPill(

179179

text: String,

180180

icon: ImageVector? = null,

181181

active: Boolean = false,

182-

live: Boolean = false,

182+

showDot: Boolean = false,

183183

dropdown: Boolean = false,

184184

onClick: (() -> Unit)? = null,

185185

) {

@@ -198,7 +198,7 @@ private fun FilterPill(

198198

) {

199199

icon?.let { Icon(imageVector = it, contentDescription = null, modifier = Modifier.size(12.dp), tint = ClawTheme.colors.text) }

200200

Text(text = text, style = ClawTheme.type.label, color = ClawTheme.colors.text, maxLines = 1)

201-

if (live) {

201+

if (showDot) {

202202

Box(modifier = Modifier.size(4.dp).clip(CircleShape).background(ClawTheme.colors.success))

203203

}

204204

if (dropdown) {

@@ -258,7 +258,7 @@ private fun SessionRow(

258258

Text(text = subtitle, style = ClawTheme.type.caption.copy(fontSize = 12.5.sp, lineHeight = 16.sp), color = ClawTheme.colors.textMuted, maxLines = 1)

259259

Row(horizontalArrangement = Arrangement.spacedBy(4.dp)) {

260260

SessionMiniTag(text = "Workspace")

261-

SessionMiniTag(text = if (active) "Active" else "OpenClaw")

261+

SessionMiniTag(text = if (active) "Current" else "OpenClaw")

262262

}

263263

}

264264

}

@@ -320,21 +320,21 @@ private fun SessionMiniTag(text: String) {

320320321321

private enum class SessionFilter {

322322

Recent,

323-

Live,

323+

Current,

324324

}

325325326326

/** Empty-state title selected by the active session browser filter. */

327327

private fun emptySessionTitle(filter: SessionFilter): String =

328328

when (filter) {

329329

SessionFilter.Recent -> "No sessions yet"

330-

SessionFilter.Live -> "No live session"

330+

SessionFilter.Current -> "No current session"

331331

}

332332333333

/** Empty-state body selected by the active session browser filter. */

334334

private fun emptySessionBody(filter: SessionFilter): String =

335335

when (filter) {

336336

SessionFilter.Recent -> "Start a new conversation and it will show up here."

337-

SessionFilter.Live -> "Open Chat to start or resume the current session."

337+

SessionFilter.Current -> "Open Chat to start or resume the current session."

338338

}

339339340340

/** Formats session timestamps for compact mobile metadata. */