Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Use perfect hash tables for file types and icons #1229

Closed
wants to merge 18 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
689cfad
feat: Use perfect hash tables for file types and icons
cfxegbert Aug 4, 2023
9ce6733
feat: Pull request 1221: Add icon support for .mjs, .cjs, .mts, .cts …
cfxegbert Aug 5, 2023
2443697
feat: Add rust icon for .rmeta files.
cfxegbert Aug 5, 2023
caffd35
feat: Pull request 1194: add Emacs icon for .el and org-mode for .org
cfxegbert Aug 5, 2023
ad36103
feat: Pull request 1191: Update icons.rs (svelte icon)
cfxegbert Aug 5, 2023
2d05d80
feat: Pull request 1162: Add icon for ocaml (.ml extension)
cfxegbert Aug 5, 2023
400ec5f
feat: Pull request 1150: Add MP2 audio format icon
cfxegbert Aug 5, 2023
fb20b2b
feat: Pull request 1148: Fixed issue #1106: added icon for '.gpg' fil…
cfxegbert Aug 5, 2023
d774b10
feat: Pull request 1144: feat(icons): add icon for LICENSE files
cfxegbert Aug 5, 2023
546d6a3
feat: Pull request 1140: Update icons.rs (.emacs)
cfxegbert Aug 6, 2023
cc833e0
fix: Move dot files out of the extensions table and into the filename…
cfxegbert Aug 6, 2023
3cb741b
feat: Pull request 1120: style: Add icon for reStructuredText (src) f…
cfxegbert Aug 6, 2023
ea539bb
feat: Pull request 1100: Adding more icons - change default icon for …
cfxegbert Aug 26, 2023
74660d1
feat: Pull request 1238: Add terraform icon
cfxegbert Aug 26, 2023
4527823
feat: Pull request 1234: Add and Update Icons
cfxegbert Aug 26, 2023
45a5c3b
fix: Update filetype table
cfxegbert Aug 26, 2023
65fc9ab
feat: A graphviz 'dot' files
cfxegbert Aug 26, 2023
6062548
feat: Match icons with eza
cfxegbert Aug 27, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,18 @@ version = "0.13"
optional = true
default-features = false

[dependencies.phf]
version = "0.11"
default-features = false

[build-dependencies.datetime]
version = "0.5.2"
default-features = false

[build-dependencies.phf_codegen]
version = "0.11"
default-features = false

[features]
default = [ "git" ]
git = [ "git2" ]
Expand Down
Loading