Projects STRLCPY fzf Commits dba14d26
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■
    CHANGELOG.md
    1 1  CHANGELOG
    2 2  =========
    3 3   
    4  -0.22.1
     4 +0.23.0
    5 5  ------
    6 6  - Support preview scroll offset relative to window height
    7 7   ```sh
    skipped 14 lines
    22 22   - Added `fzf#exec()` function for getting the path of fzf executable
    23 23   - It also downloads the latest binary if it's not available by running
    24 24   `./install --bin`
     25 +- Built with Go 1.15.2
     26 + - We no longer provide 32-bit binaries
    25 27   
    26 28  0.22.0
    27 29  ------
    skipped 909 lines
  • ■ ■ ■ ■ ■
    Makefile
    skipped 7 lines
    8 8  REVISION := $(shell git log -n 1 --pretty=format:%h -- $(SOURCES))
    9 9  BUILD_FLAGS := -a -ldflags "-X main.revision=$(REVISION) -w '-extldflags=$(LDFLAGS)'" -tags "$(TAGS)"
    10 10   
    11  -BINARY32 := fzf-$(GOOS)_386
    12 11  BINARY64 := fzf-$(GOOS)_amd64
    13 12  BINARYARM5 := fzf-$(GOOS)_arm5
    14 13  BINARYARM6 := fzf-$(GOOS)_arm6
    skipped 1 lines
    16 15  BINARYARM8 := fzf-$(GOOS)_arm8
    17 16  BINARYPPC64LE := fzf-$(GOOS)_ppc64le
    18 17  VERSION := $(shell awk -F= '/version =/ {print $$2}' src/constants.go | tr -d "\" ")
    19  -RELEASE32 := fzf-$(VERSION)-$(GOOS)_386
    20 18  RELEASE64 := fzf-$(VERSION)-$(GOOS)_amd64
    21 19  RELEASEARM5 := fzf-$(VERSION)-$(GOOS)_arm5
    22 20  RELEASEARM6 := fzf-$(VERSION)-$(GOOS)_arm6
    skipped 7 lines
    30 28   BINARY := $(BINARY64)
    31 29  else ifeq ($(UNAME_M),amd64)
    32 30   BINARY := $(BINARY64)
    33  -else ifeq ($(UNAME_M),i686)
    34  - BINARY := $(BINARY32)
    35  -else ifeq ($(UNAME_M),i386)
    36  - BINARY := $(BINARY32)
    37 31  else ifeq ($(UNAME_M),armv5l)
    38 32   BINARY := $(BINARYARM5)
    39 33  else ifeq ($(UNAME_M),armv6l)
    skipped 16 lines
    56 50   mkdir -p $@
    57 51   
    58 52  ifeq ($(GOOS),windows)
    59  -release: target/$(BINARY32) target/$(BINARY64)
    60  - cd target && cp -f $(BINARY32) fzf.exe && zip $(RELEASE32).zip fzf.exe
     53 +release: target/$(BINARY64)
    61 54   cd target && cp -f $(BINARY64) fzf.exe && zip $(RELEASE64).zip fzf.exe
    62 55   cd target && rm -f fzf.exe
    63 56  else ifeq ($(GOOS),linux)
    64  -release: target/$(BINARY32) target/$(BINARY64) target/$(BINARYARM5) target/$(BINARYARM6) target/$(BINARYARM7) target/$(BINARYARM8) target/$(BINARYPPC64LE)
    65  - cd target && cp -f $(BINARY32) fzf && tar -czf $(RELEASE32).tgz fzf
     57 +release: target/$(BINARY64) target/$(BINARYARM5) target/$(BINARYARM6) target/$(BINARYARM7) target/$(BINARYARM8) target/$(BINARYPPC64LE)
    66 58   cd target && cp -f $(BINARY64) fzf && tar -czf $(RELEASE64).tgz fzf
    67 59   cd target && cp -f $(BINARYARM5) fzf && tar -czf $(RELEASEARM5).tgz fzf
    68 60   cd target && cp -f $(BINARYARM6) fzf && tar -czf $(RELEASEARM6).tgz fzf
    skipped 2 lines
    71 63   cd target && cp -f $(BINARYPPC64LE) fzf && tar -czf $(RELEASEPPC64LE).tgz fzf
    72 64   cd target && rm -f fzf
    73 65  else
    74  -release: target/$(BINARY32) target/$(BINARY64)
    75  - cd target && cp -f $(BINARY32) fzf && tar -czf $(RELEASE32).tgz fzf
     66 +release: target/$(BINARY64)
    76 67   cd target && cp -f $(BINARY64) fzf && tar -czf $(RELEASE64).tgz fzf
    77 68   cd target && rm -f fzf
    78 69  endif
    skipped 16 lines
    95 86   
    96 87  clean:
    97 88   $(RM) -r target
    98  - 
    99  -target/$(BINARY32): $(SOURCES)
    100  - GOARCH=386 $(GO) build $(BUILD_FLAGS) -o $@
    101 89   
    102 90  target/$(BINARY64): $(SOURCES)
    103 91   GOARCH=amd64 $(GO) build $(BUILD_FLAGS) -o $@
    skipped 34 lines
  • ■ ■ ■ ■ ■
    install
    skipped 1 lines
    2 2   
    3 3  set -u
    4 4   
    5  -version=0.22.0
     5 +version=0.23.0
    6 6  auto_completion=
    7 7  key_bindings=
    8 8  update_config=2
    skipped 19 lines
    28 28   --no-bash Do not set up bash configuration
    29 29   --no-zsh Do not set up zsh configuration
    30 30   --no-fish Do not set up fish configuration
    31  - 
    32  - --32 Download 32-bit binary
    33  - --64 Download 64-bit binary
    34 31  EOF
    35 32  }
    36 33   
    skipped 19 lines
    56 53   --no-completion) auto_completion=0 ;;
    57 54   --update-rc) update_config=1 ;;
    58 55   --no-update-rc) update_config=0 ;;
    59  - --32) binary_arch=386 ;;
    60  - --64) binary_arch=amd64 ;;
    61 56   --bin) ;;
    62 57   --no-bash) shells=${shells/bash/} ;;
    63 58   --no-zsh) shells=${shells/zsh/} ;;
    skipped 115 lines
    179 174  binary_error=""
    180 175  case "$archi" in
    181 176   Darwin\ *64) download fzf-$version-darwin_${binary_arch:-amd64}.tgz ;;
    182  - Darwin\ *86) download fzf-$version-darwin_${binary_arch:-386}.tgz ;;
    183 177   Linux\ armv5*) download fzf-$version-linux_${binary_arch:-arm5}.tgz ;;
    184 178   Linux\ armv6*) download fzf-$version-linux_${binary_arch:-arm6}.tgz ;;
    185 179   Linux\ armv7*) download fzf-$version-linux_${binary_arch:-arm7}.tgz ;;
    186 180   Linux\ armv8*) download fzf-$version-linux_${binary_arch:-arm8}.tgz ;;
    187 181   Linux\ aarch64*) download fzf-$version-linux_${binary_arch:-arm8}.tgz ;;
    188 182   Linux\ *64) download fzf-$version-linux_${binary_arch:-amd64}.tgz ;;
    189  - Linux\ *86) download fzf-$version-linux_${binary_arch:-386}.tgz ;;
    190 183   FreeBSD\ *64) download fzf-$version-freebsd_${binary_arch:-amd64}.tgz ;;
    191  - FreeBSD\ *86) download fzf-$version-freebsd_${binary_arch:-386}.tgz ;;
    192 184   OpenBSD\ *64) download fzf-$version-openbsd_${binary_arch:-amd64}.tgz ;;
    193  - OpenBSD\ *86) download fzf-$version-openbsd_${binary_arch:-386}.tgz ;;
    194 185   CYGWIN*\ *64) download fzf-$version-windows_${binary_arch:-amd64}.zip ;;
    195  - MINGW*\ *86) download fzf-$version-windows_${binary_arch:-386}.zip ;;
    196 186   MINGW*\ *64) download fzf-$version-windows_${binary_arch:-amd64}.zip ;;
    197  - MSYS*\ *86) download fzf-$version-windows_${binary_arch:-386}.zip ;;
    198 187   MSYS*\ *64) download fzf-$version-windows_${binary_arch:-amd64}.zip ;;
    199  - Windows*\ *86) download fzf-$version-windows_${binary_arch:-386}.zip ;;
    200 188   Windows*\ *64) download fzf-$version-windows_${binary_arch:-amd64}.zip ;;
    201 189   *) binary_available=0 binary_error=1 ;;
    202 190  esac
    skipped 197 lines
  • ■ ■ ■ ■
    install.ps1
    1  -$version="0.22.0"
     1 +$version="0.23.0"
    2 2   
    3 3  if ([Environment]::Is64BitProcess) {
    4 4   $binary_arch="amd64"
    skipped 70 lines
  • ■ ■ ■ ■
    man/man1/fzf-tmux.1
    skipped 20 lines
    21 21  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    22 22  THE SOFTWARE.
    23 23  ..
    24  -.TH fzf-tmux 1 "Aug 2020" "fzf 0.22.0" "fzf-tmux - open fzf in tmux split pane"
     24 +.TH fzf-tmux 1 "Oct 2020" "fzf 0.23.0" "fzf-tmux - open fzf in tmux split pane"
    25 25   
    26 26  .SH NAME
    27 27  fzf-tmux - open fzf in tmux split pane
    skipped 42 lines
  • ■ ■ ■ ■
    man/man1/fzf.1
    skipped 20 lines
    21 21  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    22 22  THE SOFTWARE.
    23 23  ..
    24  -.TH fzf 1 "Aug 2020" "fzf 0.22.0" "fzf - a command-line fuzzy finder"
     24 +.TH fzf 1 "Oct 2020" "fzf 0.23.0" "fzf - a command-line fuzzy finder"
    25 25   
    26 26  .SH NAME
    27 27  fzf - a command-line fuzzy finder
    skipped 821 lines
  • ■ ■ ■ ■
    src/constants.go
    skipped 9 lines
    10 10   
    11 11  const (
    12 12   // Current version
    13  - version = "0.22.0"
     13 + version = "0.23.0"
    14 14   
    15 15   // Core
    16 16   coordinatorDelayMax time.Duration = 100 * time.Millisecond
    skipped 70 lines
Please wait...
Page is in error, reload to recover