summaryrefslogtreecommitdiff
path: root/scripts
AgeCommit message (Collapse)Author
2025-12-03Replace shell glob expansion with built-in glob in entry scripts魏曹先生
- Use `noglob` for Zsh and `set -f` for Bash to disable shell globbing - Wrap PowerShell aliases in functions to prevent glob expansion - Maintain existing alias functionality while fixing globbing issues
2025-11-23Add auto update feature via JV_AUTO_UPDATE env var魏曹先生
When enabled, automatically runs `jv update` if vault content has been modified by local operations.
2025-11-23Fix CLI installation path after cargo export rename魏曹先生
2025-11-23Reorganize PowerShell completion scripts魏曹先生
- Move completion_jv.ps1 to completions/powershell directory - Add new completion_jvv.ps1 for jvv command - Update header comment format for consistency
2025-11-23Move bash completion scripts to dedicated directory魏曹先生
2025-11-23Add PowerShell CLI support script for jv tool魏曹先生
2025-11-23Rename CLI script and update completion paths魏曹先生
- Rename cli.sh to jv_cli.sh for better naming consistency - Update completion script paths to point to new completions/bash directory - Change 'jj' alias to 'jvh' for clearer naming
2025-11-23Rename PowerShell completion script to match naming convention魏曹先生
2025-11-22add: Completion script for WindowsWeicao-CatilGrass
2025-11-22Update sheet align command structure and add completion魏曹先生
2025-11-22Add account key generation and public key export features魏曹先生
- Add `--keygen` flag to `account add` for automatic ED25519 key generation - Add `account genpub` command to export public keys - Update help documentation in both English and Chinese - Extend shell completion for new commands - Add error handling for OpenSSL operations
2025-11-20feat: add jump and info commands魏曹先生
- Add jump command for file version switching - Add info command for individual file status - Update shell completion for new commands
2025-11-17Make shell completion scripts executable魏曹先生
2025-11-17Add completion script headers :)魏曹先生
2025-11-17Add login command combining account setup and vault connection魏曹先生
The new `jv login` command streamlines the process of setting up a workspace by combining account selection, vault connection, and initial sync into a single operation. - Add completion support for login command - Update help documentation in both English and Chinese - Add confirmation prompt for login operation
2025-11-17Rename installation script to inst.sh魏曹先生
2025-11-17update: shell scripts魏曹先生
Update CLI and completion scripts
2025-11-10Fix JV_LANG export syntax in CLI script魏曹先生
2025-11-10Improve installation script to handle existing repositories魏曹先生
The script now checks if repositories already exist and pulls latest changes instead of attempting to clone again. This prevents errors when re-running the installation script and ensures users always get the latest code.
2025-11-10Add installation script for JustEnoughVCS魏曹先生
This script automates the setup process by: - Checking for required tools (cargo and git) - Cloning the necessary repositories - Building the CLI with cargo - Configuring the user's shell to include the CLI in PATH The script provides interactive shell selection for Zsh, Bash, and Fish.
2025-11-10Add JV_LANG environment variable support and improve CLI structure魏曹先生
2025-11-06feat: add shell integration and completion scripts魏曹先生
- Add cli.sh for aliases and completion loading - Create completion_jv.sh for jv command bash completion - Create completion_jvv.sh for jvv command bash completion - Support dynamic completion using --raw output from commands