| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-10-30 | Merge pull request #32 from JustEnoughVCS/docs | 魏曹先生 | |
| Docs | |||
| 2025-10-30 | Fix markdown indentation in README files | 魏曹先生 | |
| 2025-10-30 | Removed `FRAMEWORK_CANVAS` | 魏曹先生 | |
| 2025-10-30 | Merge pull request #30 from JustEnoughVCS/docs | 魏曹先生 | |
| Enhance README with branding and visual elements | |||
| 2025-10-30 | Merge pull request #31 from JustEnoughVCS/jvcs_dev_actions | 魏曹先生 | |
| Jvcs dev actions | |||
| 2025-10-30 | Enhance README with branding and visual elements | 魏曹先生 | |
| - Add header images and badges for better visual presentation - Restructure both English and Chinese READMEs with consistent formatting - Include new image assets for project branding - Add table of contents sections for better navigation - Update warning messages to be more informative | |||
| 2025-10-30 | Add LatestInfo struct for client data persistence | 魏曹先生 | |
| 2025-10-30 | Add update_to_latest_info action | 魏曹先生 | |
| This action synchronizes the latest vault information including sheets, reference sheet content, and member data between local and remote instances. | |||
| 2025-10-30 | Change auth_member to return MemberId on success | 魏曹先生 | |
| The authentication function now returns the authenticated member's ID instead of just () when successful. This provides callers with access to the authenticated member's identity for subsequent operations. | |||
| 2025-10-30 | Return key ID along with challenge verification result | 魏曹先生 | |
| - Update challenge method to return (bool, String) tuple - Include key ID in both success and failure cases - Update tests to verify key ID matches expected value - Maintain same verification logic but provide additional context | |||
| 2025-10-29 | Merge pull request #29 from JustEnoughVCS/jvcs_dev_actions | 魏曹先生 | |
| Jvcs dev actions | |||
| 2025-10-29 | Apply clippy suggestions | 魏曹先生 | |
| - Use dereferenced UUID instead of cloning - Simplify error message formatting | |||
| 2025-10-29 | Improve vault lock error message and formatting | 魏曹先生 | |
| - Use clearer error message when vault is already locked - Fix code formatting for consistency - Remove unnecessary line breaks in error formatting | |||
| 2025-10-29 | Make config fields thread-safe with Arc<Mutex> | 魏曹先生 | |
| - Change LocalWorkspace config to Arc<Mutex<LocalConfig>> - Change Vault config to Arc<VaultConfig> - Add config accessor methods for both structs - Update initialization methods to wrap config in Arc/Mutex | |||
| 2025-10-29 | Add LocalWorkspace and UserDirectory to client ActionContext | 魏曹先生 | |
| Initialize and insert Arc-wrapped LocalWorkspace and UserDirectory instances into the ActionContext for client environment actions. This provides workspace and user directory data to actions running in client mode. The LocalWorkspace is initialized from the current directory's local config, while UserDirectory uses the current document directory. Both are wrapped in Arc for efficient sharing across the action execution. | |||
| 2025-10-29 | feat: Add port override capability to server entry | 魏曹先生 | |
| The server_entry function now accepts an optional port_override parameter that allows specifying a custom port instead of using the configured port from vault configuration. When port_override is greater than 0, it takes precedence over the configured port. | |||
| 2025-10-29 | Update actions.rs | 魏曹先生 | |
| 2025-10-29 | feat: Completed `set_upstream_vault_action` | 魏曹先生 | |
| 2025-10-29 | Add new error types and sort variants alphabetically | 魏曹先生 | |
| - Add Authentication, Locked, NoResult, and NotFound error variants - Remove Crypto error variant - Reorder all variants in A-Z order for better maintainability | |||
| 2025-10-29 | update: Action.rs 1. Rename `insert` to `with_data` and `insert_arc` to | 魏曹先生 | |
| `with_arc_data` 2. Add new `insert_data` and `insert_arc_data` methods that take &mut self | |||
| 2025-10-27 | Merge pull request #28 from JustEnoughVCS/jvcs_dev_actions | 魏曹先生 | |
| Fix error handling in process_connection | |||
| 2025-10-27 | Fix error handling in process_connection | 魏曹先生 | |
| 2025-10-27 | Merge pull request #27 from JustEnoughVCS/jvcs_dev_actions | 魏曹先生 | |
| Update dependencies to latest versions | |||
| 2025-10-27 | Update dependencies to latest versions | 魏曹先生 | |
| 2025-10-27 | Merge pull request #26 from JustEnoughVCS/jvcs_dev | 魏曹先生 | |
| Jvcs dev | |||
| 2025-10-27 | Add service module to vault | 魏曹先生 | |
| 2025-10-27 | Add lockfile constant for server service | 魏曹先生 | |
| 2025-10-27 | update: Remove unused inline comments from constants | 魏曹先生 | |
| 2025-10-27 | update: Add connection logs to show active count | 魏曹先生 | |
| Include current connection count in connection open/close log messages for better monitoring of server load | |||
| 2025-10-27 | update: Add server lock behavior to vault lifecycle | 魏曹先生 | |
| Lock the vault before starting the server and unlock it during shutdown. | |||
| 2025-10-27 | update: Remove `hello_world_action` | 魏曹先生 | |
| 2025-10-27 | update: Add error type - Locked | 魏曹先生 | |
| 2025-10-27 | fixed: Incorrect condition setting for determining whether to send | 魏曹先生 | |
| parameters during `on_proc_begin` | |||
| 2025-10-27 | update: ActionContext 1. Rename `local` to `proc_on_local` 2. Add | 魏曹先生 | |
| `is_remote_action` | |||
| 2025-10-27 | "fix: Fix indentation issues | 魏曹先生 | |
| 2025-10-27 | fix: Make the ActionContext passed to on_proc_begin mutable | 魏曹先生 | |
| 2025-10-27 | feat: Add Server Lock | 魏曹先生 | |
| 2025-10-27 | Add some debug logs | 魏曹先生 | |
| 2025-10-27 | Ignore directory | 魏曹先生 | |
| 2025-10-24 | Fix some spelling issues. | 魏曹先生 | |
| 2025-10-24 | Re-export subcrate `action_system` to `just_enough_vcs` | 魏曹先生 | |
| 2025-10-19 | Merge pull request #25 from JustEnoughVCS/docs | 魏曹先生 | |
| Update README.md | |||
| 2025-10-19 | Update README.md | 魏曹先生 | |
| 2025-10-19 | Merge pull request #24 from JustEnoughVCS/docs | 魏曹先生 | |
| Docs | |||
| 2025-10-19 | Update README.md | 魏曹先生 | |
| 2025-10-19 | Update CONTRIBUTING.md | 魏曹先生 | |
| 2025-10-19 | Merge pull request #23 from JustEnoughVCS/docs | 魏曹先生 | |
| Docs | |||
| 2025-10-19 | Add CONTRIBUTING.md | 魏曹先生 | |
| 2025-10-19 | Fine-tuning content | 魏曹先生 | |
| 2025-10-18 | Merge pull request #22 from JustEnoughVCS/jvcs_dev | 魏曹先生 | |
| Update `config.rs` | |||
