Commit Graph

324 Commits

Author SHA1 Message Date
Lynne Megido 313afe7cc1
test improvements
- fix tests on big endian 32 bit archs
- condense the recommend_ext test
- also test writablesln!
- general engoodening
2021-11-25 06:40:34 +10:00
Lynne Megido 33f4eb4135
replace occurrences of "mimetype" w/ "MIME type" 2021-11-25 06:29:27 +10:00
Lynne Megido ec10b58482
reorganise files.rs, use lazy Mimes in mime_type 2021-11-25 06:26:57 +10:00
Lynne Megido 667ee440e0
use parking_lot's rwlock, cargo update 2021-11-23 08:38:43 +10:00
Lynne Megido 44e14fbfba
updated formatting options 2021-11-06 02:43:08 +10:00
Lynne Megido 28aa3ad783
updated formatting options 2021-11-06 01:30:34 +10:00
Lynne Megido 855211f458
clean up windows hidden file code 2021-11-06 01:11:09 +10:00
Lynne Megido 5df8545906
cargo update, ignore sonarlint 2021-10-28 21:53:28 +10:00
Lynne Megido 672cc8da90
release v0.4.0 🥳 2021-10-14 00:04:25 +10:00
Lynne Megido c0d8105731
report files renamed/skipped/failed in --fix mode 2021-10-13 23:53:55 +10:00
Lynne Megido fcaaf283b7
ci improvements c: 2021-10-06 03:11:52 +10:00
Lynne Megido 36c0e99a92
i wonder if this is enough README badges 2021-10-06 02:54:58 +10:00
Lynne Megido 480acf515f
cleanup 2021-10-06 02:37:30 +10:00
Lynne Megido 58d5ac7e75
mostly just formatting 2021-10-06 01:41:08 +10:00
Lynne Megido b5ef95b6ef
documentation 2021-10-06 01:33:15 +10:00
Lynne Megido 6d32beedcc
cleanup 2021-10-06 00:26:04 +10:00
Lynne Megido ce79cf14ba
licensing stuff via reuse tool 2021-10-06 00:24:08 +10:00
Lynne Megido 955f0e1510
litl bit more testing 2021-10-05 04:47:33 +10:00
Lynne Megido 38ca71cc14
test smartstring::validate(), hooray 2021-10-05 02:13:32 +10:00
Lynne Megido 47c55ae61e
bumped MSRV to 1.48.0, minor improvements
- this is the rust version that debian stable (buster) currently has, so that's nice
- now we can use `const fn`s in more places, hooray
- smartstring is no longer outdated, hooray
- bitflags is no longer outdated, hooray
- mime_type in files.rs is now a bit smarter about not reading more than it has to, hooray
- removed some redundant clippy lints, hooray
- added a teensy smidgen more documentation, hooray
2021-10-05 02:12:16 +10:00
Lynne Megido c30aba35fd
fix broken multi-threaded scan_from_walkdir
i don't fully understand *why* this was broken but... it was
2021-10-05 01:45:18 +10:00
Lynne Megido 17a784732b
beeg beeg cleanup, set default prompt to error 2021-10-05 00:18:42 +10:00
Lynne Megido 556ea82a06
added --fix - fif can now rename files itself!
this alone warrants a bump to 0.4.0 imo, and now that i think about it, there's not really much keeping me from calling it 1.0...
i think i'd want to get more tests, and maybe upgrade to clap 3 stable when that happens, before calling it 1.0, though. maybe even get some sort of configuration file...
2021-10-04 23:33:48 +10:00
Lynne Megido c4fabbc0f4
refactoring, initial work on --fix feature 2021-10-04 20:22:15 +10:00
Lynne Megido 451ea3d5d9
cargo fmt, cargo update 2021-10-04 01:00:49 +10:00
Lynne Megido 3f40c61d6d
better output 0u0 2021-10-04 00:59:20 +10:00
Lynne Megido 37b9cccc9c
update gitignore 2021-10-02 19:25:35 +10:00
Lynne Megido 25d8ed64ae
capped help output to 120 chars max width 2021-09-29 23:52:20 +10:00
Lynne Megido eb3e650361
removed broken MSI support 0uo 2021-09-29 23:40:57 +10:00
Lynne Megido f1982f670e
cargo update 2021-09-29 23:33:03 +10:00
Lynne Megido 0712bf0a6b
add support for MSI files to infer backend 2021-09-29 23:31:51 +10:00
Lynne Megido 47d94cf27b
simplify InferDb custom mimetypes
using `buf.starts_with(b"\xAB\xCD")` instead of `buf[0] == 0xAB && buf[1] == 0xCD` is shorter, easier to read, removes the need for the `buf.len() > xyz` check, and actually compiles to (much) less assembly:
https://godbolt.org/z/M7GePGn1T

