Releases: alajmo/mani
Releases · alajmo/mani
v0.31.0
Features
- Support fuzzy path selection #101 [contributor: @lucas-bremond]
v0.30.1
v0.30.0
Features
- Added a sub-command to launch a TUI
- Added
--forksflag to limit parallel task execution #74 - Added
--targetspecification from flags #82 - Added
--specspecification from flags - Added
--ignore-sync-stateflag tomani syncto ignoresyncstatus set projects #83 - Added
--tags-exprflag for complex tag filtering expressions (e.g., (active || git) targets projects with either active or git tag) #85 - Added
--sync-gitignoreflag to opt out of.gitignorefile modifications #87 - Added
ttyattribute to tasks which will replace the command and allow attaching to docker containers
Fixes
- Fixed
mani initbehavior when root directory contains.git#78 - Fixed
mani syncexecution when runningmani initwith remotes #84 - Fixed table column truncation when output exceeds terminal width
Misc
- Changed filtering tags/paths behavior to use intersection instead of union
- Changed default shell from
shtobash - Improved multiple task execution by treating them as sub-commands for cleaner output
- Renamed
--no-colorflag to--color - Changed output
texttostreamfor all outputs (flags,themes, andspec) - Updated theme configuration system
- Enhanced remote management:
maninow removes git remotes if specified via global fieldsync_remotesconfig or flag--sync-remotes
v0.25.0
Features
- Add more box styles to table and tree output
Misc
- Update golang to 1.20.0
v0.24.0
Features
- Add ability to create/sync remotes
v0.23.0
Features
- Add option
--ignore-non-existingto ignore projects that don't exist - Add flag
--ignore-errorsto ignore errors
v0.22.0
v0.21.0
Features
- Add path and url env to project clone command
v0.20.1
Fixes
- Fix evaluate env for MANI_CONFIG and MANI_USER_CONFIG
- Fix parallel sync, limit to 20 projects at a time
Changes
- Use
mani --versionflag instead ofmani version
v0.20.0
A lot of refactoring and some new features added. There's also some breaking changes, notably to how themes work.
Fixes
- Don't automatically create the
$XDG_CONFIG_HOME/mani/config.yamlfile - Fix overriding spec data (parallel and omit-empty) with flags
- Fix when initializing mani with multiple repos having the same name [https://github.com//issues/30], thanks to https://github.com/stessaris for finding the bug
- Omit empty now checks all command outputs, and omits iff all of them are empty
- Start spinner after 500 ms to avoid flickering when running commands which take less than 500 ms to execute
Features
- Add option to skip sync on projects by setting
syncproperty tofalse - Add flag to disable colors and respect NO_COLOR env variable when set
- Add env variables MANI_CONFIG and MANI_USER_CONFIG that checks main config and user config
- Add desc of tasks when auto-completing
- Add man page generation
- [BREAKING CHANGE]: Major theme overhaul, allow granular theme modification
Changes
- [BREAKING CHANGE]: Remove no-headers flag
- [BREAKING CHANGE]: Remove no-borders flag and enable it to be configurable via theme
- [BREAKING CHANGE]: Removed default env variables that was set previously (MANI_PROJECT_PATH, .etc)
- Remove some acceptable mani config filenames (notably, those that do not end in .yaml/.yml)
- Update task and project describe
- Improve error messages
Internal
- A lot of refactoring
- Rework exec.Cmd
- Remove aurora color library dependency and use the one provided by go-pretty