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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@
# arthas-workbench Changelog

## [Unreleased]

## [0.0.9] - 2026-09-14
### Changed
- 将公开仓库、vendor、文档链接和 Jifa helper 默认下载地址对齐到 `weilhuang/arthas-workbench` 与当前版本 `0.0.8`;Marketplace 插件 ID `com.github.wl2027.arthasworkbench` 与 Java 包名 `com.alibaba.arthas.idea.workbench.*` 保持不变,以确保插件 30843 可继续升级
- 将公开仓库、vendor、文档链接和 Jifa helper 默认下载地址对齐到 `weilhuang/arthas-workbench`。Marketplace 插件 ID `com.github.wl2027.arthasworkbench` 与 Java 包名 `com.alibaba.arthas.idea.workbench.*` 保持不变,以确保插件 30843 可继续升级。
- README 品牌 logo 从蓝色改回原始 motif 的黑/白 `<picture>` 方案:浅色 `#1f2328`、深色 `#e6edf3`,fallback SVG 也不再使用品牌蓝。

## [0.0.8] - 2026-06-07
### Fixed
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
</div>

<div align="center">
<img src="docs/assets/logo-readme.svg" alt="Arthas Workbench 插件图标预览" width="128" height="128" />
<picture>
<source media="(prefers-color-scheme: dark)" srcset="docs/assets/logo-readme-dark.svg">
<source media="(prefers-color-scheme: light)" srcset="docs/assets/logo-readme-light.svg">
<img src="docs/assets/logo-readme.svg" alt="Arthas Workbench 插件图标预览" width="128" height="128">
</picture>
</div>

<div align="center">
Expand Down Expand Up @@ -65,7 +69,7 @@ Arthas Workbench 是一个面向本地 Arthas 工作流的 IntelliJ IDEA 插件
Arthas Workbench 是一个独立维护的 IntelliJ IDEA 插件开源项目,目标是把本地 JVM 调试、Arthas Attach、终端会话、日志查看、Jifa 分析和 MCP 接入收敛到一个更顺手的 IDE 工作流里。

- 仓库地址:[weilhuang/arthas-workbench](https://github.com/weilhuang/arthas-workbench)
- 当前版本:`0.0.8`
- 当前版本:`0.0.9`
- 项目状态:`Alpha / 可用但持续演进`
- 目标平台:`IntelliJ IDEA Community 2025.1+`
- 开源协议:[`Apache-2.0`](LICENSE)
Expand Down Expand Up @@ -230,7 +234,7 @@ cd jifa

5. 与它一同上传插件包:

- `build/distributions/arthas-workbench-0.0.8.zip`
- `build/distributions/arthas-workbench-0.0.9.zip`
- `arthas-jifa-server-helper.jar`

6. 上传位置:
Expand Down
10 changes: 10 additions & 0 deletions docs/assets/logo-readme-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions docs/assets/logo-readme-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 12 additions & 21 deletions docs/assets/logo-readme.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pluginGroup = com.github.wl2027.arthasworkbench
pluginName = Arthas Workbench
pluginRepositoryUrl = https://github.com/weilhuang/arthas-workbench
# SemVer format -> https://semver.org
pluginVersion = 0.0.8
pluginVersion = 0.0.9

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 251
Expand Down