AI-powered time zone converter for macOS. Type any time in natural language — Korean, English, Chinese — and get instant conversions across your configured time zones.
Website: https://pado-labs.github.io/TimeBuddy/
Download the latest release from GitHub Releases.
- PKG installer: download the
.pkgand double‑click to install (if Gatekeeper warns, right‑click → Open). - ZIP: download, unzip, and drag
TimeBuddy.appto Applications.
Requirements: macOS 14.0 (Sonoma) or later
If you see a message like "TimeBuddy" cannot be opened:
- Go to System Settings → Privacy & Security.
- Find the message that says TimeBuddy was blocked from use.
- Click Open Anyway, then confirm Open.
(Optional) You can also right‑click TimeBuddy.app → Open to run it once.
TimeBuddy/
├── apps/
│ ├── macos/ # macOS menu bar app (SwiftUI)
│ └── web/ # Landing page (Astro + Tailwind)
├── .github/
│ └── workflows/
│ ├── release.yml # Build & release on tag push
│ └── deploy-web.yml # Deploy website to GitHub Pages
cd apps/macos
xcodegen generate
open TimeBuddy.xcodeprojcd apps/web
npm install
npm run devPush a version tag to trigger a GitHub Release with the built .app bundle:
git tag v1.0.0
git push origin v1.0.0This will:
- Build the macOS app (Universal Binary: arm64 + x86_64)
- Package it as a
.zip - Create a GitHub Release with the download attached
MIT