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.

Major 3 minor 0 patch 1

+22 -3
+20 -1
CHANGELOG.md
··· 5 5 6 6 ## [Unreleased] 7 7 8 + ## [3.0.0] – 2025-09-26 9 + ### Changed 10 + - The justfile was updated with better organization, formatting, and documentation. 11 + 12 + ### Added 13 + - A new build and CI pipeline using Nix, CUE, and Just, which includes fixes for version and script errors. 14 + - --scheme option to the info command to get information about URL schemes. 15 + - clap for command-line argument parsing, including shell completion generation. 16 + - Linters like clippy and typos to improve code quality. 17 + - Support for more supertypes in uti.rs. 18 + - dist/ directory added to .gitignore. 19 + 20 + ### Fixed 21 + - Various typos in the codebase and documentation. 22 + - Corrected an issue with an inaccurate environment variable for the binary name in the build script. 23 + - Improved bundle ID canonicalization and input validation. 24 + - Improved handling of symlinks. 25 + 8 26 ## [3.0.0] – 2025-09-25 9 27 ### Changed 10 28 - Complete rewrite to Rust! ··· 384 402 385 403 --- 386 404 387 - [Unreleased]: https://github.com/philocalyst/infat/compare/v3.0.0…HEAD 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 388 407 [3.0.0]: https://github.com/philocalyst/infat/compare/v2.5.2…v3.0.0 389 408 [2.5.2]: https://github.com/philocalyst/infat/compare/v2.5.1…v2.5.2 390 409 [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.0" 309 + version = "3.0.1" 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.0" 4 + version = "3.0.1" 5 5 edition = "2024" 6 6 description = "Command-line interface for infat" 7 7 license = "MIT"