repo stringlengths 5 53 | pr_number int32 1 321k | task_type stringclasses 2
values | issue_text stringlengths 0 81.2k | pr_title stringlengths 1 319 | pr_body stringlengths 0 105k | base_sha stringlengths 40 40 | head_sha stringlengths 40 40 | gold_diff stringlengths 0 202M | changed_files listlengths 0 100 | review_threads listlengths 0 100 | test_patch stringlengths 0 23.4M | merged bool 1
class |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
HKUDS/nanobot | 4,335 | issue_to_patch | Use botIcon if defined when starting agent mode :-)
### Problem / Motivation
When entering nanobot agent, "puppy" is displayed first time through rather than what is defined in botIcon.
botIcon is afterward displayed.
### Proposed Solution
If botIcon is defined in config.json, then it it at startup in agent mode.
... | fix(cli): use configured bot_icon in agent interactive banner (#4262) | Closes #4262
Use the configured `bot_icon` in the `nanobot agent` startup banner instead of the hardcoded `__logo__`, so a custom `botIcon` shows from the start (falls back to the default when unset).
| be6419b289f68df352d8c93c6b20f03855426964 | 2261179dd111706be480f941efe887c6c1e61efd | diff --git a/nanobot/cli/commands.py b/nanobot/cli/commands.py
index 0b7539fdf4..93f5dc30d0 100644
--- a/nanobot/cli/commands.py
+++ b/nanobot/cli/commands.py
@@ -1282,7 +1282,8 @@ async def run_once():
from nanobot.bus.events import InboundMessage
_init_prompt_session()
_model, _preset_tag =... | [
"nanobot/cli/commands.py"
] | [] | true | |
HKUDS/nanobot | 4,326 | issue_to_patch | idleCompact should use the complete session history instead of the history that removes the last 8 messages
### Bug Description
在一次对话过程中,模型可能会犯错,用户会不断纠正它,一轮简化的对话过程如下,最终以用户纠正错误后正确完成任务结束:
用户请求任务-->模型回复-->用户指出错误/补充信息-->模型回复正确结果(完成了要求,用户不再继续对话)
当前的 idleCompact 机制仅对除最后8条消息外的对话历史进行总结,在上述场景下最后的行为纠正和正确结果可能不包含在发送给模型进行总结的消息上下... | fix(memory): summarize full session tail during idle compaction (#4264) | ## Summary
- Fixes #4264: `idleCompact` now summarizes over the **full unconsolidated session tail**, including the recent suffix it retains, instead of only the dropped prefix.
- Adds an opt-in `summary_context` argument to `Consolidator.archive` so the summarization window and the set of archived (removed) messages c... | 7ff8e02eaf2a5b5965695ccc6dc6c61cde051780 | 1d1a61f0999aaa00b57d3c906ca097b3e1440d30 | diff --git a/nanobot/agent/memory.py b/nanobot/agent/memory.py
index 9ba60bb31c..e46d6cda1b 100644
--- a/nanobot/agent/memory.py
+++ b/nanobot/agent/memory.py
@@ -799,15 +799,22 @@ async def archive(
messages: list[dict],
*,
session_key: str | None = None,
+ summary_messages: list[dict... | [
"nanobot/agent/memory.py",
"tests/agent/test_consolidator.py"
] | [] | diff --git a/tests/agent/test_consolidator.py b/tests/agent/test_consolidator.py
index 61ad0109ba..a87445a6c1 100644
--- a/tests/agent/test_consolidator.py
+++ b/tests/agent/test_consolidator.py
@@ -401,6 +401,56 @@ async def test_archives_prefix_keeps_suffix(self, real_consolidator, mock_provid
assert meta["t... | true |
HKUDS/nanobot | 4,327 | issue_to_patch | Fix WebUI startup blocking on slow gateway routes | ## Summary
- move slow WebUI HTTP handlers off the gateway event loop and log slow WebUI API routes
- avoid full session JSONL reads when resolving workspace scope for the sidebar
- make the chat surface fetch only installed CLI apps instead of the full remote catalog at startup
## Verification
- `pytest tests/utils/t... | 7ff8e02eaf2a5b5965695ccc6dc6c61cde051780 | 38df7bac4ddf2c6a5fa864b85a49f77a798dc9ed | diff --git a/nanobot/apps/cli/service.py b/nanobot/apps/cli/service.py
index b0ed093769e..ba9bca43eb6 100644
--- a/nanobot/apps/cli/service.py
+++ b/nanobot/apps/cli/service.py
@@ -685,6 +685,29 @@ def payload(self, *, force_refresh: bool = False) -> dict[str, Any]:
"catalog_updated_at": updated,
... | [
"nanobot/apps/cli/service.py",
"nanobot/session/manager.py",
"nanobot/webui/cli_apps_api.py",
"nanobot/webui/settings_routes.py",
"nanobot/webui/workspaces.py",
"nanobot/webui/ws_http.py",
"tests/channels/test_websocket_channel.py",
"tests/channels/test_websocket_http_routes.py",
"tests/utils/test_w... | [] | diff --git a/tests/channels/test_websocket_channel.py b/tests/channels/test_websocket_channel.py
index 44eae486d53..b695665c19c 100644
--- a/tests/channels/test_websocket_channel.py
+++ b/tests/channels/test_websocket_channel.py
@@ -2654,7 +2654,7 @@ def test_sessions_list_includes_active_run_started_at(monkeypatch) ->... | true | |
HKUDS/nanobot | 4,314 | issue_to_patch | Break tool config schema import cycle | ## Summary
- Move the shared Pydantic config `Base` into a tiny `nanobot.config_base` module.
- Keep built-in tool config classes beside their tool implementations, preserving the self-describing tool authoring pattern.
- Update built-in tool config classes to depend on `config_base` instead of the full `config.schema`... | 7ff8e02eaf2a5b5965695ccc6dc6c61cde051780 | 1957c0622473e036220ce8b60312541e569ea248 | diff --git a/nanobot/agent/tools/cli_apps.py b/nanobot/agent/tools/cli_apps.py
index 9bee1a34a0e..e794c09d657 100644
--- a/nanobot/agent/tools/cli_apps.py
+++ b/nanobot/agent/tools/cli_apps.py
@@ -11,7 +11,7 @@
from nanobot.agent.tools.schema import ArraySchema, BooleanSchema, IntegerSchema, StringSchema, tool_paramet... | [
"nanobot/agent/tools/cli_apps.py",
"nanobot/agent/tools/image_generation.py",
"nanobot/agent/tools/self.py",
"nanobot/agent/tools/shell.py",
"nanobot/agent/tools/web.py",
"nanobot/config/schema.py",
"nanobot/config_base.py",
"tests/config/test_tool_config_boundaries.py",
"tests/tools/test_tool_loade... | [] | diff --git a/tests/config/test_tool_config_boundaries.py b/tests/config/test_tool_config_boundaries.py
new file mode 100644
index 00000000000..7de583f3b78
--- /dev/null
+++ b/tests/config/test_tool_config_boundaries.py
@@ -0,0 +1,38 @@
+import ast
+import subprocess
+import sys
+from pathlib import Path
+
+
+def test_c... | true | |
HKUDS/nanobot | 4,294 | issue_to_patch | chore(repo): remove desktop app from core repo | ## Summary
This PR removes the desktop app from the public nanobot core repository.
Desktop is now intended to live in a separate private host repository, while this repo keeps the open-source surface focused on:
- nanobot core runtime
- WebUI source
- WebUI backend APIs
- packaged WebUI static assets for the Python... | ffae1dca6d132020514f14ddb34e61705b5c54a1 | 5cc7e01778d032469c1aeeb71f2c124d9c1ee717 | diff --git a/.gitignore b/.gitignore
index 043d34184e1..19b129a268d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,13 +7,6 @@
.web
.orion
-# Desktop app generated artifacts
-desktop/build/
-desktop/dist/
-desktop/node_modules/
-desktop/package-lock.json
-desktop/resources/nanobot-engine/
-
# Claude / AI assistant ... | [
".gitignore",
"desktop/README.md",
"desktop/bun.lock",
"desktop/docs/development.md",
"desktop/docs/host-contract.md",
"desktop/docs/webui-sync.md",
"desktop/package.json",
"desktop/scripts/prepare-engine.mjs",
"desktop/src/main.ts",
"desktop/src/notifications.ts",
"desktop/src/preload.cts",
"... | [] | diff --git a/tests/cli/test_commands.py b/tests/cli/test_commands.py
index 3e30de85840..4f759f05839 100644
--- a/tests/cli/test_commands.py
+++ b/tests/cli/test_commands.py
@@ -1625,94 +1625,6 @@ def test_gateway_cli_port_overrides_configured_port(monkeypatch, tmp_path: Path)
assert "port 18792" in result.stdout
... | true | |
HKUDS/nanobot | 4,299 | issue_to_patch | feat(cron): bind scheduled automations to sessions | ## Summary
- Bind cron jobs to the concrete origin session via `payload.session_key`; when `unified_session` is enabled, cron still owns the creating session rather than `unified:default`.
- Migrate legacy delivery-target cron payloads at the cron service boundary into the same session-bound shape; malformed legacy use... | ffae1dca6d132020514f14ddb34e61705b5c54a1 | 32d8a1dd7b25d08f06a4b1e3de55c5c50cb3f88b | diff --git a/nanobot/agent/cron_turns.py b/nanobot/agent/cron_turns.py
new file mode 100644
index 00000000000..a589338c396
--- /dev/null
+++ b/nanobot/agent/cron_turns.py
@@ -0,0 +1,142 @@
+"""Coordination for scheduled cron turns."""
+
+from __future__ import annotations
+
+import asyncio
+import dataclasses
+from col... | [
"nanobot/agent/cron_turns.py",
"nanobot/agent/loop.py",
"nanobot/agent/tools/cron.py",
"nanobot/channels/manager.py",
"nanobot/cli/commands.py",
"nanobot/cron/bound_runner.py",
"nanobot/cron/service.py",
"nanobot/cron/session_delivery.py",
"nanobot/cron/session_turns.py",
"nanobot/cron/types.py",
... | [] | diff --git a/tests/agent/test_evaluator.py b/tests/agent/test_evaluator.py
index 62da88d6687..acefe40e123 100644
--- a/tests/agent/test_evaluator.py
+++ b/tests/agent/test_evaluator.py
@@ -1,7 +1,7 @@
import pytest
-from nanobot.utils.evaluator import evaluate_response
from nanobot.providers.base import LLMProvider... | true | |
HKUDS/nanobot | 4,226 | issue_to_patch | feat(bridge): WhatsApp forwarded message detection, startup guard, and contact handling | ## Summary
Three improvements to the WhatsApp Baileys bridge that solve real-world issues encountered in production use.
## Changes
### 1. Forwarded message detection
Extracts `contextInfo.isForwarded` from all message types (text, image, video, audio, document) and passes it as `isForwarded` in the `InboundMessage... | 2d9260cb9f857fcf987116290f954487b1a323a7 | e1ff0f37d9b6fcec649804a88acbf3cd01bcbb29 | diff --git a/bridge/src/whatsapp.ts b/bridge/src/whatsapp.ts
index 46dcbe4c974..1b4fb3b9ba3 100644
--- a/bridge/src/whatsapp.ts
+++ b/bridge/src/whatsapp.ts
@@ -30,6 +30,7 @@ export interface InboundMessage {
content: string;
timestamp: number;
isGroup: boolean;
+ isForwarded?: boolean;
wasMentioned?: bool... | [
"bridge/src/whatsapp.ts",
"nanobot/channels/whatsapp.py",
"tests/channels/test_whatsapp_channel.py"
] | [] | diff --git a/tests/channels/test_whatsapp_channel.py b/tests/channels/test_whatsapp_channel.py
index cb5fc639b20..04d498dee44 100644
--- a/tests/channels/test_whatsapp_channel.py
+++ b/tests/channels/test_whatsapp_channel.py
@@ -291,6 +291,30 @@ async def test_voice_message_transcription_uses_media_path():
assert ... | true | |
HKUDS/nanobot | 4,306 | issue_to_patch | nanobot-ai conversation history contains orphaned tool results without corresponding tool_calls
### Bug Description
在 PR #3984 (https://github.com/HKUDS/nanobot/pull/3984)修复 tool_call_id 替换问题后,对话历史中仍然存在孤立的 tool result 消息——某些 role: "tool" 消息的 tool_call_id 在前面任何 assistant 消息的 tool_calls[]
里都找不到对应项。
OpenAI / Anthrop... | fix(session): prevent orphaned tool results from being persisted to history (#4006) | Fixes #4006
## Summary
Session history could end up with `role:"tool"` messages whose `tool_call_id` matches no prior assistant `tool_calls[].id`. Strict OpenAI/Anthropic-compatible APIs reject such histories, and trajectory renderers report "Orphaned Tool Results". A maintainer noted no reproduction path had been fo... | 2d9260cb9f857fcf987116290f954487b1a323a7 | 62e1a746204aa8e57c4fea0c16e8c510aec5b843 | diff --git a/nanobot/agent/loop.py b/nanobot/agent/loop.py
index 3431237fae2..f50ac826820 100644
--- a/nanobot/agent/loop.py
+++ b/nanobot/agent/loop.py
@@ -1577,6 +1577,13 @@ def _save_turn(
"""Save new-turn messages into session, truncating large tool results."""
from datetime import datetime
+ ... | [
"nanobot/agent/loop.py",
"nanobot/session/turn_continuation.py",
"tests/agent/test_loop_save_turn.py",
"tests/session/test_turn_continuation.py"
] | [] | diff --git a/tests/agent/test_loop_save_turn.py b/tests/agent/test_loop_save_turn.py
index 295bc488805..2df5f091071 100644
--- a/tests/agent/test_loop_save_turn.py
+++ b/tests/agent/test_loop_save_turn.py
@@ -286,11 +286,22 @@ def test_save_turn_keeps_tool_results_under_16k() -> None:
loop._save_turn(
s... | true |
HKUDS/nanobot | 3,239 | issue_to_patch | Multiple custom providers: ?
### Problem / Motivation
I need more than one "custom" (and "openai") provider.
### Proposed Solution
The Providers section could have a "template" parameter that selects the actual built-in provider and defaults to the provider name if not present.
### Alternatives Considered
_No re... | feat: support multiple custom OpenAI-compatible providers | # Feature: Support Multiple Custom OpenAI-Compatible Providers
## Problem
Currently, nanobot only supports a single custom provider named `custom`. Users who need to connect to multiple custom OpenAI-compatible endpoints (e.g., different internal APIs, multiple cloud providers) have no clean way to do this.
## Soluti... | 2d9260cb9f857fcf987116290f954487b1a323a7 | 525b45407f8b00b18d2f43d204916cf44fb25235 | diff --git a/docs/configuration.md b/docs/configuration.md
index 0e4ab2bcaa9..aa1939a17ca 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -205,6 +205,7 @@ Tracing covers the providers that go through nanobot's OpenAI-compatible client
> - **Step Fun (Mainland China)**: If your API key is from Step Fu... | [
"docs/configuration.md",
"docs/provider-cookbook.md",
"docs/providers.md",
"docs/troubleshooting.md",
"nanobot/config/schema.py",
"nanobot/providers/factory.py",
"nanobot/providers/openai_compat_provider.py",
"nanobot/providers/registry.py",
"nanobot/webui/settings_api.py",
"tests/cli/test_command... | [] | diff --git a/tests/cli/test_commands.py b/tests/cli/test_commands.py
index 3e30de85840..114b90df32f 100644
--- a/tests/cli/test_commands.py
+++ b/tests/cli/test_commands.py
@@ -664,6 +664,165 @@ def test_make_provider_passes_extra_headers_to_custom_provider():
assert kwargs["default_headers"]["x-session-affinity"]... | true |
HKUDS/nanobot | 4,289 | issue_to_patch | feat(slack): add groupRequireMention to scope allowlist channels to @mentions | ## What
Adds a `groupRequireMention` option to the Slack channel. When `groupPolicy` is `"allowlist"` and `groupRequireMention` is `true`, the bot responds **only** in channels listed in `groupAllowFrom` **and** only when @mentioned.
## Why
Today Slack's `groupPolicy` forces a choice:
- `"allowlist"` restricts *whi... | b8a4ceb30cb8b59f2aef2326fed38a00a0482b52 | 1bbbe237fcb5836e368c8859951a65cf221fb518 | diff --git a/docs/chat-apps.md b/docs/chat-apps.md
index 068e7edfc34..f23ed7b915d 100644
--- a/docs/chat-apps.md
+++ b/docs/chat-apps.md
@@ -572,7 +572,9 @@ nanobot gateway
DM the bot directly or @mention it in a channel — it should respond!
> [!TIP]
-> - `groupPolicy`: `"mention"` (default — respond only when @men... | [
"docs/chat-apps.md",
"nanobot/channels/slack.py",
"tests/channels/test_slack_channel.py"
] | [] | diff --git a/tests/channels/test_slack_channel.py b/tests/channels/test_slack_channel.py
index d0f41766acd..ba8275eb379 100644
--- a/tests/channels/test_slack_channel.py
+++ b/tests/channels/test_slack_channel.py
@@ -655,3 +655,62 @@ def test_slack_channel_uses_channel_aware_allow_policy() -> None:
channel = Slack... | true | |
HKUDS/nanobot | 4,281 | issue_to_patch | feat(transcription): add SiliconFlow as transcription provider | ## Summary
- Register SiliconFlow in transcription registry with default model `FunAudioLLM/SenseVoiceSmall` and alias `silicon`
- Reuse existing `OpenAITranscriptionProvider` adapter (Whisper-compatible)
- Add generic key/base resolution: fallback to registry `env_key` and `default_api_base` when provider config is ab... | ddbd7ca39e2bab7a108e3dca1156afc43b023f20 | d72e3cdf8eb66a55b985811efb4795f48759f4d5 | diff --git a/nanobot/audio/transcription.py b/nanobot/audio/transcription.py
index fa46dbb233a..92dffdf789e 100644
--- a/nanobot/audio/transcription.py
+++ b/nanobot/audio/transcription.py
@@ -8,6 +8,7 @@
from __future__ import annotations
+import os
from contextlib import suppress
from dataclasses import datacl... | [
"nanobot/audio/transcription.py",
"nanobot/audio/transcription_registry.py",
"tests/providers/test_transcription.py",
"tests/webui/test_settings_api.py"
] | [] | diff --git a/tests/providers/test_transcription.py b/tests/providers/test_transcription.py
index dadf59440dd..c0acae59a5c 100644
--- a/tests/providers/test_transcription.py
+++ b/tests/providers/test_transcription.py
@@ -3,6 +3,7 @@
from __future__ import annotations
import base64
+import os
from pathlib import Pa... | true | |
HKUDS/nanobot | 4,257 | issue_to_patch | fix(utils): make split_message fenced-code-block-aware | ## Summary
When split_message splits a long message at a character boundary, it can land inside a fenced code block. The opening and closing fences end up in different chunks, causing both to render broken HTML (unclosed pre/code in chunk 1, stray code in chunk 2).
This PR makes split_message fence-aware: it detects ... | 06d454a225ca45af9081e1f70db0ce869a15bcca | bb877ca744abf3bd5300f5e6b097e381163683a4 | diff --git a/nanobot/channels/telegram.py b/nanobot/channels/telegram.py
index 876985fe0b1..eac42da846a 100644
--- a/nanobot/channels/telegram.py
+++ b/nanobot/channels/telegram.py
@@ -36,13 +36,86 @@
TELEGRAM_MAX_MESSAGE_LEN = 4000 # Telegram message character limit
# Telegram's actual API limit is 4096; we split... | [
"nanobot/channels/telegram.py",
"tests/channels/test_telegram_channel.py",
"tests/utils/test_helpers.py"
] | [
{
"comment": "This changes the contract of the shared `split_message` helper. The linked bug is caused by Telegram splitting raw Markdown and then converting each chunk to HTML, but this helper is also used by Signal, Slack, Discord, Weixin, and others as a generic text chunker. Please move the fenced-code-awar... | diff --git a/tests/channels/test_telegram_channel.py b/tests/channels/test_telegram_channel.py
index 05e066895d1..fbbc19f9fd0 100644
--- a/tests/channels/test_telegram_channel.py
+++ b/tests/channels/test_telegram_channel.py
@@ -17,6 +17,8 @@
TELEGRAM_REPLY_CONTEXT_MAX_LEN,
TelegramChannel,
TelegramConfi... | true | |
HKUDS/nanobot | 4,278 | issue_to_patch | feat(webui): segment transcript storage | ## Summary
This PR makes large WebUI chats cheaper to open without dropping history.
It replaces the previous single-file transcript replay path with a segmented JSONL store: the active transcript path stays append-only, while older completed turns rotate into immutable segment files. The WebUI now loads the latest p... | 425565608912308d8dd7f2ef700bda1fc6831b66 | e1e643de2aec43f3ca4aab172a468e17d45a5f1a | diff --git a/nanobot/session/manager.py b/nanobot/session/manager.py
index 73fb52cec33..890b25c203c 100644
--- a/nanobot/session/manager.py
+++ b/nanobot/session/manager.py
@@ -748,7 +748,7 @@ def list_sessions(self) -> list[dict[str, Any]]:
for path in self.sessions_dir.glob("*.jsonl"):
fallback_... | [
"nanobot/session/manager.py",
"nanobot/webui/session_list_index.py",
"nanobot/webui/settings_api.py",
"nanobot/webui/transcript.py",
"nanobot/webui/ws_http.py",
"tests/channels/test_websocket_channel.py",
"tests/utils/test_webui_thread_disk.py",
"tests/utils/test_webui_transcript.py",
"tests/webui/t... | [] | diff --git a/tests/channels/test_websocket_channel.py b/tests/channels/test_websocket_channel.py
index b74b54ad64e..b8ee27a76e9 100644
--- a/tests/channels/test_websocket_channel.py
+++ b/tests/channels/test_websocket_channel.py
@@ -2618,15 +2618,16 @@ def test_parse_envelope_rejects_legacy_and_garbage() -> None:
... | true | |
HKUDS/nanobot | 4,272 | issue_to_patch | fix(providers): allow retry and fallback on stream stalled timeout | ## Summary
When an LLM stream stalls mid-response (e.g. the model starts emitting tokens then stops), the system now **retries the same model** and **falls back to alternate models** instead of returning a truncated reply with no recovery.
**Changes:**
- `nanobot/providers/base.py` — `_run_with_retry`: when `error_ki... | 1b5f5b94d520ffb4eeb1637eb5a1a06f2e32640e | b096c91b37c2f8e520fcc0dfbbd9c752d8cc068f | diff --git a/docs/configuration.md b/docs/configuration.md
index 5bb54b53a59..acdbc123844 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -1268,7 +1268,7 @@ Inline fallback object:
Use inline objects only when a fallback is not worth naming as a reusable preset. `fallbackModels` belongs under `agen... | [
"docs/configuration.md",
"nanobot/agent/runner.py",
"nanobot/providers/base.py",
"nanobot/providers/fallback_provider.py",
"tests/agent/test_loop_progress.py",
"tests/agent/test_runner_fallback.py",
"tests/providers/test_provider_retry.py"
] | [] | diff --git a/tests/agent/test_loop_progress.py b/tests/agent/test_loop_progress.py
index bbac2e6af2b..19473cc7f44 100644
--- a/tests/agent/test_loop_progress.py
+++ b/tests/agent/test_loop_progress.py
@@ -492,6 +492,61 @@ async def chat_stream_with_retry(*, on_content_delta, **kwargs):
assert turn_end_msgs[0].... | true | |
HKUDS/nanobot | 4,255 | issue_to_patch | refactor(webui): on-demand version check in Settings > About | Closes #4235
## Summary
Replaces the real-time PyPI polling and WebSocket push notifications with a lightweight, click-to-check version button in **Settings > Overview > About**.
## Design principles
- **No background polling** — no daemon threads, no periodic PyPI requests
- **No main-page UI** — version info live... | 56ce18167e2453d5a72b4f72f332092684f754e7 | 973d5147c871bc5c7487f352813c1b6c0973cc63 | diff --git a/nanobot/webui/settings_api.py b/nanobot/webui/settings_api.py
index 87d0b77e1d4..8711834dbd4 100644
--- a/nanobot/webui/settings_api.py
+++ b/nanobot/webui/settings_api.py
@@ -34,9 +34,18 @@
write_webui_default_access_mode,
)
+from nanobot import __version__
+
QueryParams = dict[str, list[str]]
R... | [
"nanobot/webui/settings_api.py",
"nanobot/webui/settings_routes.py",
"nanobot/webui/version_check.py",
"webui/src/components/settings/SettingsView.tsx",
"webui/src/lib/api.ts",
"webui/src/lib/types.ts"
] | [] | true | ||
HKUDS/nanobot | 4,273 | issue_to_patch | exec工具无法通过pip正常安装python第三方库
### Problem / Motivation
问题:exec工具无法通过pip正常安装python第三方库
描述:当需要执行python脚本时,难免需要安装导入第三方库,然后使用exec工具执行脚本,当前的系统python环境默认是拒绝pip安装第三方包的。
分析:尝试通过追加python虚拟环境到exec工具的path中,但是在实际使用发现并无效果,检查代码时发现追加的python虚拟环境是在$PATH变量后面,这就造成优先使用的还是系统python。
command = f'export PATH="$PATH{os.pathsep}$NANOBOT_PATH_AP... | feat(exec): add pathPrepend config | ## Summary
- add `tools.exec.pathPrepend` so configured tool directories can take `PATH` lookup precedence
- preserve existing `tools.exec.pathAppend` append-only behavior
- expose `exec_path_prepend_set` in the WebUI settings payload and TypeScript type
- document the new config option next to `pathAppend`
Fi... | 9c492143b4d2288f2fabbcf48965a106e098e4f4 | 5064acd5cd7b9ed3f1fba1e014b323b23b8ee50c | diff --git a/docs/configuration.md b/docs/configuration.md
index 5bb54b53a59..8b2348f0388 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -1708,6 +1708,7 @@ For API keys, tokens, and other secrets, see [Environment Variables for Secrets]
| `tools.exec.sandbox` | `""` | Sandbox backend for shell comma... | [
"docs/configuration.md",
"nanobot/agent/tools/shell.py",
"nanobot/webui/settings_api.py",
"tests/tools/test_exec_env.py",
"tests/tools/test_exec_platform.py",
"tests/tools/test_tool_loader.py",
"tests/webui/test_settings_api.py",
"webui/src/lib/types.ts",
"webui/src/tests/app-layout.test.tsx",
"we... | [] | diff --git a/tests/tools/test_exec_env.py b/tests/tools/test_exec_env.py
index b9567f29dfb..1d749a07898 100644
--- a/tests/tools/test_exec_env.py
+++ b/tests/tools/test_exec_env.py
@@ -45,6 +45,28 @@ async def test_exec_path_append_preserves_system_path():
assert "Exit code: 0" in result
+@_UNIX_ONLY
+@pytest.... | true |
HKUDS/nanobot | 4,274 | issue_to_patch | `history.jsonl` 跨会话注入导致上下文污染
### Bug Description
# `history.jsonl` 跨会话注入导致上下文污染
## 问题描述
`history.jsonl` 中的每条 entry 来源于 **单个会话** 的消息摘要(通过 `Consolidator.archive()` 生成),但 `ContextBuilder.build_system_prompt()` 在注入 `# Recent History` 时,**未做会话隔离**,会将所有会话尚未被 Dream 处理的 entry 全部混入当前会话的 system prompt。
## 数据流分析
### 写入路径(`C... | Scope prompt recent history by session | ## Summary
- Add optional `session_key` metadata to `history.jsonl` writes from summaries and raw archive fallbacks.
- Filter `# Recent History` prompt injection by current session for non-unified mode.
- In unified mode, keep user-visible/global history while excluding internal cron/dream/heartbeat sessions; cron sess... | 7186039be13dba487d24f2a78031bd94701c802f | dece08428e91e2c5080701844eddc6858dce20cb | diff --git a/nanobot/agent/context.py b/nanobot/agent/context.py
index d89f0c9274e..a81b973e9d0 100644
--- a/nanobot/agent/context.py
+++ b/nanobot/agent/context.py
@@ -70,6 +70,8 @@ def build_system_prompt(
session_summary: str | None = None,
workspace: Path | None = None,
include_memory_rec... | [
"nanobot/agent/context.py",
"nanobot/agent/loop.py",
"nanobot/agent/memory.py",
"nanobot/command/builtin.py",
"tests/agent/test_consolidate_offset.py",
"tests/agent/test_consolidator.py",
"tests/agent/test_context_prompt_cache.py",
"tests/agent/test_loop_consolidation_tokens.py",
"tests/agent/test_m... | [] | diff --git a/tests/agent/test_consolidate_offset.py b/tests/agent/test_consolidate_offset.py
index c4b0e9ea87e..74e796144fe 100644
--- a/tests/agent/test_consolidate_offset.py
+++ b/tests/agent/test_consolidate_offset.py
@@ -519,8 +519,9 @@ async def test_new_clears_session_immediately_even_if_archive_fails(self, tmp_p... | true |
HKUDS/nanobot | 4,275 | issue_to_patch | Fail fast on invalid config files | ## Summary
- Fail fast when an existing config file cannot be parsed, migrated, or validated.
- Preserve default config behavior when no config file exists.
- Add focused config load error tests.
## Verification
- PASS: `python -m nanobot agent --config .verify\work\bad-config.json --workspace .verify\work\workspace -... | 7186039be13dba487d24f2a78031bd94701c802f | f037a35c7bc37b8921d83b30d154b109321299cf | diff --git a/nanobot/config/loader.py b/nanobot/config/loader.py
index 545cd0bdc65..0fd1aa4c5ef 100644
--- a/nanobot/config/loader.py
+++ b/nanobot/config/loader.py
@@ -7,7 +7,6 @@
from typing import Any
import pydantic
-from loguru import logger
from pydantic import BaseModel
from nanobot.config.schema import ... | [
"nanobot/config/loader.py",
"tests/config/test_config_load_errors.py"
] | [] | diff --git a/tests/config/test_config_load_errors.py b/tests/config/test_config_load_errors.py
new file mode 100644
index 00000000000..1f52f578e7a
--- /dev/null
+++ b/tests/config/test_config_load_errors.py
@@ -0,0 +1,30 @@
+import json
+
+import pytest
+
+from nanobot.config.loader import load_config
+
+
+def test_loa... | true | |
HKUDS/nanobot | 4,277 | issue_to_patch | fix(feishu): lazy-load lark SDK during gateway startup | ## Summary
- Lazy-load the heavy `lark_oapi` SDK when the Feishu channel actually starts instead of during channel discovery/construction.
- Clean up the import-time SDK WebSocket loop when the lazy import first happens in a worker thread, then explicitly bind/restore the loop used by the Feishu WebSocket thread.
- Add... | 7186039be13dba487d24f2a78031bd94701c802f | f1416e2fb280d67b9683fe82466eb67925797963 | diff --git a/nanobot/channels/feishu.py b/nanobot/channels/feishu.py
index 060ba2bb5af..38155434741 100644
--- a/nanobot/channels/feishu.py
+++ b/nanobot/channels/feishu.py
@@ -1,5 +1,7 @@
"""Feishu/Lark channel implementation using lark-oapi SDK with WebSocket long connection."""
+from __future__ import annotations... | [
"nanobot/channels/feishu.py",
"tests/channels/test_feishu_lazy_import.py"
] | [] | diff --git a/tests/channels/test_feishu_lazy_import.py b/tests/channels/test_feishu_lazy_import.py
new file mode 100644
index 00000000000..d43c39ebbab
--- /dev/null
+++ b/tests/channels/test_feishu_lazy_import.py
@@ -0,0 +1,46 @@
+import subprocess
+import sys
+
+
+def _run_import_probe(source: str) -> str:
+ proc =... | true | |
HKUDS/nanobot | 4,239 | issue_to_patch | bug: bwrap sandbox does not reset HOME environment variable, breaking tool writes
### Bug Description
When using the Bubblewrap sandbox (`"sandbox": "bwrap"`), the `$HOME` environment variable inside the sandbox is not overridden and still points to the host home directory (e.g., `/home/username`). Since the sandbox h... | fix(sandbox): set HOME inside bwrap | ## Summary
- Set `HOME` inside the `bwrap` sandbox to the resolved workspace path.
- Add a regression test that asserts the generated `bwrap` command includes `--setenv HOME <workspace>`.
## Why
When `tools.exec.sandbox` is set to `"bwrap"`, the sandbox only grants write access to the workspace. If `$HOME` still poi... | 4f5f965f090dd37355540c297fa0ba60555fd776 | 65317f1264fc5145f5eb458883714774cd87ef03 | diff --git a/nanobot/agent/tools/sandbox.py b/nanobot/agent/tools/sandbox.py
index 459ce16a3ae..5800f353e99 100644
--- a/nanobot/agent/tools/sandbox.py
+++ b/nanobot/agent/tools/sandbox.py
@@ -26,13 +26,22 @@ def _bwrap(command: str, workspace: str, cwd: str) -> str:
except ValueError:
sandbox_cwd = str(w... | [
"nanobot/agent/tools/sandbox.py",
"tests/tools/test_sandbox.py"
] | [] | diff --git a/tests/tools/test_sandbox.py b/tests/tools/test_sandbox.py
index 82232d83eb1..462d9937f9f 100644
--- a/tests/tools/test_sandbox.py
+++ b/tests/tools/test_sandbox.py
@@ -37,6 +37,17 @@ def test_workspace_bind_mounted_rw(self, tmp_path):
bind_idx = [i for i, t in enumerate(tokens) if t == "--bind"]
... | true |
HKUDS/nanobot | 4,182 | issue_to_patch | search: add Bocha web search provider | Adds Bocha (博查) as a new web search provider for nanobot.
Bocha is the official search API provider for DeepSeek and powers
the majority of AI applications' web search in China.
Changes:
- docs/configuration.md: add provider table entry and config example
- nanobot/agent/tools/web.py: add _search_bocha() with ... | 31bfec58d0b72ec06182f63d862f30915ab5111f | 040ce662872eb483150e78529af65682122ce3d0 | diff --git a/docs/configuration.md b/docs/configuration.md
index 5bb54b53a59..7985e84662a 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -1451,6 +1451,7 @@ By default, web search uses `duckduckgo`, and it works out of the box without an
| `jina` | `apiKey` | `JINA_API_KEY` | Free tier (10M tokens) |... | [
"docs/configuration.md",
"nanobot/agent/tools/web.py",
"nanobot/webui/settings_api.py",
"tests/channels/test_websocket_channel.py",
"tests/tools/test_web_search_tool.py",
"webui/src/components/settings/SettingsView.tsx",
"webui/src/lib/provider-brand.ts",
"webui/src/tests/provider-brand.test.ts"
] | [] | diff --git a/tests/channels/test_websocket_channel.py b/tests/channels/test_websocket_channel.py
index eaf0fac9780..b624df11c1b 100644
--- a/tests/channels/test_websocket_channel.py
+++ b/tests/channels/test_websocket_channel.py
@@ -1700,6 +1700,7 @@ async def test_settings_api_returns_safe_subset_and_updates_whitelist... | true | |
HKUDS/nanobot | 4,267 | issue_to_patch | fix(websocket): Fix bug in webui where session content is dropped | ## Summary
Fixes a WebUI streaming edge case where an assistant reply could be saved in session history but never appear in the rendered conversation.
## Root Cause
`ChannelManager._coalesce_stream_deltas()` can merge queued `_stream_delta` messages into a single `_stream_end` message when the model streams faster t... | 4a58b83acc86155caa03f81d94e4310d5d1f84d7 | 809fba7df2391c97dc3f173cfd74248277fda585 | diff --git a/nanobot/channels/websocket.py b/nanobot/channels/websocket.py
index b3f58d98211..d374caab0f1 100644
--- a/nanobot/channels/websocket.py
+++ b/nanobot/channels/websocket.py
@@ -1059,7 +1059,7 @@ async def send_delta(
buffered.append(delta)
full_text = "".join(buffered)
... | [
"nanobot/channels/websocket.py",
"tests/channels/test_websocket_channel.py"
] | [] | diff --git a/tests/channels/test_websocket_channel.py b/tests/channels/test_websocket_channel.py
index 3e358b07639..224c6e76e7f 100644
--- a/tests/channels/test_websocket_channel.py
+++ b/tests/channels/test_websocket_channel.py
@@ -1015,6 +1015,28 @@ async def test_send_delta_emits_delta_and_stream_end() -> None:
... | true | |
HKUDS/nanobot | 4,260 | issue_to_patch | feat(asr): add StepFun ASR SSE transcription provider | - Add StepFunTranscriptionProvider class in nanobot/providers/transcription.py
- New _post_stepfun_asr_with_retry() function handling SSE stream parsing (transcript.text.delta → transcript.text.done event sequence)
- Register 'stepfun' in transcription_registry.py with default model stepaudio-2.5-asr
- Reuse existin... | 31bfec58d0b72ec06182f63d862f30915ab5111f | c842edf2fc8d773fd4c38b5ee3176e08f710a167 | diff --git a/docs/configuration.md b/docs/configuration.md
index 5bb54b53a59..378b4bed62b 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -239,7 +239,7 @@ Tracing covers the providers that go through nanobot's OpenAI-compatible client
| `lm_studio` | LLM (local, LM Studio) | — |
| `atomic_chat` | LL... | [
"docs/configuration.md",
"nanobot/audio/transcription_registry.py",
"nanobot/config/schema.py",
"nanobot/providers/transcription.py",
"tests/providers/test_stepfun_asr.py"
] | [] | diff --git a/tests/providers/test_stepfun_asr.py b/tests/providers/test_stepfun_asr.py
new file mode 100644
index 00000000000..4074f0a7e0a
--- /dev/null
+++ b/tests/providers/test_stepfun_asr.py
@@ -0,0 +1,427 @@
+"""Tests for StepFun ASR SSE transcription provider."""
+
+from __future__ import annotations
+
+import js... | true | |
HKUDS/nanobot | 4,213 | issue_to_patch | Add Exa web search provider | Hi nanobot team! I've searched the repo to see if anyone had requested exa as a search provider, and having found none and no work on this, am sending a pull request. I read through the contributing guidelines and seems like I've done what's requested. It's my first PR here so hoping I didn't screw anything up.
## S... | 5d91d59cf7142b70e3cd1ad2ffdac1b6497e39be | 755f9949d448e0f983c0f50e980a9a7ce7fe5e39 | diff --git a/nanobot/agent/tools/web.py b/nanobot/agent/tools/web.py
index f4221ca5b9b..29b6aa562d1 100644
--- a/nanobot/agent/tools/web.py
+++ b/nanobot/agent/tools/web.py
@@ -300,6 +300,9 @@ def _effective_provider(self) -> str:
if provider == "kagi":
api_key = self.config.api_key or os.environ.... | [
"nanobot/agent/tools/web.py",
"nanobot/webui/settings_api.py",
"tests/channels/test_websocket_channel.py",
"tests/tools/test_web_search_tool.py"
] | [] | diff --git a/tests/channels/test_websocket_channel.py b/tests/channels/test_websocket_channel.py
index a0dd8ddf4a2..eaf0fac9780 100644
--- a/tests/channels/test_websocket_channel.py
+++ b/tests/channels/test_websocket_channel.py
@@ -1699,6 +1699,7 @@ async def test_settings_api_returns_safe_subset_and_updates_whitelist... | true | |
HKUDS/nanobot | 4,269 | issue_to_patch | fix(agent): finalize max-iteration turns without tools | ## Summary
- Add a no-tools finalization pass when a turn exhausts `max_tool_iterations`, so users receive a concise status instead of only the generic budget message.
- Preserve `stop_reason="max_iterations"` and fall back to the existing max-iterations message when finalization is empty, errors, or returns tool calls... | 1b5f5b94d520ffb4eeb1637eb5a1a06f2e32640e | daabd5a83f03ccbd00d63c39149eded7e3037317 | diff --git a/nanobot/agent/loop.py b/nanobot/agent/loop.py
index f31589cb95e..b1bde811c77 100644
--- a/nanobot/agent/loop.py
+++ b/nanobot/agent/loop.py
@@ -816,6 +816,11 @@ def _to_user_message(pending_msg: InboundMessage) -> dict[str, Any]:
),
goal_active_predicate=lambda: sustained_... | [
"nanobot/agent/loop.py",
"nanobot/agent/runner.py",
"nanobot/agent/subagent.py",
"nanobot/session/turn_continuation.py",
"nanobot/utils/runtime.py",
"tests/agent/test_loop_runner_integration.py",
"tests/agent/test_runner_core.py",
"tests/agent/test_runner_goal_continue.py",
"tests/session/test_turn_... | [] | diff --git a/tests/agent/test_loop_runner_integration.py b/tests/agent/test_loop_runner_integration.py
index 5f9c356ced7..dbd213185ee 100644
--- a/tests/agent/test_loop_runner_integration.py
+++ b/tests/agent/test_loop_runner_integration.py
@@ -64,7 +64,8 @@ async def test_loop_goal_turn_uses_standard_iteration_budget(... | true | |
HKUDS/nanobot | 4,268 | issue_to_patch | OpenAICompatProvider: max_tokens/max_completion_tokens
### Bug Description
GPT-5.x expects max_completion_tokens not max_tokens
### Steps to Reproduce
in default
provider="custom"
model="gpt-5.4"
in providers:
"custom": {
"apiBase": "${AZURE_API_BASE}/openai/deployments/gpt-5.4",
"apiKey": "${AZU... | fix(providers): use max_completion_tokens for GPT-5/o-series models (#4261) | Closes #4261
Flagless provider specs (e.g. `custom` → Azure) sent `max_tokens` to GPT-5/o-series models, which reject it. Add a model-name fallback: `gpt-5` substring, `o3`/`o4` at slug boundary. | 1b5f5b94d520ffb4eeb1637eb5a1a06f2e32640e | d65487efa6124b6c3ac5064a4e373d431667ca35 | diff --git a/nanobot/providers/openai_compat_provider.py b/nanobot/providers/openai_compat_provider.py
index ee44333a69f..3a2ba2fbe15 100644
--- a/nanobot/providers/openai_compat_provider.py
+++ b/nanobot/providers/openai_compat_provider.py
@@ -93,6 +93,14 @@ def _model_slug(model_name: str) -> str:
return model_n... | [
"nanobot/providers/openai_compat_provider.py",
"tests/providers/test_litellm_kwargs.py"
] | [] | diff --git a/tests/providers/test_litellm_kwargs.py b/tests/providers/test_litellm_kwargs.py
index 0a1b85f70d2..27896e58b76 100644
--- a/tests/providers/test_litellm_kwargs.py
+++ b/tests/providers/test_litellm_kwargs.py
@@ -929,6 +929,47 @@ def test_openai_compat_build_kwargs_uses_gpt5_safe_parameters() -> None:
... | true |
HKUDS/nanobot | 4,266 | issue_to_patch | fix(tools): keep apply_patch additions line-separated | ## Summary
- Keep `apply_patch` add operations from merging appended text into an existing unterminated final line.
- Preserve CRLF line endings when adding to CRLF files without a final newline.
- Respect a caller-provided leading newline so the tool does not introduce an extra blank line.
## Root cause
`ApplyPatch... | 56ce18167e2453d5a72b4f72f332092684f754e7 | bd75e443446232ae3fc43aba59359697832945b4 | diff --git a/nanobot/agent/tools/apply_patch.py b/nanobot/agent/tools/apply_patch.py
index a1acd4c9011..dcde6db6213 100644
--- a/nanobot/agent/tools/apply_patch.py
+++ b/nanobot/agent/tools/apply_patch.py
@@ -75,6 +75,18 @@ def _line_diff_stats(before: str, after: str) -> tuple[int, int]:
return added, deleted
... | [
"nanobot/agent/tools/apply_patch.py",
"tests/tools/test_apply_patch_tool.py"
] | [] | diff --git a/tests/tools/test_apply_patch_tool.py b/tests/tools/test_apply_patch_tool.py
index 9ddc35a85a2..d0de43d2daf 100644
--- a/tests/tools/test_apply_patch_tool.py
+++ b/tests/tools/test_apply_patch_tool.py
@@ -89,6 +89,69 @@ def test_apply_patch_edits_add_to_existing_file(tmp_path):
)
+def test_apply_pa... | true | |
HKUDS/nanobot | 4,208 | issue_to_patch | feat(webui): add assistant reply fork-from-here | ## Summary
This adds a simple first version of "Fork from here" for completed assistant replies in the WebUI.
Users can fork from an assistant response to create a new chat containing the conversation prefix through that reply. The original chat is unchanged, and the new chat opens with an empty composer so the user c... | 56ce18167e2453d5a72b4f72f332092684f754e7 | 43e5fe2adf4e291706a95a5a7ad50190cd981355 | diff --git a/THIRD_PARTY_NOTICES.md b/THIRD_PARTY_NOTICES.md
index 9085bfc8e66..721a7466070 100644
--- a/THIRD_PARTY_NOTICES.md
+++ b/THIRD_PARTY_NOTICES.md
@@ -5,6 +5,37 @@ nanobot Python distribution (`pip install nanobot-ai`).
---
+## Tabler Icons — interface icons (MIT)
+
+- **Source**: https://github.com/tabl... | [
"THIRD_PARTY_NOTICES.md",
"nanobot/channels/websocket.py",
"nanobot/session/manager.py",
"nanobot/webui/forking.py",
"nanobot/webui/transcript.py",
"tests/agent/test_session_manager_history.py",
"tests/channels/test_websocket_channel.py",
"tests/utils/test_webui_transcript.py",
"webui/src/App.tsx",
... | [] | diff --git a/tests/agent/test_session_manager_history.py b/tests/agent/test_session_manager_history.py
index e3bf4d70180..3441c48338a 100644
--- a/tests/agent/test_session_manager_history.py
+++ b/tests/agent/test_session_manager_history.py
@@ -426,6 +426,87 @@ def test_get_history_synthesizes_cli_app_attachment_breadc... | true | |
HKUDS/nanobot | 4,177 | issue_to_patch | docs: make onboarding friendlier for beginners | ## Summary
- Rework the documentation entry points so users can pick the right path: no-background setup, quick CLI setup, WebUI, chat apps, provider recipes, deployment, and contributor docs.
- Add and expand beginner-focused setup docs, CLI command chooser, configuration task map, deployment readiness guide, WebUI en... | 56ce18167e2453d5a72b4f72f332092684f754e7 | 30920ad94a6fc0e33da4bbcc2448db73e5b4d6c4 | diff --git a/README.md b/README.md
index ab0aa43cc32..2d76f48bedf 100644
--- a/README.md
+++ b/README.md
@@ -33,6 +33,17 @@
🐈 **nanobot** is an open-source, ultra-lightweight personal AI agent you can truly own. It keeps the agent core small and readable while giving you the practical pieces for real long-running w... | [
"README.md",
"desktop/README.md",
"desktop/docs/development.md",
"desktop/docs/host-contract.md",
"desktop/docs/webui-sync.md",
"docs/README.md",
"docs/architecture.md",
"docs/channel-plugin-guide.md",
"docs/chat-apps.md",
"docs/chat-commands.md",
"docs/cli-reference.md",
"docs/concepts.md",
... | [] | true | ||
HKUDS/nanobot | 4,190 | issue_to_patch | Improve tool call validation strictness | ## Summary
- Preserve provider-emitted tool-call arguments through to execution validation instead of silently repairing malformed or non-object values into executable `{}`.
- Require tool arguments to resolve to a JSON object before schema casting; arrays, scalars, malformed JSON strings, and other non-object values n... | 06d454a225ca45af9081e1f70db0ce869a15bcca | c2345a47bf8ce989f4a26745a18afd9b03658243 | diff --git a/nanobot/agent/runner.py b/nanobot/agent/runner.py
index 8746b5c27db..8cffb3fdc32 100644
--- a/nanobot/agent/runner.py
+++ b/nanobot/agent/runner.py
@@ -399,7 +399,6 @@ async def _run_core(
thinking_blocks=response.thinking_blocks,
)
messages.append(ass... | [
"nanobot/agent/runner.py",
"nanobot/agent/tools/registry.py",
"nanobot/providers/anthropic_provider.py",
"nanobot/providers/base.py",
"nanobot/providers/bedrock_provider.py",
"nanobot/providers/openai_compat_provider.py",
"nanobot/providers/openai_responses/converters.py",
"nanobot/providers/openai_re... | [] | diff --git a/tests/agent/test_runner_tool_execution.py b/tests/agent/test_runner_tool_execution.py
index a0380e87127..70e74fafe24 100644
--- a/tests/agent/test_runner_tool_execution.py
+++ b/tests/agent/test_runner_tool_execution.py
@@ -3,17 +3,21 @@
from __future__ import annotations
import asyncio
-from unittest.... | true | |
HKUDS/nanobot | 4,252 | issue_to_patch | fix(webui): render TeX math delimiters | ## Summary
- Add parser-level support for TeX-style `\(...\)` / `\[...\]` delimiters and guarded single-dollar `$...$` inline math via a small micromark/remark extension.
- Reuse the existing `remark-math` mdast token names and `rehype-katex` rendering path instead of rewriting Markdown strings before parsing.
- Preser... | 06d454a225ca45af9081e1f70db0ce869a15bcca | 771eb901ae11f98d252b4221194b75584d1381c9 | diff --git a/webui/src/components/MarkdownTextRenderer.tsx b/webui/src/components/MarkdownTextRenderer.tsx
index 307a45f1609..3d9c525fa2b 100644
--- a/webui/src/components/MarkdownTextRenderer.tsx
+++ b/webui/src/components/MarkdownTextRenderer.tsx
@@ -24,6 +24,7 @@ import {
} from "@/components/FileReferenceChip";
i... | [
"webui/src/components/MarkdownTextRenderer.tsx",
"webui/src/lib/remark-tex-math.ts",
"webui/src/tests/markdown-text-renderer.test.tsx"
] | [] | diff --git a/webui/src/tests/markdown-text-renderer.test.tsx b/webui/src/tests/markdown-text-renderer.test.tsx
index 4d5972aceed..9543a6bdaf5 100644
--- a/webui/src/tests/markdown-text-renderer.test.tsx
+++ b/webui/src/tests/markdown-text-renderer.test.tsx
@@ -296,6 +296,71 @@ describe("MarkdownTextRenderer", () => {
... | true | |
HKUDS/nanobot | 4,258 | issue_to_patch | feat(email): add configurable IMAP post-actions for processed messages | ## Summary
Cherry-pick of #4170 to `main`. Adds configurable post-actions (move/delete) for inbound email handling, keeping agent-managed mailboxes tidy without manual intervention. Default behaviour is unchanged unless explicitly configured.
### Email Channel
- **refactor(email): extract IMAP session helper** — cen... | f3eb2aa08bf21447da131c747134e8f2550aa65d | cbb264fbbfc1639f57d1c84bae0f2e8661182370 | diff --git a/docs/chat-apps.md b/docs/chat-apps.md
index 2e3bbd75063..a529ff00a08 100644
--- a/docs/chat-apps.md
+++ b/docs/chat-apps.md
@@ -577,6 +577,11 @@ Give nanobot its own email account. It polls **IMAP** for incoming mail and repl
> - `allowFrom`: Add your email address. Use `["*"]` to accept emails from anyon... | [
"docs/chat-apps.md",
"nanobot/channels/email.py",
"tests/channels/test_email_channel.py"
] | [] | diff --git a/tests/channels/test_email_channel.py b/tests/channels/test_email_channel.py
index f6af636ed94..22f466821ee 100644
--- a/tests/channels/test_email_channel.py
+++ b/tests/channels/test_email_channel.py
@@ -79,17 +79,466 @@ def logout(self):
monkeypatch.setattr("nanobot.channels.email.imaplib.IMAP4_SSL",... | true | |
HKUDS/nanobot | 4,170 | issue_to_patch | feat(email): add configurable IMAP post-actions for processed messages | This PR adds configurable post-actions for inbound email handling.
This feature is particularly valuable for agent-managed mailboxes, where nanobot is effectively the primary operator of the inbox: without automatic post-processing, processed messages continue to accumulate and the user still has to log into the mai... | dbdb146f6df598c48b95de32bcad731d21036378 | f45c28523630ec99638ec411108be81e396dbc4c | diff --git a/docs/chat-apps.md b/docs/chat-apps.md
index 4c6b8795f6a..753f6c68cde 100644
--- a/docs/chat-apps.md
+++ b/docs/chat-apps.md
@@ -572,6 +572,11 @@ Give nanobot its own email account. It polls **IMAP** for incoming mail and repl
> - `allowFrom`: Add your email address. Use `["*"]` to accept emails from anyon... | [
"docs/chat-apps.md",
"nanobot/channels/email.py",
"tests/channels/test_email_channel.py"
] | [
{
"comment": "Plain `EXPUNGE` is mailbox-wide: it removes every message currently marked `\\Deleted` in the selected mailbox, not just this UID. That can permanently delete messages marked by another client or by an earlier failed post-action, so this fallback breaks the feature's per-message boundary. Please a... | diff --git a/tests/channels/test_email_channel.py b/tests/channels/test_email_channel.py
index 2ee915d9e8e..094aef421e0 100644
--- a/tests/channels/test_email_channel.py
+++ b/tests/channels/test_email_channel.py
@@ -79,17 +79,466 @@ def logout(self):
monkeypatch.setattr("nanobot.channels.email.imaplib.IMAP4_SSL",... | true | |
HKUDS/nanobot | 4,224 | issue_to_patch | feat(transcription): add AssemblyAI as transcription provider | ## Summary
Adds AssemblyAI as a transcription-only provider in the new top-level `transcription` system. Users configure the AssemblyAI key under `providers.assemblyai`, then select `assemblyai` for voice transcription.
## Why
AssemblyAI is useful as a conservative speech-to-text option for low-signal audio, noisy e... | f183b37542aa1d6fb04eae8d30f8314e366505cb | 0be7152305a82a5a29d39531b05d15a42a61387d | diff --git a/docs/README.md b/docs/README.md
index 7ac873bd111..2623d0807ff 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -28,9 +28,9 @@ Use these when you want deeper customization, integration, or extension details.
| Topic | Repo docs | What it covers |
|---|---|---|
+| Development | [`development.md`](./d... | [
"docs/README.md",
"docs/configuration.md",
"docs/development.md",
"nanobot/audio/transcription.py",
"nanobot/audio/transcription_registry.py",
"nanobot/config/schema.py",
"nanobot/providers/factory.py",
"nanobot/providers/registry.py",
"nanobot/providers/transcription.py",
"nanobot/webui/settings_... | [] | diff --git a/tests/config/test_model_presets.py b/tests/config/test_model_presets.py
index 06e015746c5..d36127df93b 100644
--- a/tests/config/test_model_presets.py
+++ b/tests/config/test_model_presets.py
@@ -245,3 +245,18 @@ def test_match_provider_routes_forced_novita_model_api_models() -> None:
assert config.... | true | |
HKUDS/nanobot | 4,175 | issue_to_patch | feat(transcription): add Xiaomi MiMo ASR provider (mimo-v2.5-asr)
## Summary
Add support for Xiaomi MiMo ASR (`mimo-v2.5-asr`) as a transcription provider, alongside the existing Groq and OpenAI Whisper options.
## Motivation
Xiaomi's MiMo ASR model offers strong Chinese speech recognition performance and uses a di... | feat(transcription): add Xiaomi MiMo ASR provider (mimo-v2.5-asr) | ## Summary
Adds Xiaomi MiMo ASR as a transcription provider in the new top-level `transcription` system. The canonical provider name is `xiaomi_mimo`, with compatibility aliases handled in the resolver where appropriate.
## Why
Xiaomi MiMo ASR gives users another speech-to-text backend, especially useful for Chinese... | 552ec18a3c051cdb01f7d082e8646b2e316d1d88 | 04085307ab138ed30e6068711582766002523fd3 | diff --git a/docs/configuration.md b/docs/configuration.md
index 06c83353b2c..1ae86d5fc57 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -119,7 +119,7 @@ ANTHROPIC_API_KEY="$(bw get password api/anthropic)" nanobot agent
## Providers
> [!TIP]
-> - **Voice transcription**: Voice messages and WebUI... | [
"docs/configuration.md",
"nanobot/audio/transcription.py",
"nanobot/config/schema.py",
"nanobot/providers/transcription.py",
"nanobot/webui/settings_api.py",
"tests/providers/test_transcription.py",
"tests/webui/test_settings_api.py",
"webui/src/tests/provider-brand.test.ts"
] | [] | diff --git a/tests/providers/test_transcription.py b/tests/providers/test_transcription.py
index 3fa3714da8c..574d5a44b85 100644
--- a/tests/providers/test_transcription.py
+++ b/tests/providers/test_transcription.py
@@ -19,7 +19,9 @@
GroqTranscriptionProvider,
OpenAITranscriptionProvider,
OpenRouterTran... | true |
HKUDS/nanobot | 4,113 | issue_to_patch | feat(transcription): configurable STT model + OpenRouter transcription provider | ## Summary
Adds OpenRouter as a transcription provider in the new top-level `transcription` system. Users can keep one OpenRouter credential under `providers.openrouter` and route WebUI, desktop, and chat-channel voice transcription through the same resolver.
## Why
OpenRouter exposes multiple speech-to-text models ... | 9c8128030051b051c39dbd4612cf344a3032e24c | 496c278d2155479bce757241c721ee3a2804e073 | diff --git a/docs/configuration.md b/docs/configuration.md
index 3ed500394d2..06c83353b2c 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -119,7 +119,7 @@ ANTHROPIC_API_KEY="$(bw get password api/anthropic)" nanobot agent
## Providers
> [!TIP]
-> - **Voice transcription**: Voice messages and WebUI... | [
"docs/configuration.md",
"nanobot/audio/transcription.py",
"nanobot/config/schema.py",
"nanobot/providers/transcription.py",
"nanobot/webui/settings_api.py",
"tests/providers/test_transcription.py",
"tests/webui/test_settings_api.py",
"webui/src/tests/provider-brand.test.ts"
] | [] | diff --git a/tests/providers/test_transcription.py b/tests/providers/test_transcription.py
index c669a91d31b..3fa3714da8c 100644
--- a/tests/providers/test_transcription.py
+++ b/tests/providers/test_transcription.py
@@ -2,17 +2,24 @@
from __future__ import annotations
+import base64
from pathlib import Path
fro... | true | |
HKUDS/nanobot | 4,217 | issue_to_patch | [PATCH] Add extra_query support for OpenAI-compatible providers
### Problem / Motivation
Some Azure-style gateways require an
?api-version= query param on the classic chat-completions surface.
There was no way to inject a query param through config, so such
gateways returned 404.
### Proposed Solution
- Add Provide... | feat(providers): add extra_query config for OpenAI-compatible providers | Addresses the extra_query portion of #4204.
## Summary
Some Azure-style gateways require `?api-version=` query params on the chat-completions endpoint. This adds a `ProviderConfig.extra_query` field, threaded through the factory into `AsyncOpenAI(default_query=...)`, so users can configure query params via JSON confi... | 6a0368b32fcd9a07472712c0f4529a101669130b | aa668308bf9933063609a9a398fd79839e5b3856 | diff --git a/nanobot/config/schema.py b/nanobot/config/schema.py
index b9ebbd7edf8..b5a2f0f5fdb 100644
--- a/nanobot/config/schema.py
+++ b/nanobot/config/schema.py
@@ -172,6 +172,7 @@ class ProviderConfig(Base):
api_type: Literal["auto", "chat_completions", "responses"] = "auto" # Request API surface
extra_... | [
"nanobot/config/schema.py",
"nanobot/providers/factory.py",
"nanobot/providers/openai_compat_provider.py",
"tests/agent/test_runner_fallback.py",
"tests/providers/test_extra_query_config.py"
] | [] | diff --git a/tests/agent/test_runner_fallback.py b/tests/agent/test_runner_fallback.py
index 4ae161e4a0c..a7a6f7c30d0 100644
--- a/tests/agent/test_runner_fallback.py
+++ b/tests/agent/test_runner_fallback.py
@@ -241,7 +241,7 @@ def test_inline_fallback_reasoning_effort_does_not_inherit_primary() -> None:
signatur... | true |
HKUDS/nanobot | 4,232 | issue_to_patch | feat(transcription): add shared voice input support | ## Summary
This PR makes transcription a shared nanobot capability instead of a channel-only setting, then uses it for WebUI and desktop voice input.
- adds top-level `transcription` config with fallback from legacy `channels.transcriptionProvider` / `channels.transcriptionLanguage`
- keeps transcription secrets in e... | 06d454a225ca45af9081e1f70db0ce869a15bcca | c38bcf14af0bc579d2b3098086a3de4100376f3e | diff --git a/desktop/package.json b/desktop/package.json
index 83b816845da..c961c8cf2b6 100644
--- a/desktop/package.json
+++ b/desktop/package.json
@@ -47,6 +47,9 @@
],
"mac": {
"category": "public.app-category.developer-tools",
+ "extendInfo": {
+ "NSMicrophoneUsageDescription": "nanobot ... | [
"desktop/package.json",
"desktop/src/main.ts",
"docs/channel-plugin-guide.md",
"docs/configuration.md",
"nanobot/agent/tools/exec_session.py",
"nanobot/audio/__init__.py",
"nanobot/audio/transcription.py",
"nanobot/channels/base.py",
"nanobot/channels/manager.py",
"nanobot/channels/websocket.py",
... | [] | diff --git a/tests/channels/test_channel_plugins.py b/tests/channels/test_channel_plugins.py
index d29dfe4ffaa..f881cebbacc 100644
--- a/tests/channels/test_channel_plugins.py
+++ b/tests/channels/test_channel_plugins.py
@@ -12,7 +12,8 @@
from nanobot.bus.queue import MessageBus
from nanobot.channels.base import Base... | true | |
HKUDS/nanobot | 4,123 | issue_to_patch | Security: MCP HTTP/SSE configuration attempts loopback connection before SSRF rejection
## Summary
MCP HTTP/SSE connection setup can attempt a loopback connection before rejecting private or loopback targets. This means MCP configured URLs do not consistently apply the same SSRF validation expected from network-facin... | fix(mcp): reject unsafe HTTP URLs before probe | ## Summary
- validate MCP SSE and streamable HTTP URLs with the shared SSRF guard before probing or constructing clients
- validate each outgoing MCP HTTP request through an `httpx` request hook so redirect targets follow the same SSRF policy
- keep the low-level HTTP probe focused on TCP reachability so existing probe... | ab9f49970d95cca40b172d3bf3a6ae0e76ea88c5 | 90601400a1c335de55993950cb481ea66c8d2b76 | diff --git a/.agent/security.md b/.agent/security.md
index cdbc79b50da..8dfc4abe70b 100644
--- a/.agent/security.md
+++ b/.agent/security.md
@@ -12,10 +12,12 @@ Shell execution (`ExecTool`, `agent/tools/shell.py`) also respects `restrict_to_
## SSRF Protection
-All outbound HTTP requests from agent tools must pass... | [
".agent/security.md",
"docs/configuration.md",
"nanobot/agent/tools/mcp.py",
"tests/tools/test_mcp_probe.py",
"tests/tools/test_mcp_tool.py"
] | [
{
"comment": "This validates the initial MCP URL, but the HTTP clients below still follow redirects automatically. Please make redirect targets use the same allow/block policy too, or disable redirects. Private/localhost MCP can be allowed explicitly; it just should not be reachable via redirect bypass.",
"... | diff --git a/tests/tools/test_mcp_probe.py b/tests/tools/test_mcp_probe.py
index 38dc8fe7e16..818895a7513 100644
--- a/tests/tools/test_mcp_probe.py
+++ b/tests/tools/test_mcp_probe.py
@@ -16,9 +16,11 @@
@pytest.mark.asyncio
async def test_probe_returns_true_for_open_port(tmp_path):
"""Start a trivial TCP server... | true |
HKUDS/nanobot | 4,123 | comment_to_fix | fix(mcp): reject unsafe HTTP URLs before probe | This validates the initial MCP URL, but the HTTP clients below still follow redirects automatically. Please make redirect targets use the same allow/block policy too, or disable redirects. Private/localhost MCP can be allowed explicitly; it just should not be reachable via redirect bypass. | ab9f49970d95cca40b172d3bf3a6ae0e76ea88c5 | 90601400a1c335de55993950cb481ea66c8d2b76 | diff --git a/nanobot/agent/tools/mcp.py b/nanobot/agent/tools/mcp.py
index 59a41127eab..181c4e9f8a9 100644
--- a/nanobot/agent/tools/mcp.py
+++ b/nanobot/agent/tools/mcp.py
@@ -21,6 +21,7 @@
RUNTIME_CONTROL_MCP_RELOAD,
InboundMessage,
)
+from nanobot.security.network import validate_url_target
# Transient... | [
"nanobot/agent/tools/mcp.py"
] | [
{
"comment": "This validates the initial MCP URL, but the HTTP clients below still follow redirects automatically. Please make redirect targets use the same allow/block policy too, or disable redirects. Private/localhost MCP can be allowed explicitly; it just should not be reachable via redirect bypass.",
"... | true | ||
HKUDS/nanobot | 4,245 | issue_to_patch | docs: remove nightly branch guidance | ## Summary
- Remove the old nightly/two-branch contribution guidance from project docs.
- Update CI branch filters after removing the nightly target.
- Add guidance against mixing mechanical formatting churn into functional PRs.
## Checks
- `rg -n --hidden --glob '!.git' --glob '!**/.git/**' "nightly|Nightly|two-branc... | 631fdb4a46dda2f44754e78d704109c3cafe8d70 | f49939e02b9641664441788ccf7f24e24352a470 | diff --git a/.agent/design.md b/.agent/design.md
index e8cef12fcdf..75ea7607bc7 100644
--- a/.agent/design.md
+++ b/.agent/design.md
@@ -18,7 +18,7 @@ Channels and providers are allowed to repeat similar logic (send retries, media
## Minimal change that solves the real problem
-Fix bugs by changing only what is ne... | [
".agent/design.md",
".github/workflows/ci.yml",
"AGENTS.md",
"CONTRIBUTING.md",
"README.md"
] | [] | true | ||
HKUDS/nanobot | 4,248 | issue_to_patch | Fix token usage heatmap rendering | ## Summary
- align the token usage heatmap date window with the configured agent timezone
- prevent month labels from being clipped in the overview heatmap
- add regression coverage for timezone boundary rendering
## Test Plan
- bun run test -- src/tests/settings-view.test.tsx
- bun run build
- real gateway + Playwrig... | 631fdb4a46dda2f44754e78d704109c3cafe8d70 | dc036bb21663587b4f02d53e72dcb405c1ec5c64 | diff --git a/webui/src/components/settings/SettingsView.tsx b/webui/src/components/settings/SettingsView.tsx
index 5b3d196462a..fd726ea89fa 100644
--- a/webui/src/components/settings/SettingsView.tsx
+++ b/webui/src/components/settings/SettingsView.tsx
@@ -1666,7 +1666,7 @@ function OverviewSettings({
return (
... | [
"webui/src/components/settings/SettingsView.tsx",
"webui/src/components/settings/TokenUsageHeatmap.tsx",
"webui/src/tests/settings-view.test.tsx"
] | [] | diff --git a/webui/src/tests/settings-view.test.tsx b/webui/src/tests/settings-view.test.tsx
index 970426515a6..4987fb96c72 100644
--- a/webui/src/tests/settings-view.test.tsx
+++ b/webui/src/tests/settings-view.test.tsx
@@ -119,6 +119,7 @@ const installedAnyGen = {
function renderSettingsView(
options: {
init... | true | |
HKUDS/nanobot | 4,227 | issue_to_patch | Custom provider will drop reasoning content if it's empty string
### Bug Description
For now, custom provider will drop reasoning content if it's empty string even in a tool_call message
### Steps to Reproduce
1.set "provider": "custom" in config.json
2.mock a response with tool call and resoning_content="" or one ... | fix: preserve empty-string reasoning_content instead of coercing to None | ## Problem
Custom providers (e.g. DeepSeek, Kimi K2.5/K2.6) may return `reasoning_content` as an empty string `""` to explicitly indicate no reasoning occurred in a given turn. The previous truthiness checks (`or None`, `not x`) treated `""` as falsy and converted it to `None`, which caused the field to be dropped fro... | ab9f49970d95cca40b172d3bf3a6ae0e76ea88c5 | 0d106f1bd57806f872947213fe873dfe2e5654ca | diff --git a/nanobot/providers/openai_compat_provider.py b/nanobot/providers/openai_compat_provider.py
index 5cc7431fbc4..6fe00b32702 100644
--- a/nanobot/providers/openai_compat_provider.py
+++ b/nanobot/providers/openai_compat_provider.py
@@ -999,7 +999,7 @@ def _parse(self, response: Any) -> LLMResponse:
... | [
"nanobot/providers/openai_compat_provider.py",
"tests/providers/test_reasoning_content.py"
] | [] | diff --git a/tests/providers/test_reasoning_content.py b/tests/providers/test_reasoning_content.py
index a58569143d7..f61d385c8fb 100644
--- a/tests/providers/test_reasoning_content.py
+++ b/tests/providers/test_reasoning_content.py
@@ -8,7 +8,7 @@
from unittest.mock import patch
from nanobot.providers.openai_compa... | true |
HKUDS/nanobot | 2,885 | issue_to_patch | fix(feishu): resolve mentions data and ensure access token initializationDev | one fix and one improved fix for the Feishu channel:
1. **Resolve mention data in messages** (`86dc396f`)
- Add `_resolve_mentions()` to replace `@_user_n` placeholders with actual user info (`@name (open_id)`)
- Add `_is_bot_mentioned()` and `_is_group_message_for_bot()` for accurate @mention detection
- ... | 075bdd5c3cd523012c7a4b63cb080a9ca9d938ba | 64c2263d27803211e30a01153bcae125ee00caf4 | diff --git a/nanobot/channels/feishu.py b/nanobot/channels/feishu.py
index c6124d0c9d9..bac14cb848b 100644
--- a/nanobot/channels/feishu.py
+++ b/nanobot/channels/feishu.py
@@ -1,6 +1,7 @@
"""Feishu/Lark channel implementation using lark-oapi SDK with WebSocket long connection."""
import asyncio
+import importlib.u... | [
"nanobot/channels/feishu.py",
"tests/channels/test_feishu_mentions.py"
] | [] | diff --git a/tests/channels/test_feishu_mentions.py b/tests/channels/test_feishu_mentions.py
new file mode 100644
index 00000000000..a49e76ee6ea
--- /dev/null
+++ b/tests/channels/test_feishu_mentions.py
@@ -0,0 +1,59 @@
+"""Tests for FeishuChannel._resolve_mentions."""
+
+from types import SimpleNamespace
+
+from nano... | true | |
HKUDS/nanobot | 2,663 | issue_to_patch | fix(whatsapp): handle LID group mentions | ## Summary
- Fix WhatsApp group mention detection for LID and device-suffixed bot JIDs by normalizing JIDs without dropping the domain.
- Treat swipe replies to bot messages as addressed to the bot when `groupPolicy` is `mention`.
- Forward group `participant` from the bridge so Python resolves sender identity from th... | ab9f49970d95cca40b172d3bf3a6ae0e76ea88c5 | f635631953260ffa9f283d7684070356d3bc12e0 | diff --git a/bridge/src/whatsapp.ts b/bridge/src/whatsapp.ts
index 0d2f40b2e83..46dcbe4c974 100644
--- a/bridge/src/whatsapp.ts
+++ b/bridge/src/whatsapp.ts
@@ -26,10 +26,12 @@ export interface InboundMessage {
id: string;
sender: string;
pn: string;
+ participant?: string;
content: string;
timestamp: n... | [
"bridge/src/whatsapp.ts",
"nanobot/channels/whatsapp.py",
"tests/channels/test_whatsapp_channel.py"
] | [] | diff --git a/tests/channels/test_whatsapp_channel.py b/tests/channels/test_whatsapp_channel.py
index 6229723a5c4..5032ca41044 100644
--- a/tests/channels/test_whatsapp_channel.py
+++ b/tests/channels/test_whatsapp_channel.py
@@ -163,6 +163,32 @@ async def test_group_policy_mention_accepts_mentioned_group_message():
... | true | |
HKUDS/nanobot | 4,195 | issue_to_patch | feat(desktop): polish desktop shell and shared WebUI surfaces | ## Summary
This PR prepares nanobot's first open desktop surface while keeping the actual product experience shared with the existing WebUI. It adds a desktop host, improves the shared chat/settings surfaces for desktop-style use, and adds the gateway APIs needed for file preview, skills, automations, token usage, and... | 73353785a023925e35f7913b4ba8c49449f96233 | 3b58f7c4b2b2fd4c832beb8e1624d14d325a9a71 | diff --git a/.gitignore b/.gitignore
index cddec508394..043d34184e1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,8 +6,13 @@
.env
.web
.orion
-nanobot-desktop/
-desktop/
+
+# Desktop app generated artifacts
+desktop/build/
+desktop/dist/
+desktop/node_modules/
+desktop/package-lock.json
+desktop/resources/nanobot-e... | [
".gitignore",
"README.md",
"desktop/README.md",
"desktop/bun.lock",
"desktop/docs/development.md",
"desktop/docs/host-contract.md",
"desktop/docs/webui-sync.md",
"desktop/package.json",
"desktop/scripts/prepare-engine.mjs",
"desktop/src/main.ts",
"desktop/src/notifications.ts",
"desktop/src/pr... | [] | diff --git a/tests/agent/test_dream.py b/tests/agent/test_dream.py
index 5b9bd32a0dc..937b7ae41e9 100644
--- a/tests/agent/test_dream.py
+++ b/tests/agent/test_dream.py
@@ -356,7 +356,6 @@ async def test_extra_hooks_fire_for_normal_sessions(self, tmp_path, _make_loop_w
await loop.process_direct("test", session... | true | |
HandyOrg/HandyControl | 1,773 | issue_to_patch | 给版权文件添加 BOM 头,尝试解决编码问题 | 尝试修复 https://github.com/HandyOrg/HandyControl/pull/1622 | dd24a14aa21f95851f871b6d516e976755785839 | bb653718b04d95fd6bce6b05b864cb4a901f45fe | diff --git a/LICENSE b/LICENSE
index dc01da3ef..9d68f92d9 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-MIT License
+MIT License
Copyright © HandyOrg 2018-2025
| [
"LICENSE"
] | [] | true | ||
HandyOrg/HandyControl | 1,759 | issue_to_patch | fix compiling error. | Fix Compiling error. | 64da563916df983839504adb109006d4dd9d333d | 70121ba52119b7e841e39eb472ac3e906322bb68 | diff --git a/src/Avalonia/HandyControlDemo_Avalonia/UserControl/Styles/HyperlinkButtonDemo.axaml b/src/Avalonia/HandyControlDemo_Avalonia/UserControl/Styles/HyperlinkButtonDemo.axaml
index bcfb27d5d..0db66903d 100644
--- a/src/Avalonia/HandyControlDemo_Avalonia/UserControl/Styles/HyperlinkButtonDemo.axaml
+++ b/src/Ava... | [
"src/Avalonia/HandyControlDemo_Avalonia/UserControl/Styles/HyperlinkButtonDemo.axaml"
] | [] | true | ||
HandyOrg/HandyControl | 1,763 | issue_to_patch | fix:修复DateTimePicker VM Binding属性设置为null时 UI不会同步更新的问题 | 复DateTimePicker VM Binding属性设置为null时 UI不会同步更新的问题 | fb2784f1d2a9182eb94d9935213d03e6615f5583 | 0635e3fd346b67df5d9a5499f19deffb3a3eb878 | diff --git a/src/Shared/HandyControl_Shared/Controls/Input/DateTimePicker.cs b/src/Shared/HandyControl_Shared/Controls/Input/DateTimePicker.cs
index 142d593e3..1765760ab 100644
--- a/src/Shared/HandyControl_Shared/Controls/Input/DateTimePicker.cs
+++ b/src/Shared/HandyControl_Shared/Controls/Input/DateTimePicker.cs
@@ ... | [
"src/Shared/HandyControl_Shared/Controls/Input/DateTimePicker.cs",
"src/Shared/HandyControl_Shared/Controls/Input/TimePicker.cs"
] | [] | true | ||
HandyOrg/HandyControl | 1,766 | issue_to_patch | fix:修复DataGrid控件报错导致渲染卡顿的问题: Cannot get 'CornerRadius' value (type 'C… | 修复DataGrid控件报错导致渲染卡顿的问题:Cannot get 'CornerRadius' value (type 'CornerRadius') from '' (type 'DataGridCell'). BindingExpression:Path=(0); DataItem='DataGridCell' (Name=''); target element is 'Border' (Name=''); target property is 'CornerRadius' (type 'CornerRadius') InvalidOperationException:'System.InvalidOperationExc... | fb2784f1d2a9182eb94d9935213d03e6615f5583 | 44764d826d172d128d44e8eab327c00b49569323 | diff --git a/src/Shared/HandyControl_Shared/Themes/Styles/Base/DataGridBaseStyle.xaml b/src/Shared/HandyControl_Shared/Themes/Styles/Base/DataGridBaseStyle.xaml
index 900b87ee8..94ca191c7 100644
--- a/src/Shared/HandyControl_Shared/Themes/Styles/Base/DataGridBaseStyle.xaml
+++ b/src/Shared/HandyControl_Shared/Themes/St... | [
"src/Shared/HandyControl_Shared/Themes/Styles/Base/DataGridBaseStyle.xaml",
"src/Shared/HandyControl_Shared/Themes/Theme.xaml"
] | [] | true | ||
HandyOrg/HandyControl | 1,624 | issue_to_patch | fix:分页按钮GroupName固定为1,同一界面存在两个分页按钮时,会导致按钮状态不对; | 618fb53b233fdf830044e134ab7ac36151c07133 | c6e2f8f95e8fb26e6ff9de3cbbc44a95d7cfc542 | diff --git a/src/Shared/HandyControl_Shared/Controls/Other/Pagination.cs b/src/Shared/HandyControl_Shared/Controls/Other/Pagination.cs
index 9083eaf38..fdd1bee67 100644
--- a/src/Shared/HandyControl_Shared/Controls/Other/Pagination.cs
+++ b/src/Shared/HandyControl_Shared/Controls/Other/Pagination.cs
@@ -48,6 +48,8 @@ p... | [
"src/Shared/HandyControl_Shared/Controls/Other/Pagination.cs"
] | [] | true | |||
HandyOrg/HandyControl | 1,735 | issue_to_patch | Fix: Growl is not enabled while window is close before Growl is closed | 
| 618fb53b233fdf830044e134ab7ac36151c07133 | 6e14734d86d51ca1a79c0b6e9b66030ec1759cb6 | diff --git a/src/Shared/HandyControl_Shared/Controls/Growl/Growl.cs b/src/Shared/HandyControl_Shared/Controls/Growl/Growl.cs
index 7a102853c..458f9ee6c 100644
--- a/src/Shared/HandyControl_Shared/Controls/Growl/Growl.cs
+++ b/src/Shared/HandyControl_Shared/Controls/Growl/Growl.cs
@@ -440,8 +440,19 @@ private static voi... | [
"src/Shared/HandyControl_Shared/Controls/Growl/Growl.cs"
] | [] | true | ||
HandyOrg/HandyControl | 1,727 | issue_to_patch | 配置代码格式化机器人只做代码样式,不更改代码逻辑 | 参考文档:https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-format | 081815d81837f28e05f8a87627394dfb660af937 | a0e7aa0d924ec124d9f9c9ab1a90ed1cfd6fed2a | diff --git a/.github/workflows/dotnet-format.yml b/.github/workflows/dotnet-format.yml
index 4f17a7e32..e43b9aa98 100644
--- a/.github/workflows/dotnet-format.yml
+++ b/.github/workflows/dotnet-format.yml
@@ -33,7 +33,7 @@ jobs:
run: dotnet tool install -g dotnet-format
- name: Run dotnet format
- ... | [
".github/workflows/dotnet-format.yml"
] | [] | true | ||
HandyOrg/HandyControl | 1,705 | issue_to_patch | 解决控件验证没有错时xaml 绑定报错 | 报错为:AdornedElementPlaceholder, Name='adornedElementPlaceholder' AdornedElement.(0)[0].ErrorContent TextBlock.Text String Failed to get value. ArgumentOutOfRangeException:'System.ArgumentOutOfRangeException: Specified argument was out of the range of valid values. (Parameter 'index')'
#1248 | 67845f324e85569166e3f889ccc5afcfb4f332a5 | 68f4f1e8c566b535df09f537bd1abdf225c09b4f | diff --git a/src/Net_40/HandyControl_Net_40/Themes/Theme.xaml b/src/Net_40/HandyControl_Net_40/Themes/Theme.xaml
index d7997a8da..09b9c8799 100644
--- a/src/Net_40/HandyControl_Net_40/Themes/Theme.xaml
+++ b/src/Net_40/HandyControl_Net_40/Themes/Theme.xaml
@@ -1186,7 +1186,7 @@
</Grid.RowDefinitions>
<AdornedEl... | [
"src/Net_40/HandyControl_Net_40/Themes/Theme.xaml",
"src/Shared/HandyControl_Shared/Themes/Styles/Base/BaseStyle.xaml",
"src/Shared/HandyControl_Shared/Themes/Theme.xaml"
] | [] | true | ||
HandyOrg/HandyControl | 647 | issue_to_patch | Add MenuItemAttach. | #### Features:
- Make menu items of the same level and the same group name work like radio buttons.
- Disable the checkable menu item to uncheck itself if it is already checked.
#### Example:

![JVa... | 650b042a464c23922ebf70119f3536dbad78207c | 60b359ec208f94c041c592dc2b7509d8fcdb27be | diff --git a/src/Directory.Build.Props b/src/Directory.Build.Props
index 960579719..9c09fa449 100644
--- a/src/Directory.Build.Props
+++ b/src/Directory.Build.Props
@@ -1,4 +1,4 @@
-<Project>
+<Project>
<PropertyGroup>
<UseWPF>true</UseWPF>
<Version>3.5.0.0</Version>
diff --git a/src/Shared/Hand... | [
"src/Directory.Build.Props",
"src/Shared/HandyControl_Shared/Controls/Attach/MenuItemAttach.cs",
"src/Shared/HandyControl_Shared/HandyControl_Shared.projitems"
] | [
{
"comment": "Why shouldn't we be able to uncheck the item?",
"path": "src/Shared/HandyControl_Shared/Controls/Attach/MenuItemAttach.cs",
"hunk": "@@ -0,0 +1,74 @@\n+using System.Linq;\n+using System.Windows;\n+using System.Windows.Controls;\n+\n+namespace HandyControl.Controls\n+{\n+ public class M... | true | ||
HandyOrg/HandyControl | 647 | comment_to_fix | Add MenuItemAttach. | Why shouldn't we be able to uncheck the item? | 650b042a464c23922ebf70119f3536dbad78207c | 60b359ec208f94c041c592dc2b7509d8fcdb27be | diff --git a/src/Shared/HandyControl_Shared/Controls/Attach/MenuItemAttach.cs b/src/Shared/HandyControl_Shared/Controls/Attach/MenuItemAttach.cs
new file mode 100644
index 000000000..1ae818468
--- /dev/null
+++ b/src/Shared/HandyControl_Shared/Controls/Attach/MenuItemAttach.cs
@@ -0,0 +1,62 @@
+using System.Linq;
+usi... | [
"src/Shared/HandyControl_Shared/Controls/Attach/MenuItemAttach.cs"
] | [
{
"comment": "Why shouldn't we be able to uncheck the item?",
"path": "src/Shared/HandyControl_Shared/Controls/Attach/MenuItemAttach.cs",
"hunk": "@@ -0,0 +1,74 @@\n+using System.Linq;\n+using System.Windows;\n+using System.Windows.Controls;\n+\n+namespace HandyControl.Controls\n+{\n+ public class M... | true | ||
HandyOrg/HandyControl | 1,620 | issue_to_patch | [Bot] Automated PR to fix formatting errors | Automated PR to fix formatting errors | 51f07648ee8696a88eac2e16b3ec225514f51745 | bc20a1977f9cc287eba7aedc89e36e03f95479a5 | diff --git a/src/Avalonia/HandyControlDemo_Avalonia/App.axaml.cs b/src/Avalonia/HandyControlDemo_Avalonia/App.axaml.cs
index 74902c4b9..af611b2ca 100644
--- a/src/Avalonia/HandyControlDemo_Avalonia/App.axaml.cs
+++ b/src/Avalonia/HandyControlDemo_Avalonia/App.axaml.cs
@@ -1,4 +1,4 @@
-using System.Globalization;
+usin... | [
"src/Avalonia/HandyControlDemo_Avalonia/App.axaml.cs",
"src/Avalonia/HandyControlDemo_Avalonia/Data/Enum/DemoType.cs",
"src/Avalonia/HandyControlDemo_Avalonia/Data/MessageToken.cs",
"src/Avalonia/HandyControlDemo_Avalonia/Data/Model/DemoDataModel.cs",
"src/Avalonia/HandyControlDemo_Avalonia/Data/Model/DemoI... | [] | true | ||
HandyOrg/HandyControl | 1,590 | issue_to_patch | Fix Workflow | when you are working with git stuffs in github action, you need to fetch all related stuffs.

| 2155d1d5da0a523258919da7c6772e57df4f7df2 | 885bf0640dc19d9f91cd7d0366a58946da4a7d27 | diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index bc7401689..a12668cc6 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -7,13 +7,14 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout
- uses: actions/checkout@master
-
+ uses: ac... | [
".github/workflows/build.yml",
".github/workflows/bump-up-version.yml",
".github/workflows/dotnet-format.yml",
".github/workflows/push-to-myget.yml"
] | [] | true | ||
HandyOrg/HandyControl | 1,577 | issue_to_patch | Fix hc:Tag binding error. | ### Binding error reproduce:
https://github.com/HandyOrg/HandyControl/assets/4510984/3cabb317-a433-420a-9bfc-ab84f15722b8
| 2155d1d5da0a523258919da7c6772e57df4f7df2 | 7cbedd5a333fdbae6d214359b77d6750bfac085d | diff --git a/src/Net_40/HandyControl_Net_40/Themes/Styles/Base/CheckComboBoxBaseStyle.xaml b/src/Net_40/HandyControl_Net_40/Themes/Styles/Base/CheckComboBoxBaseStyle.xaml
index c57bbe472..0c4eaec8f 100644
--- a/src/Net_40/HandyControl_Net_40/Themes/Styles/Base/CheckComboBoxBaseStyle.xaml
+++ b/src/Net_40/HandyControl_N... | [
"src/Net_40/HandyControl_Net_40/Themes/Styles/Base/CheckComboBoxBaseStyle.xaml",
"src/Net_40/HandyControl_Net_40/Themes/Theme.xaml",
"src/Shared/HandyControl_Shared/Themes/Styles/Base/CheckComboBoxBaseStyle.xaml",
"src/Shared/HandyControl_Shared/Themes/Theme.xaml"
] | [] | true | ||
HandyOrg/HandyControl | 1,616 | issue_to_patch | [Bot] Automated PR to fix formatting errors | Automated PR to fix formatting errors | 6b975232ea4d406e834e0d21b9bcf459400cbb70 | 8140e24e60aa2c4dccd302de26b3f26ce6cfb774 | diff --git a/src/Shared/HandyControlDemo_Shared/App.xaml.cs b/src/Shared/HandyControlDemo_Shared/App.xaml.cs
index 5a326a71b..d73c74656 100644
--- a/src/Shared/HandyControlDemo_Shared/App.xaml.cs
+++ b/src/Shared/HandyControlDemo_Shared/App.xaml.cs
@@ -172,7 +172,7 @@ private static void UpdateApp()
Ta... | [
"src/Shared/HandyControlDemo_Shared/App.xaml.cs"
] | [] | true | ||
HandyOrg/HandyControl | 1,604 | issue_to_patch | [Bot] Automated PR to fix formatting errors | Automated PR to fix formatting errors | e7ebe47ffe4bf96197371f0b850bd8c22c68f646 | 9254d0927873d54685edf3ffca1e448b432f5f10 | diff --git a/src/Shared/HandyControlDemo_Shared/App.xaml.cs b/src/Shared/HandyControlDemo_Shared/App.xaml.cs
index 5a326a71b..d73c74656 100644
--- a/src/Shared/HandyControlDemo_Shared/App.xaml.cs
+++ b/src/Shared/HandyControlDemo_Shared/App.xaml.cs
@@ -172,7 +172,7 @@ private static void UpdateApp()
Ta... | [
"src/Shared/HandyControlDemo_Shared/App.xaml.cs"
] | [] | true | ||
HandyOrg/HandyControl | 1,591 | issue_to_patch | Fix #1277. | 2155d1d5da0a523258919da7c6772e57df4f7df2 | 01f50c530b832dbe50210f12f86ae3558a72d0d8 | diff --git a/src/Shared/HandyControl_Shared/Controls/Window/Window.cs b/src/Shared/HandyControl_Shared/Controls/Window/Window.cs
index 736cf629e..7de0ebbe2 100644
--- a/src/Shared/HandyControl_Shared/Controls/Window/Window.cs
+++ b/src/Shared/HandyControl_Shared/Controls/Window/Window.cs
@@ -8,6 +8,8 @@
using HandyCon... | [
"src/Shared/HandyControl_Shared/Controls/Window/Window.cs",
"src/Shared/HandyControl_Shared/Data/Info/SystemVersionInfo.cs"
] | [] | true | |||
HandyOrg/HandyControl | 1,593 | issue_to_patch | Fix hc:TextBox disabled opacity. | 值得一提的是,下图中的 before 一侧,文本框的边框变得几乎不可见了,这是由于同时设置了父元素 `root` 和子元素 `border` 的 `opacity` 为 `0.4` 导致的,这使得 `border` 的 `opacity` 变为 `0.16` (0.4*0.4).
https://github.com/HandyOrg/HandyControl/blob/4146ee523eada5aa514b270c46c0f197211522a8/src/Shared/HandyControl_Shared/Themes/Styles/Base/TextBoxBaseStyle.xaml#L139-L154
![im... | 6fca881ca326c9079a0ec3e8be1f80d698eb10f0 | 0e6b6106838a0cce4d56423c0b49f0d2a3a0d888 | diff --git a/src/Net_40/HandyControl_Net_40/Themes/Theme.xaml b/src/Net_40/HandyControl_Net_40/Themes/Theme.xaml
index cf8991f28..d497ce783 100644
--- a/src/Net_40/HandyControl_Net_40/Themes/Theme.xaml
+++ b/src/Net_40/HandyControl_Net_40/Themes/Theme.xaml
@@ -6547,8 +6547,7 @@
</hc:SimplePanel>
<ControlTem... | [
"src/Net_40/HandyControl_Net_40/Themes/Theme.xaml",
"src/Shared/HandyControlDemo_Shared/UserControl/Controls/TextBoxDemoCtl.xaml",
"src/Shared/HandyControlDemo_Shared/UserControl/Styles/NativeTextBoxDemoCtl.xaml",
"src/Shared/HandyControl_Shared/Themes/Styles/Base/TextBoxBaseStyle.xaml",
"src/Shared/HandyCo... | [] | true | ||
HandyOrg/HandyControl | 1,555 | issue_to_patch | Fixed jump element name of the pagination control | cfd842ba66e0c28ebb034664d9dd917775799e9b | 7f32026fb5b7200f4a65d2c7a5832ac4bc5cb130 | diff --git a/src/Shared/HandyControl_Shared/Controls/Other/Pagination.cs b/src/Shared/HandyControl_Shared/Controls/Other/Pagination.cs
index 733de93bb..9083eaf38 100644
--- a/src/Shared/HandyControl_Shared/Controls/Other/Pagination.cs
+++ b/src/Shared/HandyControl_Shared/Controls/Other/Pagination.cs
@@ -19,7 +19,7 @@ n... | [
"src/Shared/HandyControl_Shared/Controls/Other/Pagination.cs"
] | [] | true | |||
HandyOrg/HandyControl | 1,594 | issue_to_patch | Fix NonClientAreaContent. | 6fca881ca326c9079a0ec3e8be1f80d698eb10f0 | 59e4d4cd4d235a11fadc7de7579d9cfeff40282c | diff --git a/src/Shared/HandyControl_Shared/Themes/Styles/Window.xaml b/src/Shared/HandyControl_Shared/Themes/Styles/Window.xaml
index ef4082c95..1d241d3d1 100644
--- a/src/Shared/HandyControl_Shared/Themes/Styles/Window.xaml
+++ b/src/Shared/HandyControl_Shared/Themes/Styles/Window.xaml
@@ -189,6 +189,7 @@
... | [
"src/Shared/HandyControl_Shared/Themes/Styles/Window.xaml"
] | [] | true | |||
HandyOrg/HandyControl | 1,559 | issue_to_patch | NumericUpDown does not visually update when arrow keys are used
### Describe the bug
When changing the value of a NumericUpDown with arrow keys, the underlying value changes accordingly however the number displayed in the NumericUpDown does not update.
### Steps to reproduce the bug
1. Create a WPF applicatio... | Fix NumericUpDown text not updating when arrow keys are used | - Fixes #1558
This fixes the issue of the text not reflecting the new Value. Please let me know if there are any issues with my approach. | c7f4712b8364296920e4e4eedf72a11bdf37d0d2 | ab9c58c1d649d38afa8ad123d9727383d1e18386 | diff --git a/src/Shared/HandyControl_Shared/Controls/Input/NumericUpDown.cs b/src/Shared/HandyControl_Shared/Controls/Input/NumericUpDown.cs
index b2967d9b6..b4dd39401 100644
--- a/src/Shared/HandyControl_Shared/Controls/Input/NumericUpDown.cs
+++ b/src/Shared/HandyControl_Shared/Controls/Input/NumericUpDown.cs
@@ -106... | [
"src/Shared/HandyControl_Shared/Controls/Input/NumericUpDown.cs"
] | [] | true | |
HandyOrg/HandyControl | 1,554 | issue_to_patch | 更改ButtonClear的Focusable为False | 使ButtonClear控件不可聚焦 | cfd842ba66e0c28ebb034664d9dd917775799e9b | 96d4b9c98fc7020efb762cacfa994a72989ab24c | diff --git a/src/Net_40/HandyControl_Net_40/Themes/Styles/Base/CheckComboBoxBaseStyle.xaml b/src/Net_40/HandyControl_Net_40/Themes/Styles/Base/CheckComboBoxBaseStyle.xaml
index b734888c7..c57bbe472 100644
--- a/src/Net_40/HandyControl_Net_40/Themes/Styles/Base/CheckComboBoxBaseStyle.xaml
+++ b/src/Net_40/HandyControl_N... | [
"src/Net_40/HandyControl_Net_40/Themes/Styles/Base/CheckComboBoxBaseStyle.xaml",
"src/Net_40/HandyControl_Net_40/Themes/Styles/Base/ComboBoxBaseStyle.xaml",
"src/Net_40/HandyControl_Net_40/Themes/Theme.xaml",
"src/Shared/HandyControl_Shared/Themes/Styles/Base/CheckComboBoxBaseStyle.xaml",
"src/Shared/HandyC... | [] | true | ||
HandyOrg/HandyControl | 1,556 | issue_to_patch | bugfix: fix typo #963 | Origin issues refer to #963 | cfd842ba66e0c28ebb034664d9dd917775799e9b | ee07b4df15d13a0b0d2604a7b5a373da08fd3adb | diff --git a/doc/source/handycontrol/native_controls/seperator/index.md b/doc/source/handycontrol/native_controls/separator/index.md
similarity index 83%
rename from doc/source/handycontrol/native_controls/seperator/index.md
rename to doc/source/handycontrol/native_controls/separator/index.md
index 9b06017bf..89e2cb798... | [
"doc/source/handycontrol/native_controls/separator/index.md",
"doc/themes/next/_config.yml"
] | [] | true | ||
HandyOrg/HandyControl | 1,551 | issue_to_patch | Fix files encoding | 修复: https://github.com/HandyOrg/HandyControl/pull/1546
原因:https://github.com/HandyOrg/HandyControl/pull/1546#issuecomment-2024528385
修复方法: 全部加上 BOM 头 | 408de9b7f1bcee0905e855d516a57b4be124f46e | 32830b5c634306eff6eafb529412e18eacaf8379 | diff --git a/LICENSE b/LICENSE
index a13128498..071f345a0 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-MIT License
+MIT License
Copyright © HandyOrg 2018-2024
diff --git a/build/build.cake b/build/build.cake
index 52b22085d..88f878f8b 100644
--- a/build/build.cake
+++ b/build/build.cake
@@ -1,4 +1,4 @@
-#a... | [
"LICENSE",
"build/build.cake",
"build/lang.nuspec.template",
"build/lib.nuspec.template",
"build/myget.nuspec.template"
] | [] | true | ||
HandyOrg/HandyControl | 1,521 | issue_to_patch | [Bot] Automated PR to fix formatting errors | Automated PR to fix formatting errors | 894321e0e3f5a42966d97480404be7e09d1b2d06 | 5bfb11de196fe7613f45d49c6aaead4055df11da | diff --git a/src/Shared/HandyControl_Shared/Controls/StepBar/StepBar.cs b/src/Shared/HandyControl_Shared/Controls/StepBar/StepBar.cs
index 2293ef6f6..3c76fae2c 100644
--- a/src/Shared/HandyControl_Shared/Controls/StepBar/StepBar.cs
+++ b/src/Shared/HandyControl_Shared/Controls/StepBar/StepBar.cs
@@ -1,4 +1,4 @@
-using ... | [
"src/Shared/HandyControl_Shared/Controls/StepBar/StepBar.cs"
] | [] | true | ||
HandyOrg/HandyControl | 1,225 | issue_to_patch | fix missing parentheses error in RegexPatterns.IpDPattern and RegexPatterns.IpEPattern | 修复以上两个字段中的正则表达式括号不匹配问题 | 8de36dbae4ad2ab80d64298bb0e35db7afdd6e8a | 2a1ac8bd6c945ad57324ddd9e81a3ad5c72e5a47 | diff --git a/src/Shared/HandyControl_Shared/Tools/RegexPatterns.cs b/src/Shared/HandyControl_Shared/Tools/RegexPatterns.cs
index b01ecb95f..bf409ad58 100644
--- a/src/Shared/HandyControl_Shared/Tools/RegexPatterns.cs
+++ b/src/Shared/HandyControl_Shared/Tools/RegexPatterns.cs
@@ -56,7 +56,7 @@ public sealed class Regex... | [
"src/Shared/HandyControl_Shared/Tools/RegexPatterns.cs"
] | [] | true | ||
HandyOrg/HandyControl | 1,472 | issue_to_patch | [ImgBot] Optimize images | ## Beep boop. Your images are optimized!
Your image file size has been reduced by **86%** 🎉
<details>
<summary>
Details
</summary>
| File | Before | After | Percent reduction |
|:--|:--|:--|:--|
| /build/icon.png | 16.17kb | 1.30kb | 91.93% |
| /src/Shared/HandyControlDemo_Shared/Resources/Img/Flag/ca-E... | 70bd4f5db74fbf923c99645925fd5d60f2d485d2 | 17cfa668443df474eb1f826b6ef2c4f018aad2b7 | diff --git a/build/icon.png b/build/icon.png
index 652eb767e..f432bcafa 100644
Binary files a/build/icon.png and b/build/icon.png differ
diff --git a/src/Shared/HandyControlDemo_Shared/Resources/Img/Flag/ca-Es.png b/src/Shared/HandyControlDemo_Shared/Resources/Img/Flag/ca-Es.png
index b94c3fbbc..a64586ed2 100644
Binary... | [
"build/icon.png",
"src/Shared/HandyControlDemo_Shared/Resources/Img/Flag/ca-Es.png"
] | [] | true | ||
HandyOrg/HandyControl | 1,393 | issue_to_patch | Czech language | I translated library and demo application to czech language. | 624545376fbadcf6f7a36f1ab863706359808fa6 | c0515d0259364dedf7d71b749ba4dee784157c8f | diff --git a/src/Net_40/HandyControlDemo_Net_40/HandyControlDemo_Net_40.csproj b/src/Net_40/HandyControlDemo_Net_40/HandyControlDemo_Net_40.csproj
index cc19b8d14..6b412450c 100644
--- a/src/Net_40/HandyControlDemo_Net_40/HandyControlDemo_Net_40.csproj
+++ b/src/Net_40/HandyControlDemo_Net_40/HandyControlDemo_Net_40.cs... | [
"src/Net_40/HandyControlDemo_Net_40/HandyControlDemo_Net_40.csproj",
"src/Net_40/HandyControl_Net_40/HandyControl_Net_40.csproj",
"src/Net_GE45/HandyControlDemo_Net_GE45/HandyControlDemo_Net_GE45.csproj",
"src/Net_GE45/HandyControl_Net_GE45/HandyControl_Net_GE45.csproj",
"src/Shared/HandyControlDemo_Shared/... | [] | true | ||
HandyOrg/HandyControl | 1,281 | issue_to_patch | Add SECURITY.md | Hi there
Here is _Security Policy_ of HandyControl, please help to check if there is needed.
Thanks. | 465433560f0fe96bf2bc71e93f60b923d21c7bc6 | 1a510ac7c2b8833a06b9757f7ed17b3d9a285d3e | diff --git a/SECURITY.md b/SECURITY.md
new file mode 100644
index 000000000..be912cf1c
--- /dev/null
+++ b/SECURITY.md
@@ -0,0 +1,13 @@
+# Security Policy
+
+## Supported Versions
+
+At the moment, the only supported version of the **HandyControl** is the newest one. You can find it on *NuGet*.
+[https://www.nuget.or... | [
"SECURITY.md"
] | [] | true | ||
HandyOrg/HandyControl | 1,266 | issue_to_patch | Update ISSUE_TEMPLATE from md to yaml | Hi there,
Update ISSUE_TEMPLATE from md to yaml.
Thanks
## Before

## After

| 5a1da60237a3f33b06b9605c2da1e19a0aa7c5bd | b657f6c184b8e524bd67d45310e430c68daaa911 | diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
deleted file mode 100644
index 214cad855..000000000
--- a/.github/ISSUE_TEMPLATE/feature_request.md
+++ /dev/null
@@ -1,20 +0,0 @@
----
-name: Feature request
-about: Suggest an idea for this project
-title: '[Feature req... | [
".github/ISSUE_TEMPLATE/feature_request.md",
".github/ISSUE_TEMPLATE/feature_request.yaml"
] | [] | true | ||
HandyOrg/HandyControl | 1,380 | issue_to_patch | Update index.md | VerifyFunc was dissappeared in v3.4.0.0 | bd5161c0a77c380fbacd8f1358beb3e89251631b | ac69e273ef63604a2ed1d0be999e0384bfa698ee | diff --git a/doc/source/handycontrol/extend_controls/numericUpDown/index.md b/doc/source/handycontrol/extend_controls/numericUpDown/index.md
index f37603426..59860a92e 100644
--- a/doc/source/handycontrol/extend_controls/numericUpDown/index.md
+++ b/doc/source/handycontrol/extend_controls/numericUpDown/index.md
@@ -86,... | [
"doc/source/handycontrol/extend_controls/numericUpDown/index.md"
] | [] | true | ||
HandyOrg/HandyControl | 1,337 | issue_to_patch | [Bot] Automated PR to fix formatting errors | Automated PR to fix formatting errors | 56433f3022a9fedaaac261c3c2b4ebbb328674bb | 1b6f2334a0350cae7f921226d856eb022e6c5eba | diff --git a/src/Shared/HandyControl_Shared/Controls/Attach/ToggleButtonAttach.cs b/src/Shared/HandyControl_Shared/Controls/Attach/ToggleButtonAttach.cs
index 66bd9a1df..79fe838b6 100644
--- a/src/Shared/HandyControl_Shared/Controls/Attach/ToggleButtonAttach.cs
+++ b/src/Shared/HandyControl_Shared/Controls/Attach/Toggl... | [
"src/Shared/HandyControl_Shared/Controls/Attach/ToggleButtonAttach.cs"
] | [] | true | ||
HandyOrg/HandyControl | 1,365 | issue_to_patch | 解决编译目标为x86的情况下报错 | 托管调试助手 "PInvokeStackImbalance":“对 PInvoke 函数“HandyControl!HandyControl.Tools.Interop.InteropMethods::GetWindowPlacement”的调用导致堆栈不对称。原因可能是托管的 PInvoke 签名与非托管的目标签名不匹配。请检查 PInvoke 签名的调用约定和参数与非托管的目标签名是否匹配。”
具体报错为情况为(HandyControl和HandyControls都同样错误):[https://github.com/ghost1372/HandyControls/issues/183](url) | 8e707a66a92868ba63d6083e8953164f0f18f0e5 | dc50859ceee4af9e649ec341de90eca9cbf737cb | diff --git a/src/Shared/HandyControl_Shared/Tools/Interop/InteropValues.cs b/src/Shared/HandyControl_Shared/Tools/Interop/InteropValues.cs
index 66f055b4e..431749b7a 100644
--- a/src/Shared/HandyControl_Shared/Tools/Interop/InteropValues.cs
+++ b/src/Shared/HandyControl_Shared/Tools/Interop/InteropValues.cs
@@ -379,7 +... | [
"src/Shared/HandyControl_Shared/Tools/Interop/InteropValues.cs"
] | [] | true | ||
HandyOrg/HandyControl | 1,292 | issue_to_patch | typofix: fix typo of NumericUpDown's doc | Fix issues: #1291 | c43fefb404e9e81c7061f90f45dffb4639338be9 | 2968482787b5ec94f2618378d9be02d171929845 | diff --git a/doc/source/handycontrol/extend_controls/numericUpDown/index.md b/doc/source/handycontrol/extend_controls/numericUpDown/index.md
index ad0773ae3..f37603426 100644
--- a/doc/source/handycontrol/extend_controls/numericUpDown/index.md
+++ b/doc/source/handycontrol/extend_controls/numericUpDown/index.md
@@ -5,8... | [
"doc/source/handycontrol/extend_controls/numericUpDown/index.md"
] | [] | true | ||
HandyOrg/HandyControl | 1,286 | issue_to_patch | [Bot] Automated PR to fix formatting errors | Automated PR to fix formatting errors | bf1272399da1c170200c06d89f4467dbed4a2f00 | 4401449b92fb437e3247bbca52092fa0934b967d | diff --git a/src/Shared/HandyControl_Shared/Controls/Input/TimePicker.cs b/src/Shared/HandyControl_Shared/Controls/Input/TimePicker.cs
index a5907f331..fa35785a5 100644
--- a/src/Shared/HandyControl_Shared/Controls/Input/TimePicker.cs
+++ b/src/Shared/HandyControl_Shared/Controls/Input/TimePicker.cs
@@ -146,7 +146,7 @@... | [
"src/Shared/HandyControl_Shared/Controls/Input/TimePicker.cs",
"src/Shared/HandyControl_Shared/Controls/Time/Clock/ClockBase.cs"
] | [] | true | ||
HandyOrg/HandyControl | 1,256 | issue_to_patch | [Bot] Automated PR to fix formatting errors | Automated PR to fix formatting errors | 7519c7e93a2efdc98b1064977baa8dc0e2ef6549 | 61ce2626a8cae191f040a4f0af757fcbfb750d60 | diff --git a/src/Shared/HandyControl_Shared/Controls/Input/CheckComboBox/CheckComboBox.cs b/src/Shared/HandyControl_Shared/Controls/Input/CheckComboBox/CheckComboBox.cs
index 208892c71..7a484da2e 100644
--- a/src/Shared/HandyControl_Shared/Controls/Input/CheckComboBox/CheckComboBox.cs
+++ b/src/Shared/HandyControl_Shar... | [
"src/Shared/HandyControl_Shared/Controls/Input/CheckComboBox/CheckComboBox.cs"
] | [] | true | ||
HandyOrg/HandyControl | 1,243 | issue_to_patch | [Bot] Automated PR to fix formatting errors | Automated PR to fix formatting errors | 7fd789380bd8b55215295e5516552a6f7cb9ba71 | 10afbbc3c5876509458bf8489b84a8be56967dcb | diff --git a/src/Shared/HandyControl_Shared/Controls/Input/PinBox.cs b/src/Shared/HandyControl_Shared/Controls/Input/PinBox.cs
index 0cd7810d8..87a69f529 100644
--- a/src/Shared/HandyControl_Shared/Controls/Input/PinBox.cs
+++ b/src/Shared/HandyControl_Shared/Controls/Input/PinBox.cs
@@ -351,7 +351,7 @@ public Brush Ca... | [
"src/Shared/HandyControl_Shared/Controls/Input/PinBox.cs"
] | [] | true | ||
HandyOrg/HandyControl | 1,224 | issue_to_patch | remove extra whitespace char in RegexPatterns.NIntPattern | 移除RegexPatterns.NIntPattern中的多余空格 | 8de36dbae4ad2ab80d64298bb0e35db7afdd6e8a | a1a47f35156cf50092681a2334383204b6b12b87 | diff --git a/src/Shared/HandyControl_Shared/Tools/RegexPatterns.cs b/src/Shared/HandyControl_Shared/Tools/RegexPatterns.cs
index b01ecb95f..09925900b 100644
--- a/src/Shared/HandyControl_Shared/Tools/RegexPatterns.cs
+++ b/src/Shared/HandyControl_Shared/Tools/RegexPatterns.cs
@@ -99,7 +99,7 @@ public sealed class Regex... | [
"src/Shared/HandyControl_Shared/Tools/RegexPatterns.cs"
] | [] | true | ||
HandyOrg/HandyControl | 1,202 | issue_to_patch | [Bot] Automated PR to fix formatting errors | Automated PR to fix formatting errors | 28a485fd18ffd8bc69aa2b614a2c3c8d1c038494 | 5ce14330e4c8cb579c9f2ca64fcd0c1525c250ae | diff --git a/src/Shared/HandyControl_Shared/Controls/Ribbon/Ribbon.cs b/src/Shared/HandyControl_Shared/Controls/Ribbon/Ribbon.cs
index a46aab5ff..29439d860 100644
--- a/src/Shared/HandyControl_Shared/Controls/Ribbon/Ribbon.cs
+++ b/src/Shared/HandyControl_Shared/Controls/Ribbon/Ribbon.cs
@@ -124,7 +124,7 @@ public over... | [
"src/Shared/HandyControl_Shared/Controls/Ribbon/Ribbon.cs",
"src/Shared/HandyControl_Shared/Controls/Ribbon/RibbonTabHeader.cs"
] | [] | true | ||
HandyOrg/HandyControl | 1,201 | issue_to_patch | Add ribbon menu | 618d367c230bc7a31e4a06865961304fc5150b63 | 62ed7bf86a5b9c097b2500a75b474fd9e6795f5a | diff --git a/src/Net_40/HandyControl_Net_40/Themes/Theme.xaml b/src/Net_40/HandyControl_Net_40/Themes/Theme.xaml
index 0ca52e76d..c7b03f625 100644
--- a/src/Net_40/HandyControl_Net_40/Themes/Theme.xaml
+++ b/src/Net_40/HandyControl_Net_40/Themes/Theme.xaml
@@ -832,6 +832,31 @@
<tools:ComboBoxItemCapsuleStyleSelector ... | [
"src/Net_40/HandyControl_Net_40/Themes/Theme.xaml",
"src/Shared/HandyControl_Shared/Controls/Other/Poptip.cs",
"src/Shared/HandyControl_Shared/Controls/Panel/ClipGrid.cs",
"src/Shared/HandyControl_Shared/Controls/Ribbon/Ribbon.cs",
"src/Shared/HandyControl_Shared/Controls/Ribbon/RibbonGroup.cs",
"src/Shar... | [] | true | |||
HandyOrg/HandyControl | 1,199 | issue_to_patch | [Bot] Automated PR to fix formatting errors | Automated PR to fix formatting errors | 7b686925095e563affc2a3f27ccf193bdbfac475 | c6791affcf7345c844475b873b4d13d62a5f5824 | diff --git a/src/Shared/HandyControl_Shared/Controls/Attach/ScrollViewerAttach.cs b/src/Shared/HandyControl_Shared/Controls/Attach/ScrollViewerAttach.cs
index b49739acd..f9649b261 100644
--- a/src/Shared/HandyControl_Shared/Controls/Attach/ScrollViewerAttach.cs
+++ b/src/Shared/HandyControl_Shared/Controls/Attach/Scrol... | [
"src/Shared/HandyControl_Shared/Controls/Attach/ScrollViewerAttach.cs"
] | [] | true | ||
HandyOrg/HandyControl | 1,081 | issue_to_patch | DateTimePicker sets the Culture to InvariantCulture and breaks any other globalization in the app
**Describe the bug**
DateTimePicker sets the culture to InvariantCulture and breaks any other globalization in the app.
See screenshots below for details.
The problem is caused by this PR:
https://github.com/Han... | Fixed https://github.com/HandyOrg/HandyControl/issues/1065 | Fixed #1065
The inconsistency we had earlier with the wrong date display was related to the operating system settings.
So there is no need to adjust the culture anymore | 3e7bd22f326d0f6867c856dc9317d68f39ca885e | f35a2647da15f99560314327eebfc1a1f5e79ef9 | diff --git a/src/Shared/HandyControl_Shared/Controls/Input/DateTimePicker.cs b/src/Shared/HandyControl_Shared/Controls/Input/DateTimePicker.cs
index f20e7ad0e..878c317cf 100644
--- a/src/Shared/HandyControl_Shared/Controls/Input/DateTimePicker.cs
+++ b/src/Shared/HandyControl_Shared/Controls/Input/DateTimePicker.cs
@@ ... | [
"src/Shared/HandyControl_Shared/Controls/Input/DateTimePicker.cs"
] | [] | true | |
HandyOrg/HandyControl | 1,093 | issue_to_patch | Add japanese language support | This adds the japanese language translation support.
## Changes
- Adds japanese string resources (.resx)
- Adds flag image
- Adds japanese flag button to the demo app
## Testing
I checked these controls.
- [x] MessageBox button text
- [x] ColorPicker button text
- [x] TimeBar interval text
- [x] Pag... | 5540eedbcfab223b42c78346aa3dae2493953dbf | def4397c08eaa86049c712de6929a744917d0ed1 | diff --git a/build/build-for-myget.nuspec b/build/build-for-myget.nuspec
index 546faaef4..a10069222 100644
--- a/build/build-for-myget.nuspec
+++ b/build/build-for-myget.nuspec
@@ -35,6 +35,7 @@
<file src="lib\net40\en\HandyControl.resources.dll" target="lib\net40\en\HandyControl.resources.dll" />
<file src="... | [
"build/build-for-myget.nuspec",
"build/build.Lang.ja.nuspec",
"src/Net_40/HandyControlDemo_Net_40/HandyControlDemo_Net_40.csproj",
"src/Net_40/HandyControl_Net_40/HandyControl_Net_40.csproj",
"src/Net_GE45/HandyControlDemo_Net_GE45/HandyControlDemo_Net_GE45.csproj",
"src/Net_GE45/HandyControl_Net_GE45/Han... | [] | true | ||
HandyOrg/HandyControl | 1,141 | issue_to_patch | Update bug_report.yaml | add missing versions | b963e27804adeea7d00c1f33a43cacb60445105a | ee90c7dc4f602c08c8bfaa44e2b2958731db2bb4 | diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml
index ea3be13cf..f03073b18 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.yaml
+++ b/.github/ISSUE_TEMPLATE/bug_report.yaml
@@ -30,9 +30,15 @@ body:
attributes:
label: NuGet package version
options:
+ ... | [
".github/ISSUE_TEMPLATE/bug_report.yaml"
] | [] | true | ||
HandyOrg/HandyControl | 1,031 | issue_to_patch | Update bug report template | 7bf0a1ef3aef8adeac02300c72cd50e2ef4d036e | e7a5aa275f9091a4b8967ba12dc80cce0166deef | diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
deleted file mode 100644
index 150c58a44..000000000
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ /dev/null
@@ -1,32 +0,0 @@
----
-name: Bug report
-about: Create a report to help us improve
-title: ''
-labels: ''
-assignees: ''
-... | [
".github/ISSUE_TEMPLATE/bug_report.md",
".github/ISSUE_TEMPLATE/bug_report.yaml"
] | [] | true | |||
HandyOrg/HandyControl | 1,114 | issue_to_patch | Changed the project url of AutumnBox. | Due to the unstability, there are lot of people who can not access the AutumnBox's official site normally. For this reason, I changed the url of AutumnBox in README.md to its open source repo on GitHub directly. | 85e8909b11533e79f45890d433321070bb50227f | f05ce9e7d22bec64a3ed01ab0bcccb0a9c4a85ac | diff --git a/README-cn.md b/README-cn.md
index c3371000e..0e9016016 100644
--- a/README-cn.md
+++ b/README-cn.md
@@ -143,7 +143,7 @@ HandyControl 项目已加入 [dotNET China](https://gitee.com/dotnetchina) 组
<a href="https://getquicker.net" target="_blank"><img width="70px" alt="quicker" src="https://files.getquicker.net/_... | [
"README-cn.md",
"README.md"
] | [] | true | ||
HandyOrg/HandyControl | 1,123 | issue_to_patch | Fix #1122 | 85e8909b11533e79f45890d433321070bb50227f | 70a732474b3a090b3c5510e178ce146e5d3c3b4e | diff --git a/src/Shared/HandyControl_Shared/Tools/Interop/InteropMethods.cs b/src/Shared/HandyControl_Shared/Tools/Interop/InteropMethods.cs
index 7fc72dd91..f34b9b723 100644
--- a/src/Shared/HandyControl_Shared/Tools/Interop/InteropMethods.cs
+++ b/src/Shared/HandyControl_Shared/Tools/Interop/InteropMethods.cs
@@ -306... | [
"src/Shared/HandyControl_Shared/Tools/Interop/InteropMethods.cs",
"src/Shared/HandyControl_Shared/Tools/Interop/InteropValues.cs"
] | [] | true | |||
HandyOrg/HandyControl | 1,082 | issue_to_patch | Update push-to-myget.yml | ee8f18aaea11a5e6d8f0714f1c88642b6d33c968 | aaae79f651acffbabece9ab2c94fd2946c85a573 | diff --git a/.github/workflows/push-to-myget.yml b/.github/workflows/push-to-myget.yml
index 825c0df36..4d8efec40 100644
--- a/.github/workflows/push-to-myget.yml
+++ b/.github/workflows/push-to-myget.yml
@@ -7,6 +7,12 @@ jobs:
- name: checkout
uses: actions/checkout@master
+ - name: Setu... | [
".github/workflows/push-to-myget.yml"
] | [] | true | |||
HandyOrg/HandyControl | 953 | issue_to_patch | 加上稳定的全屏窗口功能 | 测试代码: https://github.com/lindexi/lindexi_gd/tree/5b0440c6617b87cdd9953dc68e706b22c5939ccb/KenafearcuweYemjecahee | d7b4041ef5c8539faf6f39e9f43a658dd4c14257 | d1e117993abbbd3f2c80d3e098b39afa51455a01 | diff --git a/src/Shared/HandyControl_Shared/HandyControl_Shared.projitems b/src/Shared/HandyControl_Shared/HandyControl_Shared.projitems
index 7032cb29b..895d18dc5 100644
--- a/src/Shared/HandyControl_Shared/HandyControl_Shared.projitems
+++ b/src/Shared/HandyControl_Shared/HandyControl_Shared.projitems
@@ -82,6 +82,7 ... | [
"src/Shared/HandyControl_Shared/HandyControl_Shared.projitems",
"src/Shared/HandyControl_Shared/Tools/Helper/FullScreenHelper.cs",
"src/Shared/HandyControl_Shared/Tools/Helper/WindowHelper.cs",
"src/Shared/HandyControl_Shared/Tools/Interop/InteropMethods.cs",
"src/Shared/HandyControl_Shared/Tools/Interop/In... | [] | true | ||
HandyOrg/HandyControl | 1,045 | issue_to_patch | net6.0 编译 | 没改啥 就 net6 下编译 | ffd27d83bf4693d2f15c2d02d4f10e5152b66b78 | d5b2de8e00d49b1f410d8097818a2af43d0cf2b5 | diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index d9212433f..85ac437c7 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -4,10 +4,16 @@ jobs:
build:
runs-on: windows-latest
steps:
- - name: checkout
+ - name: Checkout
uses: actions/c... | [
".github/workflows/build.yml",
"build/build-for-myget.nuspec",
"build/build.Lang.ca-ES.nuspec",
"build/build.Lang.en.nuspec",
"build/build.Lang.fa.nuspec",
"build/build.Lang.fr.nuspec",
"build/build.Lang.ko-KR.nuspec",
"build/build.Lang.pl.nuspec",
"build/build.Lang.pt-BR.nuspec",
"build/build.Lan... | [
{
"comment": "这个现在还需要手动加上安装不?似乎有带了",
"path": ".github/workflows/build.yml",
"hunk": "@@ -7,6 +7,13 @@ jobs:\n - name: checkout\n uses: actions/checkout@master\n \n+ - name: Install .NET 60\n+ uses: actions/setup-dotnet@v1\n+ with:\n+ dotnet-version: '6.0'"... | true | ||
HandyOrg/HandyControl | 1,048 | issue_to_patch | [Bot] Automated PR to fix formatting errors | Automated PR to fix formatting errors | 97a809559ab2e45fcdc7b9f99ee08daedd798d47 | b2caa9b0e3f48427cd069a3957cdfa4b896c4965 | diff --git a/src/Shared/HandyControl_Shared/Controls/Cover/CoverFlow/CoverFlow.cs b/src/Shared/HandyControl_Shared/Controls/Cover/CoverFlow/CoverFlow.cs
index 603d064d6..b5581bfca 100644
--- a/src/Shared/HandyControl_Shared/Controls/Cover/CoverFlow/CoverFlow.cs
+++ b/src/Shared/HandyControl_Shared/Controls/Cover/CoverF... | [
"src/Shared/HandyControl_Shared/Controls/Cover/CoverFlow/CoverFlow.cs"
] | [] | true | ||
Hardt-Coded/Terminal.Gui.Elmish | 27 | issue_to_patch | TabView Tabs
### Description
Defining individual tabs for a tab view doesn't seem to be implemented. I'd like to create a PR to implement this and am wondering what the API might look like.
I was thinking of something like this:
```fs
View.tabView [
tabView.tabs [
tabView.tab [
tab.title "Tab 1"... | Tabs | Implement a feliz-style DSL for creating tabs. This will close #26 | 766e9fd62129da34e2626ad3cb08a89d234721a0 | 4d2fac79bd3f1c80ef63c8eda95a9a2d0b0465c6 | diff --git a/examples/Elmish.Console.Elements/App.fs b/examples/Elmish.Console.Elements/App.fs
index 4ace408..e9c7fbd 100644
--- a/examples/Elmish.Console.Elements/App.fs
+++ b/examples/Elmish.Console.Elements/App.fs
@@ -13,6 +13,7 @@ type Pages =
| ScrollView
| MessageBoxes
| Wizard
+ | TabView
ty... | [
"examples/Elmish.Console.Elements/App.fs",
"examples/Elmish.Console.Elements/Elmish.Console.Elements.fsproj",
"examples/Elmish.Console.Elements/TabView.fs",
"src/Terminal.Gui.Elmish/Elements.fs",
"src/Terminal.Gui.Elmish/Interop.fs",
"src/Terminal.Gui.Elmish/Props.fs",
"src/Terminal.Gui.Elmish/Types.fs"... | [
{
"comment": "Do we need this flake files?",
"path": "flake.nix",
"hunk": "",
"resolving_sha": "4d2fac79bd3f1c80ef63c8eda95a9a2d0b0465c6",
"resolving_diff": ""
}
] | true | |
Hardt-Coded/Terminal.Gui.Elmish | 25 | issue_to_patch | Create functions to add nodes to a tree view | 3acfb43640aebe8f07eafbef5c4e1c0ca7cede31 | a4db6868c88f4a3c8ef599fcfde133c4348e5d3f | diff --git a/src/Terminal.Gui.Elmish/Elements.fs b/src/Terminal.Gui.Elmish/Elements.fs
index b738f96..ec1ec96 100644
--- a/src/Terminal.Gui.Elmish/Elements.fs
+++ b/src/Terminal.Gui.Elmish/Elements.fs
@@ -2381,6 +2381,8 @@ type TreeViewElement(props:IProperty list) =
props |> Interop.getValue<int> "scrollOffse... | [
"src/Terminal.Gui.Elmish/Elements.fs",
"src/Terminal.Gui.Elmish/Props.fs"
] | [] | true | |||
Hardt-Coded/Terminal.Gui.Elmish | 20 | issue_to_patch | Update example - prop.text has been changed to label.text | The example in the README did not compile with the latest nuget package.
Updated it to use label.text and it seems to run fine. | a063d48f0562b74830f51a9b235dbe2d6a3e07a3 | 9ab73cf59c55b20af4582b8dfa0398b3381aab33 | diff --git a/README.md b/README.md
index 05d17d0..331ee43 100644
--- a/README.md
+++ b/README.md
@@ -126,13 +126,13 @@ let view (model:Model) (dispatch:Msg->unit) =
prop.position.y.at 1
prop.textAlignment.centered
prop.color (Color.BrightYellow, Color.Green)
- ... | [
"README.md"
] | [] | true | ||
Hardt-Coded/Terminal.Gui.Elmish | 12 | issue_to_patch | Bump gui cs version and tools | This PR bumps the min version of Terminal.cs to 0.81 (latest stable) and updates the paket/FAKE versions + distribution mechanism to use .net core 3 global tools. | 671addaf98987e6b57adb23d72526d156f1072db | 7c5e5c2b8961ed3049f49a85fdad0af39bb59549 | diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json
new file mode 100644
index 0000000..b713071
--- /dev/null
+++ b/.config/dotnet-tools.json
@@ -0,0 +1,18 @@
+{
+ "version": 1,
+ "isRoot": true,
+ "tools": {
+ "paket": {
+ "version": "5.249.0",
+ "commands": [
+ "paket"
+ ]
+... | [
".config/dotnet-tools.json",
".paket/Paket.Restore.targets",
".paket/paket.exe",
"build.cmd",
"build.sh",
"examples/Elmish.Console.Elements/Elmish.Console.Elements.fsproj",
"global.json",
"paket.dependencies",
"paket.lock",
"paket.references"
] | [] | true |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.