mirror of
https://github.com/NexusOne23/noid-privacy.git
synced 2026-03-01 14:40:27 +01:00
release: v2.2.3 - Fix Restore Mode module selection crash
CHANGELOG:
- Fixed: Restore Mode manual module selection crash (Critical)
- Root cause: .Split(',', ';', ' ') triggered wrong .NET overload
- Fix: Replaced with native PowerShell -split '[,; ]' operator
- Reported by: KatCat2
VERSION BUMP: 2.2.2 -> 2.2.3
- Updated 48 files with new version number
- CHANGELOG.md: Added v2.2.3 release notes
- README.md: Updated badge, module table, project status
This commit is contained in:
parent
8435dbe97b
commit
da9f937ee8
48 changed files with 628 additions and 589 deletions
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
.NOTES
|
||||
Author: NexusOne23
|
||||
Version: 2.2.2
|
||||
Version: 2.2.3
|
||||
|
||||
Usage in modules:
|
||||
1. Call Test-NonInteractiveMode to check if prompts should be skipped
|
||||
|
|
@ -194,7 +194,8 @@ function Write-NonInteractiveDecision {
|
|||
|
||||
$message = if ($null -ne $Value) {
|
||||
"[GUI] $Decision : $Value"
|
||||
} else {
|
||||
}
|
||||
else {
|
||||
"[GUI] $Decision"
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue