aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* feat: Sort uppercase tool names before lowercase in listingsHEADmaster魏曹先生2026-07-112-6/+24
| | | | Add version header 0.1.1 to both run.ps1 and run.sh
* fix(run): force $sorted to array to avoid char indexing on single tool魏曹先生2026-07-021-2/+2
| | | | | | | | | | | When only one tool exists, the sorted pipeline returns a single string instead of an array. Indexing it (e.g., $sorted[0]) then returns a character rather than the full tool name, causing errors like "Method invocation failed because [System.Char] does not contain a method named 'ToLower'". Wrapping the pipeline in @() ensures $sorted is always an array, fixing both the list display and number-based selection.
* feat: add ASCII banner魏曹先生2026-07-022-1/+21
|
* style: redesign landing page with retro terminal theme魏曹先生2026-07-021-240/+152
|
* chore: redirect stdin to /dev/tty for user prompts魏曹先生2026-07-021-2/+2
|
* feat: prompt to remove example scripts after install魏曹先生2026-07-022-0/+24
|
* fix(install): copy only run files instead of entire repo魏曹先生2026-07-025-50/+29
|
* feat: add project landing page with install and usage docs魏曹先生2026-07-024-0/+302
|
* refactor(run-scripts): reorder languages and prioritize .sh/.ps1 in魏曹先生2026-07-023-140/+156
| | | | listing
* fix: propagate exit code from `dotnet run` in run.ps1魏曹先生2026-07-021-0/+2
|
* feat: add fuzzy target name matching and display name formatting魏曹先生2026-07-022-6/+34
| | | | | | Normalize user input by removing separators (spaces, underscores, dots, hyphens) and ignore case when looking up targets. Display names in the list menu with spaces instead of underscores or hyphens for readability.
* chore: mark run.sh as executable魏曹先生2026-07-021-0/+0
|
* feat: add sample scripts for Go, Nim, Perl, Ruby, and Zig魏曹先生2026-07-025-0/+100
|
* feat: add support for Ruby, Perl, Go, Zig, and Nim scripts魏曹先生2026-07-022-0/+105
|
* feat: add support for running binary executables魏曹先生2026-07-022-0/+24
| | | | | Add detection and execution of standalone binary files (without extensions in shell, with .exe in PowerShell) to the tool runner
* docs: add manual installation instructions to README魏曹先生2026-07-021-0/+24
|
* fix: correct misspelled PowerShell script filename魏曹先生2026-07-021-0/+0
|
* chore(ps1): replace dot with parenthesis in menu formatting魏曹先生2026-07-021-2/+1
|
* docs(readme): add usage examples for run.sh魏曹先生2026-07-021-0/+9
|
* chore(run): add comments to .gitignore entries魏曹先生2026-07-021-1/+3
|
* docs(readme): add title and stylize tagline魏曹先生2026-07-021-1/+3
|
* docs(README): add chmod instruction after curl install魏曹先生2026-07-021-0/+1
|
* fix(install): make run.sh executable after installation魏曹先生2026-07-021-0/+1
|
* feat: add cross-platform script runner with run.sh and run.ps1魏曹先生2026-07-0212-0/+452