Skip to content

Commit 8409abf

Browse files
committed
release: v1.0.0-beta3-build1
1 parent 3d7b4b2 commit 8409abf

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.0-beta2-build18
1+
1.0.0-beta3-build1

changelog.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## v1.0.0-beta2-build18
1+
## v1.0.0-beta3-build1
22

33
### 🐛 Bug Fixes
4-
- Fix install hang and double Ctrl+C: remove `|| true` in `install_software`/`install_batch` so exit code and SIGINT propagate correctly; show brew batch install output in real-time so user sees progress
4+
- Fix PS1 Test-DiskSpace/Show-Doctor: fallback dictionary keys `disk_low`/`disk_warning` didn't match JSON keys `disk_space_low`/`disk_space_warning`, causing undefined key access when JSON loading failed

dist/quickstart.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ param(
4242
[switch]$showVersion
4343
)
4444

45-
$VERSION = "1.0.0-beta2-build18"
46-
if ($VERSION -eq "1.0.0-beta2-build18") {
45+
$VERSION = "1.0.0-beta3-build1"
46+
if ($VERSION -eq "1.0.0-beta3-build1") {
4747
$scriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
4848
$versionFile = Join-Path $scriptDir "..\VERSION"
4949
if (Test-Path $versionFile) {
@@ -427,8 +427,8 @@ function Initialize-LanguageStrings {
427427
"report_json_saved" = "JSON report saved to: {0}"
428428
"report_txt_saved" = "TXT report saved to: {0}"
429429
"disk_checking" = "Checking disk space..."
430-
"disk_low" = "Low disk space: {0}GB available, at least {1}GB recommended"
431-
"disk_warning" = "Low disk space, installation may fail"
430+
"disk_space_low" = "Low disk space: {0}GB available, at least {1}GB recommended"
431+
"disk_space_warning" = "Low disk space, installation may fail"
432432
"network_timeout" = "Network connection timed out, please check your network"
433433
"network_error" = "Network error: {0}"
434434
"check_network" = "Suggestion: Check network connection or set proxy"

dist/quickstart.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,8 +304,8 @@ LIST_PROFILES=false
304304
SHOW_PROFILE=""
305305
SKIP_SW=()
306306
ONLY_SW=()
307-
VERSION="1.0.0-beta2-build18"
308-
if [[ "$VERSION" == "1.0.0-beta2-build18" ]]; then
307+
VERSION="1.0.0-beta3-build1"
308+
if [[ "$VERSION" == "1.0.0-beta3-build1" ]]; then
309309
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
310310
if [[ -f "$SCRIPT_DIR/../VERSION" ]]; then
311311
VERSION=$(cat "$SCRIPT_DIR/../VERSION" | tr -d '[:space:]')

src/quickstart.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -427,8 +427,8 @@ function Initialize-LanguageStrings {
427427
"report_json_saved" = "JSON report saved to: {0}"
428428
"report_txt_saved" = "TXT report saved to: {0}"
429429
"disk_checking" = "Checking disk space..."
430-
"disk_low" = "Low disk space: {0}GB available, at least {1}GB recommended"
431-
"disk_warning" = "Low disk space, installation may fail"
430+
"disk_space_low" = "Low disk space: {0}GB available, at least {1}GB recommended"
431+
"disk_space_warning" = "Low disk space, installation may fail"
432432
"network_timeout" = "Network connection timed out, please check your network"
433433
"network_error" = "Network error: {0}"
434434
"check_network" = "Suggestion: Check network connection or set proxy"

0 commit comments

Comments
 (0)