aboutsummaryrefslogtreecommitdiff
path: root/src/bin/jv.rs
Commit message (Collapse)AuthorAgeFilesLines
* Add JSON output support for share list and see commands魏曹先生2026-01-091-2/+37
|
* Apply changes from core library commit cd49e78魏曹先生2026-01-081-1/+1
|
* Remove --force flag from jv init command魏曹先生2026-01-071-6/+2
| | | | | | The --force flag is no longer needed as the command now always checks if the directory is empty. The corresponding help text in locale files has also been removed.
* Add JSON output support for multiple commands魏曹先生2026-01-071-112/+578
| | | | | | | | | | - Add serde and serde_json dependencies - Add JSON output modules for accounts, align, analyzer, here, info, and sheets - Add --json and --pretty flags to sheet list, sheet align, here, status, info, and account list commands - Implement JSON serialization for here command output - Update command argument structs to include JSON output options
* Fix Windows path display in jv info command魏曹先生2026-01-071-2/+4
|
* Move resources to resources directory魏曹先生2026-01-071-1/+1
|
* Remove unused imports from clap in CLI binaries魏曹先生2026-01-071-1/+1
|
* Add share command with subcommands and completion supportMVP魏曹先生2026-01-051-22/+455
| | | | | | | The share command now supports `list`, `see`, and merging operations with conflict resolution modes (--safe, --skip, --overwrite, --reject). Updated help documentation in both English and Chinese locales, and added Bash and PowerShell completion scripts.
* Improve error messages for configuration and file access failures魏曹先生2026-01-041-58/+218
|
* Completed `jv info` command魏曹先生2026-01-041-40/+169
|
* Add Zsh plugin support with prompt integration魏曹先生2026-01-031-8/+17
|
* Add Git branch and commit info to compile info魏曹先生2026-01-031-4/+160
| | | | | | | - Include branch and commit hash in compile info display - Add build script functions to extract git metadata - Update export scripts to force rebuilds when needed - Extend share command with placeholder implementations
* Update sheet list display and share command help text魏曹先生2026-01-031-7/+25
| | | | | | | | | - Change "YOURS" to "VISIBLE TO YOU" and "您的表" to "您可见的表" - Add reference sheet suffix indicator for reference sheets - Update Chinese share command help text to clarify mapping operations - Rename sheet list variables for clarity (my_sheets → visible_sheets, other_sheets → invisible_sheets) - Show status automatically after switching sheets
* Remove restriction on creating reference sheet魏曹先生2026-01-031-10/+9
| | | | | | | The check preventing creation of a sheet named "reference" has been removed, allowing users to create sheets with that name. Additionally, error handling for edit operations in reference sheets has been improved with a clearer error message.
* Add break option to align moved command魏曹先生2026-01-031-5/+33
|
* Add host mode support and reference sheet restrictions魏曹先生2026-01-031-21/+79
| | | | | | | | - Add `jv account as host/<ACCOUNT_NAME>` command for host mode - Display host mode status in `jv here` and `jv status` - Add reference sheet read-only mode hints and restrictions - Show host mode capabilities and warnings in status output - Prevent structural changes in reference sheets for non-hosts
* Add info command to display file details魏曹先生2026-01-031-0/+21
|
* ix update editor to use latest version instead of mapped version魏曹先生2025-12-301-2/+19
| | | | | | | The update editor was incorrectly using the version from the cached sheet mapping, which could be outdated. Now it fetches the latest version from the latest file data to ensure correct version calculations.
* Replace import/export commands with share command魏曹先生2025-12-251-184/+180
|
* Add core version info to CLI version output魏曹先生2025-12-241-3/+16
|
* Add workspace root directory validation for sheet commandsWeicao-CatilGrass2025-12-171-14/+42
| | | | | | | - Add new error message for non-root directory execution - Validate current directory in sheet use/exit commands - Add directory correction helper for other commands - Return Result from jv_sheet_exit to handle validation failures
* Add parent directory creation before moving aligned sheet魏曹先生2025-12-171-0/+15
|
* Add sheet and time context to no changes status message魏曹先生2025-12-171-1/+10
| | | | | | | The "no changes" status message now includes the sheet name and timestamp when displaying that the workspace is synchronized. This provides better context about which sheet and what time the status is based on.
* Fix Windows path conversion issue in `jv move` commandWeicao-CatilGrass2025-12-161-2/+6
| | | | | Use `format_path_str` to properly handle Windows path separators when generating move operation parameters for single file moves.
* Improve alignment command suggestions and error messagesWeicao-CatilGrass2025-12-161-1/+32
|
* Skip missing files in sheet align operationWeicao-CatilGrass2025-12-161-0/+5
| | | | | When aligning sheet files, skip any source files that don't exist instead of failing the entire operation.
* Replace tokio::time::Instant with std::time::SystemTimeWeicao-CatilGrass2025-12-161-10/+15
| | | | | - Use SystemTime::now() for time calculations - Add unwrap_or_default() for duration calculations
* Implement `jv align` command with move, lost, and erased operations魏曹先生2025-12-151-50/+310
|
* Revert lost items display in `jv status` to previous (b8ac698) style魏曹先生2025-12-151-12/+8
|
* Move file status types to workspace_analyzer module魏曹先生2025-12-151-1/+1
|
* Update help documentation and move command functionality魏曹先生2025-12-151-77/+394
| | | | | | | | | | | | | | - Redesign move command to modify upstream mappings with support for erase operations - Add erased items support to align command and status display - Update help text to reflect new move mapping semantics and add erased item instructions - Add auto-update timeout configuration via JV_OUTDATED_MINUTES environment variable - Improve status display with separate structural and content change modes - Add force flag to hold/throw commands to skip pre-checks - Update completion scripts to include erased items in align command
* Skip empty descriptions in update editor魏曹先生2025-12-081-1/+4
|
* Add --overwrite flag to track command and show skipped files魏曹先生2025-12-081-0/+24
| | | | | | | The flag allows users to confirm overwriting locally modified files during sync operations. When files are skipped due to local modifications, a warning message now displays the skipped files and provides the command to overwrite them.
* Add description column to `jv here --desc` output魏曹先生2025-12-041-31/+107
|
* Change `jv track`, `hold`, `throw` to accept glob patterns魏曹先生2025-12-031-100/+116
| | | | | | | The commands now accept a file pattern instead of a list of paths. The internal `glob` function is used to expand the pattern relative to the local workspace directory. This allows for more flexible file selection using wildcards.
* Refactor debug glob into reusable function魏曹先生2025-12-021-17/+18
|
* Remove local file existence check from change edit right魏曹先生2025-12-021-19/+0
| | | | | | The check for whether files exist locally before allowing edit right changes has been removed. This allows users to change edit rights for files that may not yet exist locally but are tracked in the sheet.
* Add debug glob command for testing file matching魏曹先生2025-12-021-2/+180
| | | | | | The new `jv _glob` command allows testing glob patterns against both local files and sheet contents. It helps verify how the globber matches files in different contexts.
* Replace HashMap/HashSet with BTreeMap/BTreeSet for deterministic output魏曹先生2025-12-011-5/+8
|
* Add remote file display to jv here command魏曹先生2025-12-011-13/+68
|
* Add remote mapping display for `jv here`魏曹先生2025-12-011-3/+69
|
* add: comments of Completion Helpers魏曹先生2025-12-011-0/+5
|
* Update docs command to use config directory instead of doc directory魏曹先生2025-12-011-2/+2
|
* Add green color to holder and editing status indicators魏曹先生2025-12-011-0/+2
|
* Add completion helpers for workspace info魏曹先生2025-12-011-1/+36
| | | | | | - Rename HistoryIpAddress to GetHistoryIpAddress for consistency - Add commands to get workspace directory, current account, upstream address, and current sheet
* Update jv.rs魏曹先生2025-12-011-15/+10
|
* Refactor: Extract validation failure handling to reduce code duplication魏曹先生2025-11-281-155/+150
| | | | | | | - Created helper function to centralize validation failure logic - Moved error message generation outside helper for proper macro expansion - Maintained same functionality while improving code maintainability - Reduced repetitive if-else blocks for detail/skip-failed scenarios
* Ensure correct current directory before jv_update and jv_throw魏曹先生2025-11-261-1/+5
| | | | | Execute correct_current_dir at the beginning of jv_hold and jv_throw to guarantee proper context environment for these operations.
* Add yellow color to permission check failure details魏曹先生2025-11-261-1/+1
|
* Preserve working directory during auto update魏曹先生2025-11-261-0/+22
| | | | | | | | The auto update process was changing the current working directory, which could cause issues when the program continues execution. This change saves the current directory before updating and restores it afterward, ensuring the program continues in the correct location.