feat: vendor dialogue manager v3

This commit is contained in:
Rijad Zuzo
2026-08-12 20:10:54 +02:00
parent ea00f60165
commit 758d240438
128 changed files with 16176 additions and 3 deletions
+5 -1
View File
@@ -171,7 +171,11 @@ function Invoke-GdLint {
function Get-ChangedGd {
$changed = @(git diff --name-only HEAD -- '*.gd' 2>$null)
$untracked = @(git ls-files --others --exclude-standard -- '*.gd' 2>$null)
return @((@($changed) + @($untracked)) | Where-Object { $_ -ne '' } | Sort-Object -Unique)
return @(
(@($changed) + @($untracked)) |
Where-Object { $_ -ne '' -and -not $_.Replace('\', '/').StartsWith('addons/') } |
Sort-Object -Unique
)
}
function To-ResPath($p) {