| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2026-02-24 | Add hex_display feature | 魏曹先生 | |
| 2026-02-24 | Move sheet file R/W to v1 module | 魏曹先生 | |
| 2026-02-24 | Move sheet reader and writer to v1 subdirectory | 魏曹先生 | |
| 2026-02-24 | Fix import paths in doc examples | 魏曹先生 | |
| 2026-02-24 | Replace string_proc with just_fmt in _asset crate | 魏曹先生 | |
| 2026-02-24 | Update Cargo.lock | 魏曹先生 | |
| 2026-02-24 | Implement SheetSystem core library | 魏曹先生 | |
| Add IndexSource type for resource addressing and implement mapping system with LocalMapping, Mapping, and MappingBuf types. Create Sheet and SheetData structs for managing sheet data with editing capabilities. Implement binary format serialization/deserialization with reader and writer modules. Add constants for file format layout and comprehensive test suite for roundtrip verification. | |||
| 2026-02-24 | Add deprecated feature and migrate string_proc to just_fmt | 魏曹先生 | |
| - Add `deprecated` feature flag to Cargo.toml - Gate `string_proc` module behind both `deprecated` and `string_proc` features - Replace internal `string_proc` dependency with `just_fmt` crate in constants macros - Mark all `string_proc` modules as deprecated with migration instructions - Remove `string_proc` dependency from sheet system | |||
| 2026-02-24 | Add hex_display utility crate | 魏曹先生 | |
| 2026-02-12 | Add sheet system with mapping macros and modules | 魏曹先生 | |
| 2026-02-12 | Add PathFormatConfig for customizable path formatting | 魏曹先生 | |
| 2026-02-12 | Update crypto dependencies and refactor challenge generation | 魏曹先生 | |
| 2026-02-11 | Add sheet system and reorganize workspace | 魏曹先生 | |
| - Add new "sheet" crate to workspace - Rename "systems/asset" to "systems/_asset" - Reorder workspace members and dependencies for clarity - Update constants with new paths for auth and rules - Add conditional compilation for system module | |||
| 2026-02-08 | Remove duplicate file name conversion in path validation | 魏曹先生 | |
| 2026-02-07 | Rename asset crate to asset_system | 魏曹先生 | |
| 2026-02-07 | Add asset system with file locking and atomic writes | 魏曹先生 | |
| 2026-02-06 | Add FFI support for constants with C-compatible functions | 魏曹先生 | |
| 2026-02-06 | Add constants system with path generation macros | 魏曹先生 | |
| 2026-02-05 | Add documentation and examples to string processing utilities | 魏曹先生 | |
| 2026-02-05 | Remove examples and legacy code, update .gitignore | 魏曹先生 | |
| - Delete examples directory and its example action system - Rename actions/ to legacy_actions/ and data/ to legacy_data/ - Update Cargo.toml license file reference - Move setup scripts to scripts/dev/ directory - Add todo.txt patterns to .gitignore | |||
| 2026-01-24 | Remove auto-generated docs.rs file from version control | 魏曹先生 | |
| 2026-01-24 | Add Serialize derive to AnalyzeResultPure | 魏曹先生 | |
| 2026-01-24 | Move mapping methods from LocalSheet to LocalSheetData | 魏曹先生 | |
| The add_mapping, move_mapping, and remove_mapping methods now directly operate on LocalSheetData fields and maintain the vfs HashMap. The LocalSheet wrapper methods delegate to LocalSheetData. This centralizes mapping logic and ensures vfs is updated when mappings change. | |||
| 2026-01-23 | Update project license to dual MIT/Apache 2.0 | 魏曹先生 | |
| The project now offers a choice between the MIT License and the Apache License 2.0. Updated both the English and Chinese README files to reflect this change and point to the correct license files. | |||
| 2026-01-23 | Add Apache 2.0 license and update MIT license | 魏曹先生 | |
| - Add LICENSE-APACHE-2.0 file - Rename LICENSE-MIT.md to LICENSE-MIT - Update copyright year and holder in MIT license | |||
| 2026-01-23 | Add local actions modules and ProcessActionError enum | 魏曹先生 | |
| - Add local_actions module with account_manage and current_sheet submodules - Add ProcessActionError enum with authorization and registration variants - Add missing import for MemberId in error module | |||
| 2026-01-23 | Add pure analysis result type and conversion | 魏曹先生 | |
| Introduce AnalyzeResultPure struct to hold owned data, separating it from the borrowed lifetime in AnalyzeResult. Provide From conversion to enable easy transformation between the two types. | |||
| 2026-01-23 | Add `new` function to LocalSheet | 魏曹先生 | |
| 2026-01-12 | Rename track file action module from track to track_file | 魏曹先生 | |
| 2026-01-12 | Merge remote-tracking branch 'base/dev' into dev | 魏曹先生 | |
| 2026-01-12 | Rename track.rs to track_file.rs | 魏曹先生 | |
| 2026-01-12 | Rename track.rs to track_file.rs | 魏曹先生 | |
| 2026-01-12 | Rename modules for better clarity and organization | 魏曹先生 | |
| 2026-01-12 | Rename and reorganize remote actions modules | 魏曹先生 | |
| 2026-01-12 | Remove GitHub Actions workflow for Rust CI | 魏曹先生 | |
| 2026-01-12 | Move duplicate constants to constants.rs | 魏曹先生 | |
| 2026-01-12 | Reorganize crate structure and move documentation files | 魏曹先生 | |
| 2026-01-10 | Update README with warning sectionHEADDesktop_0.1.0_Basemain | 魏曹先生 | |
| 2026-01-10 | Update README with new branding and detailed documentation | 魏曹先生 | |
| 2026-01-10 | Hide .cargo, .github and .temp directories before build | 魏曹先生 | |
| 2026-01-10 | Fix typo in field names from "modifiy" to "modify" | 魏曹先生 | |
| 2026-01-08 | Fix typo in module name from "dada_sort" to "data_sort" | 魏曹先生 | |
| The module was accidentally named "dada_sort" instead of "data_sort". :) | |||
| 2026-01-08 | Use different config directory name on non-Linux systems | 魏曹先生 | |
| 2026-01-07 | Extract holder assignment for reuse in sheet creation | 魏曹先生 | |
| 2026-01-05 | Add RejectAll mode for share merging and fix share ID trimming | 魏曹先生 | |
| - Add ShareMergeMode::RejectAll variant to reject all incoming shares - Trim server suffix from share IDs when updating local sheet info - Sign vault as modified after successful share mapping merge - Fix get_current_sheet_name call to use correct parameter value | |||
| 2026-01-04 | Remove CONTRIBUTING files as they are outdated | 魏曹先生 | |
| 2026-01-04 | Add file_histories method to LatestFileData | 魏曹先生 | |
| 2026-01-03 | Add git branch and commit to compile info | 魏曹先生 | |
| Include build_branch and build_commit fields in CoreCompileInfo struct. The build script now extracts current git branch and commit hash, falling back to "unknown" if git commands fail. | |||
| 2026-01-03 | Change default config format from JSON to Bincode | 魏曹先生 | |
| Update file extensions for sheet, share, member, and virtual file metadata to use new custom extensions (.st, .sre, .json, .vf) instead of .bcfg. Also update client-side file extensions for latest info and local sheets. | |||
| 2026-01-03 | Include file histories in latest info updates | 魏曹先生 | |
