Skip to content

Releases: peco/peco

v0.5.11

21 Mar 07:33
Compare
Choose a tag to compare
v0.5.11 - 21 Mar 2023
  [Features]
  * Added new option for "FuzzyLongestSort" flag that can be specified in your config file
    as
    ```
    {
      "FuzzyLongestSort": true,
      ...
    }
    ```
    allows you to sort matched lines with the following ordering precedence (#539):
      1. longer substring
      2. earlier (left positioned) substring, and
      3. shorter line.

  [Miscellaneous]
  * Posted project status at https://github.com/peco/peco/discussions/540

v0.5.10

08 Jun 09:18
Compare
Choose a tag to compare
v0.5.10 - 08 Jun 2021
  * Previous release was botched. No code change except for version string,
    and Makefile typo.

v0.5.9 - 08 Jun 2021
  * Remove support for 386 arch
  * Add go.sum
  * Add darwin-arm
  * Fix double cursor issue (#513)

v0.5.8

18 Jul 11:15
Compare
Choose a tag to compare
v0.5.8 - 18 Jul 2020
  Features:
  * Add support for 256-colors in the configuration. You must first enable
    this in the config file by specifying "Use256Colors": true

v0.5.7

10 Jan 03:47
Compare
Choose a tag to compare
v0.5.7 - 10 Jan 2020
  Bugs/Fixes:
  * Code introduced in v0.5.5 in turn caused a bug where if the input is coming
    from standard input and is possibly infinite, the user would see the
    query being "stuck" after the first character is entered.
    If peco was applied on a finite set of data, this did not manifest itself.
    (#494 fixed by #495)

v0.5.6

07 Jan 00:41
Compare
Choose a tag to compare
v0.5.6 - 07 Jan 2020
  Miscellaneous:
  * I completely messed up the release process. Retagging and uploading
    binaries properly. No code changes except for the version number (#493)

v0.5.5

01 Jan 23:27
Compare
Choose a tag to compare
v0.5.5 - 02 Jan 2020
  Features:
  * Properly exit out of peco if --select-1 and --query  are both specified,
    and the query produces exactly one result (#490)

v0.5.4

19 Dec 02:13
Compare
Choose a tag to compare
v0.5.4 - 19 Dec 2019
  Miscellaneous:
  * Properly set cursor position (#450)
  * Update termbox-go version (#487/#488)
  * Update go version to go 1.13

v0.5.3

11 Mar 22:30
Compare
Choose a tag to compare
v0.5.3 - 12 Mar 2018
  Features:
  * New --print-query option prints out the query upon successful exit
  * New actions ScrollFirstItem and ScrollLastItem
  Miscellaneous:
  * Update termbox-go version (#447)
  * Documentation fixes (#444)
  * Build peco using go1.10

v0.5.2

08 Dec 01:30
75f471e
Compare
Choose a tag to compare
v0.5.2 - 08 Dec 2017
  Backwards Incompatible Change:
  * --version flag now prints out the Go version used to build the binary
  Micellaneous:
  * Various doc fixes
  * Build peco using go1.9.2.
  * There have apparently been problems running the stock peco binary in
    MacOS High Sierra, with an error message like "failed MSpanList_Insert...",
    which can averted by compiling the binary with a newer Go.

    Reports suggest that peco v0.5.1 is not affected by this problem, but
    we're making this release anyway just to make sure that we're building
    on a new-ish Go, and that users have a way to see what Go version was
    used to build their binaries

v0.5.1

17 Mar 03:50
Compare
Choose a tag to compare
v0.5.1 - 17 Mar 2017
  Bugs/Fixes
  * When --exec is used, and you come back from the external command,
    you lost your selected location in the peco view. #410
  Backwards Incompatible Change:
  * --tty has been removed. it was not being used anyways.
  Miscellaneous
  * When scrolling right, you could potentially keep on scrolling
    infinitely. This has bee addressed by #409, #412
  * External commands specified in --exec now receive
    PECO_FILENAME, PECO_LINE_COUNT, PECO_QUERY, and
    PECO_MACHED_LINE_COUNT as environment variables
  * Removed unused structs
  * Fixed glide related Mkaefile actions