Skip to content

v1.4

Latest
Compare
Choose a tag to compare
@devanshshukla99 devanshshukla99 released this 17 Aug 10:42
a8b043b

What's Changed

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 --branches is removed in favour of --branch and -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-badge or
    --badge option available through command-line. (#47)

  • Modified the --branch/ -b to accomodate branch selection/exclusion. Now, any branch can be selected by mentioning it in
    --branch/--b and any can be excluded by adding a - infront of the branch/tag name in the cli argument.
    Like --branch main,-v1.0,v2.0 will select main, v2.0 and will exclude v1.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/ --b and 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 select main and will exclude v1.0 and v2.0.
    Similarly, the argument --branch -main,v* will select v1.0 and v2.0 and will exclude main.

    Note: selecting a branch takes presidence over excluding one. (#80)

Full Changelog: v1.3.1...v1.4