File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 1+ # Dart Plugin for IntelliJ Changelog
2+
3+ ## [ Unreleased]
4+
5+ - Vendor change from "JetBrains" to "Google"
6+ - Build system change from Basel to Gradle
7+ - Removal of the old Code Coverage support, all references to com.intellij.coverage.*
8+ - New Dart language feature: Dot Shorthands (https://youtrack.jetbrains.com/issue/IDEA-370100 )
9+ - Support new 'Null-Aware Elements’ syntax (https://youtrack.jetbrains.com/issue/IDEA-374053 )
10+ - Fix: IDE freezes after inserting a piece of Dart code (https://youtrack.jetbrains.com/issue/IDEA-231468 )
11+ - Fix: DartParser performance issue: sluggish typing in the editor (https://youtrack.jetbrains.com/issue/IDEA-365957 )
12+ - Fix: Format of very long line gives uncompilable code (https://youtrack.jetbrains.com/issue/IDEA-328345 )
13+ - Fix: Cannot save Dart line length in Settings (https://youtrack.jetbrains.com/issue/IDEA-322573 )
14+ - Closing labels should look like inlay hints, not like real comments (https://youtrack.jetbrains.com/issue/IDEA-289260)
Original file line number Diff line number Diff line change @@ -34,12 +34,13 @@ intellijPlatform {
3434 name = providers.gradleProperty(" pluginName" )
3535 id = providers.gradleProperty(" pluginId" )
3636 version = providers.gradleProperty(" pluginVersion" )
37- // TODO(https://github.com/flutter/dart-intellij-third-party/issues/23) Add a changelog:
38- // val changelog = ...
3937 ideaVersion {
4038 sinceBuild = providers.gradleProperty(" pluginSinceBuild" )
4139 untilBuild = providers.gradleProperty(" pluginUntilBuild" )
4240 }
41+ changeNotes = provider {
42+ file(" CHANGELOG.md" ).readText(Charsets .UTF_8 )
43+ }
4344 }
4445 pluginVerification {
4546 failureLevel = listOf (
You can’t perform that action at this time.
0 commit comments