aboutsummaryrefslogtreecommitdiffstats
path: root/mkhint
AgeCommit message (Collapse)AuthorFilesLines
13 daysfeat: multiline DOWNLOAD support, test suite, updated docsHEADmasterDanilo M.1-13/+135
- Add parse_multiline_var, prompt_continuation_urls, build_multiline_value, _process_download_var; refactor update_checksums to handle multi-URL vars - First URL always re-downloaded; continuation URLs prompt user, skip re-download if unchanged - Add tests/mkhint_test.sh: 44 cases covering all commands and edge cases - Update README and CLAUDE.md: correct -N semantics, --new behavior, multiline DOWNLOAD flow, test suite docs
13 daysrefactor: extract update_checksums, apply version/md5 on --newDanilo M.1-18/+35
--new with -v now sets version and recalculates md5sums via shared update_checksums function. Previously -n ignored VERSION entirely.
13 daysfix: always run downloads when updating hint file with -NDanilo M.1-18/+16
-N should add NODOWNLOAD=yes but still recalculate md5sums. Previously it skipped the download block entirely.
2026-05-14refactor: switch arg parser to GNU getoptDanilo M.1-6/+18
Enables compound short flags (e.g. -Nn, -Nd). Also add short flags to bash completion candidates.
2026-05-14add --no-dl/-N option to skip downloads and set NODOWNLOAD=yesDanilo M.1-15/+48
Adds --no-dl/-N flag for use with --hintfile or --new. Skips wget, inserts NODOWNLOAD=yes after MD5SUM_x86_64 in the hint file. Also fixes README (correct paths, old command name, missing --delete/--clean sections) and updates CLAUDE.md and bash completion accordingly. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-07rename mkhintfile.sh to mkhint, add --delete/-d optionDanilo M.1-0/+378
- Rename script and completion file to mkhint/mkhint.bash-completion - Add --delete/-d flag to remove one or more hint files (and .bak if present) - Fix bash completion: correct hint_dir path, use find for nested .info files, add --delete completion, add flag name completion - Update all references in CLAUDE.md, README.md, and source files Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>