What's Changed
- Update issue templates by @devanshshukla99 in #64
- Added pr template by @devanshshukla99 in #63
- Consistent version selector menu across themes by @devanshshukla99 in #47
- Added more themes to documentation by @devanshshukla99 in #66
- Removed
--branchesin favour of--branchand-bby @devanshshukla99 in #67 - Select/exclude a branch from processing by @devanshshukla99 in #69
- Added regex support for selecting and excluding branches and tags by @devanshshukla99 in #80
- windows compatiblity by @devanshshukla99 in #76
- 1.4 rc by @devanshshukla99 in #81
Deprecations and Removals
- The theme specific versions selector menu/badge is deprecated in favour of consistent experience across themes. Now, every theme will have the selector menu either in its sidebar or in its footer(if the theme supports it). (#47)
- The CLI option
--branchesis removed in favour of--branchand-b. (#67)
Features
-
Added a feature to either have the vanilla versions selector menu or have it as a floating badge via using either
--floating-badgeor
--badgeoption available through command-line. (#47) -
Modified the
--branch/-bto accomodate branch selection/exclusion. Now, any branch can be selected by mentioning it in
--branch/--band any can be excluded by adding a-infront of the branch/tag name in the cli argument.
Like--branch main,-v1.0,v2.0will selectmain,v2.0and will excludev1.0. (#69) -
Adds windows compatibility. (#76)
-
Added regex support for selecting and excluding branches and tags. Now, any branch can be selected by mentioning it in
--branch/--band any can be excluded by adding a-infront of the branch/tag name in the argument.
Suppose there are 3 branches and tags:main, v1.0, v2.0. The argument--branch main,-v*will selectmainand will excludev1.0andv2.0.
Similarly, the argument--branch -main,v*will selectv1.0andv2.0and will excludemain.Note: selecting a branch takes presidence over excluding one. (#80)
Full Changelog: v1.3.1...v1.4