Skip to content

Release v1.1.1: Improved Portability

Latest

Choose a tag to compare

@tkaufmann tkaufmann released this 17 Aug 21:36
e139cf5

What's Changed

Improvements

  • Portable timer calculation - Replace bc with awk for better compatibility (#6 by @EdwardTang)
    • Works on minimal Linux distributions
    • No additional dependencies required
    • Compatible with Docker containers and CI/CD environments
    • Maintains same precision and functionality

Why This Matters

The bc (basic calculator) utility is not always installed by default, especially in:

  • Minimal container images
  • Fresh macOS installations
  • CI/CD pipeline environments
  • Lightweight Linux distributions

Using awk instead ensures the bridge works out-of-the-box on all POSIX-compliant systems.

Installation

git clone https://github.com/tkaufmann/claude-gemini-bridge.git
cd claude-gemini-bridge
./install.sh

Full Changelog: v1.1...v1.1.1

Thanks to @EdwardTang for this contribution!