Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "nonebot-plugin-mimo-console"
version = "0.1.9"
version = "0.1.10"
description = "A lightweight WebUI management console for NoneBot2"
readme = "README.md"
requires-python = ">=3.10"
Expand Down Expand Up @@ -58,7 +58,7 @@ requires = ["uv_build>=0.10.0,<0.12.0"]
build-backend = "uv_build"

[tool.bumpversion]
current_version = "0.1.9"
current_version = "0.1.10"
commit = true
message = "chore: 发布 v{new_version}"
tag = true
Expand Down
4 changes: 2 additions & 2 deletions src/nonebot_plugin_mimo_console/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./assets/styles.css?v=1.3.8">
<link rel="stylesheet" href="./assets/styles.css?v=1.3.9">
</head>
<body>
<div id="bg-layer" class="bg-layer"></div>
Expand Down Expand Up @@ -626,6 +626,6 @@ <h2 id="detail-title">插件详情</h2>
</div>

<div id="toast-stack" class="toast-stack" aria-live="polite"></div>
<script src="./assets/app.js?v=1.3.8" defer></script>
<script src="./assets/app.js?v=1.3.9" defer></script>
</body>
</html>
4 changes: 1 addition & 3 deletions tests/test_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,7 @@ def test_github_proxy_tests_render_per_source_latency(self) -> None:
static = ROOT / "src" / "nonebot_plugin_mimo_console" / "static"
script = (static / "assets" / "app.js").read_text(encoding="utf-8")
styles = (static / "assets" / "styles.css").read_text(encoding="utf-8")
api = (ROOT / "src" / "nonebot_plugin_mimo_console" / "api.py").read_text(
encoding="utf-8"
)
api = (ROOT / "src" / "nonebot_plugin_mimo_console" / "api.py").read_text(encoding="utf-8")
self.assertIn("PROXY_TEST_CONCURRENCY = 2", script)
self.assertIn('class="radio-option proxy-option"', script)
self.assertIn('class="proxy-latency"', script)
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading