Skip to content

0.2.0

Choose a tag to compare

@github-actions github-actions released this 28 Jun 13:18

Release Notes

VS Code extension

  • Sidebar search view (Activity Bar → indexify icon, Ctrl+Alt+Shift+F) — persistent panel with
    streaming results grouped by file, match highlighting, and file-at-line navigation.
    • File group headers show the filename on its own line with the directory path below; hover the
      header to see the full path as a tooltip.
    • Aa case-sensitive toggle.
    • .* regular-expression toggle.
    • Max results dropdown — 50 / 100 / 300 / 1000 / ∞.
    • ··· reveals path filter fields:
      • Files to include — glob patterns to restrict results (e.g. src/, *.java).
      • Files to exclude — glob patterns to hide results (e.g. *.min.js, test/).
      • Both support * (within segment), ** (across segments), ? (single char), or plain
        substring. Filters are applied client-side without re-searching.

CLI / core

  • --case-sensitive flag for indexify search — exact-case substring and regex matching.
    The trigram phase still uses lowercase for fast candidate selection; the verify step re-checks
    original bytes when --case-sensitive is set.

CI

  • vscode.yml: changed trigger from release: published to workflow_run to work around the
    GitHub Actions restriction that GITHUB_TOKEN-created releases do not cascade to other workflows.

Install indexify 0.2.0

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/ukitomato/indexify/releases/download/0.2.0/indexify-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/ukitomato/indexify/releases/download/0.2.0/indexify-installer.ps1 | iex"

Download indexify 0.2.0

File Platform Checksum
indexify-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
indexify-x86_64-apple-darwin.tar.xz Intel macOS checksum
indexify-x86_64-pc-windows-msvc.zip x64 Windows checksum
indexify-aarch64-unknown-linux-gnu.tar.xz ARM64 Linux checksum
indexify-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum