Skip to content

Commit 5289422

Browse files
committed
release 6.0
1 parent a3667f4 commit 5289422

File tree

6 files changed

+149
-144
lines changed

6 files changed

+149
-144
lines changed

.idea/workspace.xml

Lines changed: 130 additions & 131 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,12 @@
99
* **VM Info**: View detailed information about the Dart Virtual Machine, including memory usage (current/max RSS).
1010
* **HTTP Monitor**: Capture and inspect HTTP requests made by your application.
1111
* **Logging**: View logs sent via `dart:developer`.
12-
13-
12+
![](https://github.com/mdddj/dd_flutter_idea_plugin/blob/5.7.4/images/vm-toolwindow/vm1.png?raw=true)
13+
![](https://github.com/mdddj/dd_flutter_idea_plugin/blob/5.7.4/images/vm-toolwindow/vm2.png?raw=true)
14+
![](https://github.com/mdddj/dd_flutter_idea_plugin/blob/5.7.4/images/vm-toolwindow/vm3.png?raw=true)
15+
16+
See [Document](https://flutterx.itbug.shop/zh/vm/dart_vm_panel/)
17+
1418
## [5.7.6] - 2025-08-18
1519

1620
* Change New [Document](https://mdddj.github.io/flutterx-doc/)

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ tasks {
153153

154154
publishPlugin {
155155
token.set(pushToken)
156-
channels.set(listOf("bata"))
156+
channels.set(listOf("bata","stable"))
157157
}
158158

159159
runIde {

gradle.properties

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
kotlin.stdlib.default.dependency=false
22
pluginVersion=6.0.0.
33
#252
4-
#dartVersion=252.24322.5
5-
#sinceBuildVersion=252
6-
#untilBuildVersion=252.*
7-
#ideType=252
4+
dartVersion=252.24322.5
5+
sinceBuildVersion=252
6+
untilBuildVersion=252.*
7+
ideType=252
88
#251
9-
dartVersion=251.27812.12
10-
sinceBuildVersion=251.25410
11-
untilBuildVersion=251.*
12-
ideType=251
9+
#dartVersion=251.27812.12
10+
#sinceBuildVersion=251.25410
11+
#untilBuildVersion=251.*
12+
#ideType=251
1313
#====================
1414
#systemProp.http.proxyHost=127.0.0.1
1515
#systemProp.http.proxyPort=7897

src/main/kotlin/shop/itbug/fluttercheckversionx/window/DartVmServiceWindowsFactory.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ private fun RequestDetailPanel(
330330
closable = false
331331
)
332332
},
333-
style = JewelTheme.editorTabStyle
333+
style = JewelTheme.editorTabStyle,
334334
)
335335
Divider(Orientation.Horizontal, Modifier.fillMaxWidth())
336336
Box(modifier = Modifier.weight(1f).padding(8.dp)) {

src/main/kotlin/shop/itbug/fluttercheckversionx/window/vm/FlutterAppsTab.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ If you are running on a real device, please make sure the device is connected to
4545
)
4646
} else {
4747
Column(modifier = Modifier.fillMaxSize()) {
48-
TabStrip(tabs, JewelTheme.editorTabStyle)
48+
TabStrip(
49+
tabs, JewelTheme.editorTabStyle,
50+
)
4951
val selectApp = flutterAppList.getOrNull(tabIndex)
5052
if (selectApp != null) {
5153
body.invoke(selectApp)

0 commit comments

Comments
 (0)