Skip to content

Commit 99fd242

Browse files
committed
release: v1.0.0-beta4-build3
1 parent a7e8479 commit 99fd242

5 files changed

Lines changed: 11 additions & 7 deletions

File tree

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.0-beta4-build2
1+
1.0.0-beta4-build3

changelog.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## v1.0.0-beta4-build2
1+
## v1.0.0-beta4-build3
22

33
### 🐛 Bug Fixes
4-
- Fix `check_update`/`self_update`/`auto_check_update` jq dependency: add `parse_github_tag` function with jq → python3 → grep/sed fallback; call `ensure_json_parser` in `check_update` and `self_update` before GitHub API call so updates work without jq
4+
- Add missing `LANG_DISK_SPACE_LOW` and `LANG_DISK_SPACE_WARNING` to bash embedded fallback English strings (lines 147-206), fixing empty warning message when .sh/.json files fail to load

dist/quickstart.ps1

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

45-
$VERSION = "1.0.0-beta4-build2"
46-
if ($VERSION -eq "1.0.0-beta4-build2") {
45+
$VERSION = "1.0.0-beta4-build3"
46+
if ($VERSION -eq "1.0.0-beta4-build3") {
4747
$scriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
4848
$versionFile = Join-Path $scriptDir "..\VERSION"
4949
if (Test-Path $versionFile) {

dist/quickstart.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,8 @@ load_language_strings() {
191191
LANG_ASK_CONTINUE="Installation complete. Continue installing other profiles?"
192192
LANG_CONTINUE="Continue"
193193
LANG_EXIT="Exit"
194+
LANG_DISK_SPACE_LOW="Low disk space: %sGB available, at least %sGB recommended"
195+
LANG_DISK_SPACE_WARNING="Low disk space, installation may fail"
194196
LANG_TITLE_SELECT_PROFILE="Select Profile"
195197
LANG_TITLE_SELECT_SOFTWARE="Select Software"
196198
LANG_TITLE_INSTALLING="Installing"
@@ -304,8 +306,8 @@ LIST_PROFILES=false
304306
SHOW_PROFILE=""
305307
SKIP_SW=()
306308
ONLY_SW=()
307-
VERSION="1.0.0-beta4-build2"
308-
if [[ "$VERSION" == "1.0.0-beta4-build2" ]]; then
309+
VERSION="1.0.0-beta4-build3"
310+
if [[ "$VERSION" == "1.0.0-beta4-build3" ]]; then
309311
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
310312
if [[ -f "$SCRIPT_DIR/../VERSION" ]]; then
311313
VERSION=$(cat "$SCRIPT_DIR/../VERSION" | tr -d '[:space:]')

src/quickstart.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,8 @@ load_language_strings() {
191191
LANG_ASK_CONTINUE="Installation complete. Continue installing other profiles?"
192192
LANG_CONTINUE="Continue"
193193
LANG_EXIT="Exit"
194+
LANG_DISK_SPACE_LOW="Low disk space: %sGB available, at least %sGB recommended"
195+
LANG_DISK_SPACE_WARNING="Low disk space, installation may fail"
194196
LANG_TITLE_SELECT_PROFILE="Select Profile"
195197
LANG_TITLE_SELECT_SOFTWARE="Select Software"
196198
LANG_TITLE_INSTALLING="Installing"

0 commit comments

Comments
 (0)