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: tools/gradle-plugin/src/main/kotlin/io/github/composegears/valkyrie/gradle/internal/task/GenerateImageVectorsTask.kt
Copy file name to clipboardExpand all lines: tools/idea-plugin/src/main/kotlin/io/github/composegears/valkyrie/ui/screen/mode/iconpack/conversion/IconPackConversionViewModel.kt
+55-16Lines changed: 55 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -148,7 +148,7 @@ class IconPackConversionViewModel(
Copy file name to clipboardExpand all lines: tools/idea-plugin/src/main/kotlin/io/github/composegears/valkyrie/ui/screen/mode/iconpack/conversion/ui/util/IconValidation.kt
+5-6Lines changed: 5 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -49,8 +49,8 @@ fun List<BatchIcon>.checkImportIssues(useFlatPackage: Boolean = false): Map<Vali
49
49
val packIdentifier =when (val pack = it.iconPack) {
50
50
isIconPack.Single-> pack.iconPackName
51
51
isIconPack.Nested->when {
52
-
useFlatPackage -> pack.iconPackName // Flat package: check across all nested packs
53
-
else->"${pack.iconPackName}.${pack.currentNestedPack}"// Separate folders per nested pack
52
+
useFlatPackage -> pack.iconPackName // Flat package: check across all nested packs
53
+
else->"${pack.iconPackName}.${pack.currentNestedPack}"// Separate folders per nested pack
54
54
}
55
55
}
56
56
packIdentifier to it.iconName.name
@@ -72,17 +72,16 @@ fun List<BatchIcon>.checkImportIssues(useFlatPackage: Boolean = false): Map<Vali
72
72
val packIdentifier =when (val pack = it.iconPack) {
73
73
isIconPack.Single-> pack.iconPackName
74
74
isIconPack.Nested->when {
75
-
useFlatPackage -> pack.iconPackName // Flat package: check across all nested packs
76
-
else->"${pack.iconPackName}.${pack.currentNestedPack}"// Separate folders per nested pack
75
+
useFlatPackage -> pack.iconPackName // Flat package: check across all nested packs
76
+
else->"${pack.iconPackName}.${pack.currentNestedPack}"// Separate folders per nested pack
77
77
}
78
78
}
79
79
packIdentifier to it.iconName.name.lowercase()
80
80
}
81
81
.filter {
82
82
// Filter groups where there are multiple icons with the same lowercase name
0 commit comments