Connect applications to schemes, filetypes, and more on macOS (more to come)
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Version 3.0.2!

+17 -5
+15 -3
CHANGELOG.md
··· 5 5 6 6 ## [Unreleased] 7 7 8 - ## [3.0.0] – 2025-09-26 8 + ## [3.0.2] – 2025-09-29 9 + ### Added 10 + - Configuration handling now prefers **XDG-compliant directories** over traditional fallback locations, ensuring consistent behavior across environments. 11 + - Handles `XDG_CONFIG_HOME` correctly when set. 12 + - Provides explicit error guidance if no configuration path is derivable, prompting users to set `XDG_CONFIG_HOME`. 13 + - Automatically falls back to platforms’ default configuration directories (e.g., `~/.config`, `~/Library/Application Support`). 14 + 15 + ### Changed 16 + - Internal `get_config_paths` and `find_config_file` APIs now return `Result` types instead of raw values, making error handling explicit. 17 + - GitHub CI release workflow updated to use **softprops/action-gh-release@v2.3** (was `@v5`), ensuring compatibility with maintained versions. 18 + 19 + ## [3.0.1] – 2025-09-26 9 20 ### Changed 10 21 - The justfile was updated with better organization, formatting, and documentation. 11 22 ··· 402 413 403 414 --- 404 415 405 - [Unreleased]: https://github.com/philocalyst/infat/compare/v3.0.1…HEAD 406 - [3.0.0]: https://github.com/philocalyst/infat/compare/v3.0.0…v3.0.1 416 + [Unreleased]: https://github.com/your-org/your-repo/compare/v3.0.2...HEAD 417 + [3.0.2]: https://github.com/your-org/your-repo/compare/v3.0.1...v3.0.2 418 + [3.0.1]: https://github.com/philocalyst/infat/compare/v3.0.0…v3.0.1 407 419 [3.0.0]: https://github.com/philocalyst/infat/compare/v2.5.2…v3.0.0 408 420 [2.5.2]: https://github.com/philocalyst/infat/compare/v2.5.1…v2.5.2 409 421 [2.5.1]: https://github.com/philocalyst/infat/compare/v2.5.0…v2.5.1
+1 -1
Cargo.lock
··· 306 306 307 307 [[package]] 308 308 name = "infat-cli" 309 - version = "3.0.1" 309 + version = "3.0.2" 310 310 dependencies = [ 311 311 "clap", 312 312 "clap_complete",
+1 -1
infat-cli/Cargo.toml
··· 1 1 # infat-cli/Cargo.toml 2 2 [package] 3 3 name = "infat-cli" 4 - version = "3.0.1" 4 + version = "3.0.2" 5 5 edition = "2024" 6 6 description = "Command-line interface for infat" 7 7 license = "MIT"