rufio 0.60.0 → 0.62.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a880862d559dd867d819889c3458abac662ae2a262a93d09c552aec45f850f06
4
- data.tar.gz: 1ede13dbac6ef6b6d0af6f0c0d10254a0a6cfa79869b6eafa8636bbd31f2e773
3
+ metadata.gz: 2db20061e61dc6e74d9a106ca35f66e2f20f0d3dfd5394664823a03ddc8b029d
4
+ data.tar.gz: caaf0e05574780ca8dc4c86afae1c617e584ae8b56f3654e1744541127172a66
5
5
  SHA512:
6
- metadata.gz: 198ef8a599e51a0bf51e9935e06329a81e4d68fa1fd065665e6f26d44013a3dc9e4419b385296f29dbfb92a44ab1e744d6a72d1352c9c2fd270f8c9f08640f95
7
- data.tar.gz: 062a514877116a7ee3c30211628a68740911ee98844693e9caea4571da783622c59fc4a8a7fe26ee512fad62f3b296833be74d815aab4d5ff9635cccac5261f3
6
+ metadata.gz: 21484e20e462d20f1cd4a547e3516bd80ad986fe810724c0c2f9300504ebc3c04ac512fdee457a7f839c9f8d04bf375df337896399fdfff047cd48faa7eaf6f2
7
+ data.tar.gz: 7845c80320bcd88d0540ee2aa38603ad1f9b45ee88f533586d9a5e7fe53b51bff919ff9359fb725873fc430938c49b143498ae7a55fb4f9dd832a99c2a93febe
data/CHANGELOG.md CHANGED
@@ -7,6 +7,62 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.62.0] - 2026-01-31
11
+
12
+ ### Changed
13
+ - **Configuration File Structure Overhaul**: Separated configuration into multiple files
14
+ - `~/.config/rufio/config.rb` - DSL-style main configuration (colors, keybinds, language)
15
+ - `~/.config/rufio/script_paths.yml` - Script directories (list format)
16
+ - `~/.config/rufio/bookmarks.yml` - Bookmarks (list format)
17
+ - Old `config.yml` format still supported for backward compatibility
18
+ - **Config Class Refactoring**: Centralized YAML configuration management
19
+ - All YAML read/write operations now go through `Config` class
20
+ - Added `load_script_paths`, `save_script_paths`, `add_script_path`, `remove_script_path`
21
+ - Added `load_bookmarks_from_yml`, `save_bookmarks_to_yml`, `add_bookmark`, `remove_bookmark`
22
+ - Added `load_config_rb` for DSL configuration loading
23
+ - Added `migrate_from_config_yml` for migration from old format
24
+
25
+ ### Fixed
26
+ - **Bookmark Menu**: Fixed "View bookmarks" option (key `4`) not working in bookmark menu (`B` key)
27
+
28
+ ### Deprecated
29
+ - **bookmark.json**: JSON bookmark format is deprecated, use `bookmarks.yml` instead
30
+ - **config.yml**: Single config file format is deprecated, use separate files instead
31
+
32
+ ### Technical Details
33
+ - **New Constants in Config**:
34
+ - `CONFIG_DIR`, `CONFIG_RB_PATH`, `SCRIPT_PATHS_YML`, `BOOKMARKS_YML`
35
+ - **Backward Compatibility**:
36
+ - `YamlBookmarkStorage` supports both new (list format) and old (section format)
37
+ - `ScriptPathManager` supports both `script_paths.yml` and legacy `config.yml`
38
+ - **New Example Files**: Added `examples/config.rb`, `examples/script_paths.yml`, `examples/bookmarks.yml`
39
+
40
+ ## [0.61.0] - 2026-01-25
41
+
42
+ ### Changed
43
+ - **🎯 Rebranding**: Redefined rufio as "Runtime Unified Flow I/O Operator"
44
+ - Emphasized the concept as a "tool runtime environment" rather than just a file manager
45
+ - Updated gemspec summary and description to reflect new concept
46
+ - **📖 README.md Overhaul**: Restructured for clarity with the new concept
47
+ - Organized features around tool runtime and file manager axes
48
+ - Simplified keybinding tables by category
49
+ - Added Quick Start section
50
+ - **🌐 Unified English UI Messages**: Standardized all UI messages to English
51
+ - Converted command mode, result display, and completion candidate messages to English
52
+ - Japanese setting now displays English messages (internal language setting preserved)
53
+
54
+ ### Added
55
+ - **💾 Bookmark Storage Abstraction**: Introduced `BookmarkStorage` interface
56
+ - `JsonBookmarkStorage`: Legacy JSON file format
57
+ - `YamlBookmarkStorage`: New YAML file format (integrated into config.yml)
58
+ - `BookmarkMigrator`: Automatic migration from JSON to YAML
59
+ - Support for storage dependency injection (improved testability)
60
+
61
+ ### Technical Details
62
+ - **New Files**: `lib/rufio/bookmark_storage.rb`, `test/test_bookmark_storage.rb`
63
+ - **Affected Files**: `bookmark.rb`, `bookmark_manager.rb`, `config_loader.rb`, `command_mode.rb`, `command_mode_ui.rb`, `terminal_ui.rb`, `config.rb`
64
+ - **Test Updates**: Modified test cases to match English messages
65
+
10
66
  ## [0.60.0] - 2026-01-24
11
67
 
12
68
  ### Added