インストール
ダウンロード
Section titled “ダウンロード”ビルド済みバイナリは GitHub Releases ページからダウンロードできます。
| プラットフォーム | ファイル |
|---|---|
| macOS (Apple Silicon) | winxmerge-macos-aarch64.tar.gz |
| Linux (x86_64) | winxmerge-linux-x86_64.tar.gz |
| Windows (x86_64) | winxmerge-windows-x86_64.zip |
インストール不要 — ブラウザで直接 winxmerge.app にアクセスしてお試しください。
ソースからビルド
Section titled “ソースからビルド”# リポジトリをクローンgit clone git@github.com:masak1yu/winxmerge.gitcd winxmerge
# asdf で Rust をインストールasdf plugin add rustasdf install
# ビルドcargo build --features desktop
# テスト実行cargo test --features desktop
# アプリを起動cargo run --features desktopWASM版のビルド
Section titled “WASM版のビルド”# WASMターゲットとtrunkをインストールrustup target add wasm32-unknown-unknowncargo install trunk
# 開発サーバーtrunk serve
# 本番ビルド(dist/ に出力)trunk build --releasemacOS アプリバンドル
Section titled “macOS アプリバンドル”Finder Sync Extension 付きの .app バンドルをビルドするには:
./scripts/build-macos-bundle.shtarget/ ディレクトリに WinXMerge.app が生成されます。