isn't that just lovely
2021-09-29 23:29:21 +10:00
Lynne Megido db80955f24
release v0.3.7 🥳 2021-09-25 20:09:52 +10:00
Lynne Megido 4c6163296c
flat_map_iter is 11% faster than flat_map 0uo 2021-09-25 19:55:32 +10:00
Lynne Megido 5e17e4efda
improved multithreading behaviour, & a new flag!
`-j`/`--jobs` can be used to manually set the number of threads to use for scanning files. additionally, fif won't bother with multi-threaded scanning when there are less than 32 files to scan.
2021-09-25 18:55:50 +10:00
Lynne Megido 741048839c
replace remaining OnceCells w/ Lazys, simplifying
i prefer Lazy because it simplifies initialisation by a lot, allowing for the removal of stuff like `init_db()` and the `clap_version()` functions
2021-09-25 00:54:52 +10:00
Lynne Megido 0c31277191
new screenshot, minor readme changes 2021-09-25 00:24:01 +10:00
Lynne Megido 6718f879f7
use Lazy instead of OnceCell for MIMEDB 2021-09-24 23:57:01 +10:00
Lynne Megido c2e6738f6b
use Lazy instead of OnceCell for MIMEDB 2021-09-24 23:53:02 +10:00
Lynne Megido b368be3e6b
reorder links in CHANGELOG.md 2021-09-24 22:53:33 +10:00
Lynne Megido 3e753c2a0b
replace cached dep with custom hashmap thing
i benchmarked it with hyperfine and in terms of performance it's pretty much identical, with a slight (fraction of a percent) advantage to my implementation
2021-09-24 22:08:28 +10:00
Lynne Megido 97b0a6edaa
replace cached dep with custom hashmap thing
i benchmarked it with hyperfine and in terms of performance it's pretty much identical, with a slight (fraction of a percent) advantage to my implementation
2021-09-24 22:05:12 +10:00
Lynne Megido 3d41183f1c
move license to the end of `--help` output 2021-09-24 18:12:27 +10:00
Lynne Megido 8a7cbca461
cargo fmt, rearranging use statements
by setting `group_imports = "StdExternalCrate"` in `rustfmt.toml`, cargo fmt/rustfmt rearranges your use statements into three groups:
- std/core/alloc,
- followed by external crates,
- followed by self/super/crate
2021-09-24 18:11:25 +10:00
Lynne Megido da998d019a
🚗💨 ⬆️📅
cargo update, haha get it
2021-09-24 17:58:52 +10:00
Lynne Megido 08b89d237b
disabled cleanup-msrv for now 2021-09-23 03:06:44 +10:00
Lynne Megido 3ee8745440
test.py hasn't been testing the json feature 0uo
i've had it enabled on the gitlab CI runner, but not in my test.py script that i use for local testing stuff...
2021-09-23 02:34:10 +10:00
Lynne Megido afa2bb8784
is it "an str" (ess-tee-arh) or "a str" (stir)? 2021-09-23 02:09:57 +10:00
Lynne Megido 043e0972c5
include git commit SHA in `--version` output 2021-09-23 02:07:18 +10:00
Lynne Megido a800be63f7
use SmartStrings in more places 2021-09-23 01:33:41 +10:00