From fdabfb394e5ce26bac3d16065d2c080538524bf3 Mon Sep 17 00:00:00 2001 From: Jheison Martinez Bolivar Date: Thu, 23 Jul 2026 10:47:44 -0500 Subject: [PATCH 1/2] fix: correct repo and binary name in install scripts and release workflow --- scripts/install.ps1 | 12 ++++++------ scripts/install.sh | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/scripts/install.ps1 b/scripts/install.ps1 index 1a19863..2f8a975 100644 --- a/scripts/install.ps1 +++ b/scripts/install.ps1 @@ -1,5 +1,5 @@ -# install.ps1 — download and install demo-stage on Windows -# Usage: irm https://raw.githubusercontent.com/UniverLab/demo-stage/main/scripts/install.ps1 | iex +# install.ps1 — download and install demostage on Windows +# Usage: irm https://raw.githubusercontent.com/UniverLab/demostage/main/scripts/install.ps1 | iex # # Options (set as env vars before running): # $env:VERSION = "0.1.0" # pin a specific version @@ -7,8 +7,8 @@ $ErrorActionPreference = "Stop" -$Repo = "UniverLab/demo-stage" -$Binary = "demo-stage.exe" +$Repo = "UniverLab/demostage" +$Binary = "demo.exe" $Target = "x86_64-pc-windows-msvc" $InstallDir = if ($env:INSTALL_DIR) { $env:INSTALL_DIR } else { "$env:USERPROFILE\.local\bin" } @@ -43,9 +43,9 @@ if ($env:VERSION) { } # --- download --- -$Archive = "demo-stage-$Tag-$Target.zip" +$Archive = "demo-$Tag-$Target.zip" $Url = "https://github.com/$Repo/releases/download/$Tag/$Archive" -$Tmp = Join-Path $env:TEMP "demo-stage-install" +$Tmp = Join-Path $env:TEMP "demostage-install" New-Item -ItemType Directory -Force -Path $Tmp | Out-Null Info "download" $Url diff --git a/scripts/install.sh b/scripts/install.sh index f6ee15b..c2adbee 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -1,10 +1,10 @@ #!/bin/sh -# install.sh — download and install demo-stage from GitHub Releases -# Usage: curl -fsSL https://raw.githubusercontent.com/UniverLab/demo-stage/main/scripts/install.sh | sh +# install.sh — download and install demostage from GitHub Releases +# Usage: curl -fsSL https://raw.githubusercontent.com/UniverLab/demostage/main/scripts/install.sh | sh set -eu -REPO="UniverLab/demo-stage" -BINARY="demo-stage" +REPO="UniverLab/demostage" +BINARY="demo" INSTALL_DIR="${INSTALL_DIR:-$HOME/.local/bin}" info() { printf ' \033[1;34m%s\033[0m %s\n' "$1" "$2"; } From 6b1c79149b5392a3e9b9165ee54acee093e1b9f9 Mon Sep 17 00:00:00 2001 From: Jheison Martinez Bolivar Date: Thu, 23 Jul 2026 16:46:38 -0500 Subject: [PATCH 2/2] chore: bump version to 0.2.3 --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b27a40d..667d684 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -529,7 +529,7 @@ checksum = "ac6b926516df9c60bfa16e107b21086399f8285a44ca9711344b9e553c5146e2" [[package]] name = "demo-stage" -version = "0.2.2" +version = "0.2.3" dependencies = [ "clap", "crossterm 0.28.1", diff --git a/Cargo.toml b/Cargo.toml index d3683fc..9c16957 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "demo-stage" -version = "0.2.2" +version = "0.2.3" edition = "2021" description = "Demos as Code — declarative terminal capture and multi-scene orchestration" license = "MIT"