Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.3.2] - 2026-06-03

### Fixed

- **Restore button stayed disabled after selecting a snapshot.** On the Restore
tab, "Restore selected snapshot" is gated on a backup being selected, but
`SelectedBackup` raised no change notification and `AsyncRelayCommand` does not
hook `CommandManager.RequerySuggested`, so its `CanExecute` was evaluated once
(nothing selected -> disabled) and never re-queried when a row was picked - the
button was therefore permanently greyed out. `SelectedBackup` is now a notifying
property that raises `RestoreCommand` `CanExecuteChanged`, matching the existing
`SelectedTarget` fix. "Restore from file..." was unaffected and was the
workaround on 0.3.1.

## [0.3.1] - 2026-06-01

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions scripts/build-exe.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
Debug or Release (default Release).

.EXAMPLE
pwsh .\build-exe.ps1 -Version 0.3.1
pwsh .\build-exe.ps1 -Version 0.3.2
#>

param(
[string] $Version = "0.3.1",
[string] $Version = "0.3.2",
[string] $Configuration = "Release"
)

Expand Down
2 changes: 1 addition & 1 deletion src/ClaudePortable.Installer/build-msi.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# pwsh .\build-msi.ps1 [-Version 0.1.0] [-Configuration Release]

param(
[string] $Version = "0.3.1",
[string] $Version = "0.3.2",
[string] $Configuration = "Release"
)

Expand Down
Loading