You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: compose-stability-analyzer-idea/build.gradle.kts
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -74,6 +74,7 @@ intellijPlatform {
74
74
<b>0.6.2</b>
75
75
<ul>
76
76
<li><b>Fixed property source file location and navigation in tool window</b> (Issue #67) - Properties now show correct file name and double-click navigation works</li>
77
+
<li><b>Improved ignored type pattern handling in tool window</b> (Issue #74) - Ignored parameters display as stable and composable skippability is recalculated accordingly</li>
Copy file name to clipboardExpand all lines: compose-stability-analyzer-idea/src/main/kotlin/com/skydoves/compose/stability/idea/toolwindow/StabilityToolWindow.kt
+28-10Lines changed: 28 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -167,17 +167,35 @@ public class StabilityToolWindow(private val project: Project) {
167
167
val settings = com.skydoves.compose.stability.idea.settings.StabilitySettingsState.getInstance()
168
168
val ignoredPatterns = settings.getIgnoredPatternsAsRegex()
169
169
170
-
// Filter composables based on current filter type and ignored patterns
0 commit comments