Compare commits

...

2 Commits

Author SHA1 Message Date
Junyan Qin
4fd488b97a chore: Bump version to 4.8.6 in pyproject.toml, uv.lock, and __init__.py 2026-02-26 22:54:13 +08:00
Junyan Qin
422a34ead4 fix: plugins in recommendation cannot be installed 2026-02-26 22:53:29 +08:00
4 changed files with 3 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
[project]
name = "langbot"
version = "4.8.5"
version = "4.8.6"
description = "Production-grade platform for building agentic IM bots"
readme = "README.md"
license-files = ["LICENSE"]

View File

@@ -1,3 +1,3 @@
"""LangBot - Production-grade platform for building agentic IM bots"""
__version__ = '4.8.5'
__version__ = '4.8.6'

2
uv.lock generated
View File

@@ -1799,7 +1799,7 @@ wheels = [
[[package]]
name = "langbot"
version = "4.8.4"
version = "4.8.6"
source = { editable = "." }
dependencies = [
{ name = "aiocqhttp" },

View File

@@ -297,15 +297,6 @@ function MarketPageContent({
const handleInstallPlugin = useCallback(
async (author: string, pluginName: string) => {
try {
// Find the full plugin object from the list
const pluginVO = plugins.find(
(p) => p.author === author && p.pluginName === pluginName,
);
if (!pluginVO) {
console.error('Plugin not found:', author, pluginName);
return;
}
// Fetch full plugin details to get PluginV4 object
const response = await getCloudServiceClientSync().getPluginDetail(
author,