惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

量子位
Recent Announcements
Recent Announcements
D
Docker
V
V2EX
阮一峰的网络日志
阮一峰的网络日志
Vercel News
Vercel News
Microsoft Security Blog
Microsoft Security Blog
The GitHub Blog
The GitHub Blog
U
Unit 42
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
腾讯CDC
B
Blog
博客园_首页
罗磊的独立博客
D
DataBreaches.Net
IT之家
IT之家
酷 壳 – CoolShell
酷 壳 – CoolShell
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
MongoDB | Blog
MongoDB | Blog
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
M
MIT News - Artificial intelligence

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - eblanshey/DiffCAD: Review FreeCAD model changes ...
eblanshey · 2026-05-08 · via Hacker News: Show HN

DiffCAD logo

Review FreeCAD model changes like code

FreeCAD 1.1+ Python 3.11+ Git required


DiffCAD is a FreeCAD workbench for comparing parametric document snapshots. It gives CAD projects a review loop that feels closer to software development: inspect object changes, drill into property updates, stage model work, and commit snapshot data alongside .FCStd files.

DiffCAD light theme screenshot

DiffCAD dark theme screenshot

Why DiffCAD?

FreeCAD documents are binary archives, so normal text diffs are not useful for model review. DiffCAD records a structured snapshot of each document's feature tree and compares those snapshots across your working tree, staging area, and git history.

Use it when you want to answer questions like:

  • Which objects were added, removed, or modified?
  • Which dimensions, placements, expressions, or dependencies changed?
  • What changed between my working tree and the last commit?
  • What exactly am I about to stage or commit?

Features

  • Hierarchical diff view: Review object-level changes in a color-coded tree.
  • Property-level diffing: Drill into object properties and inspect exact value changes.
  • Expression tracking: Compare property values and expressions independently.
  • Snapshot-based comparison: Capture document state at meaningful points in time and diff the result.
  • Multi-document support: Open and compare multiple FreeCAD documents in one repository.
  • Theme-aware highlighting: Keep diff colors readable across FreeCAD light and dark themes.
  • Git-aware workflow: Compare the working tree, staging area, and historical commits without replacing your regular git client.

How It Works

DiffCAD writes text snapshots for FreeCAD documents and stores them next to your project files. Those snapshots are committed with the matching .FCStd files, giving git useful data to compare while keeping the original FreeCAD files intact.

The active git repository is detected from open FreeCAD documents. When you stage or commit through DiffCAD, the workbench saves documents, writes snapshots, and stages the relevant files together.

DiffCAD supplements your existing git client. It intentionally focuses on CAD review and does not try to replace full-featured git tools.

Note

DiffCAD validates parametric CAD changes, not every byte inside an .FCStd archive. A document can change on disk without a detected parametric diff, especially for BREP data, view data, caches, and other generated content. Some complex property types are not fully captured yet.

Installation

DiffCAD requires:

  • FreeCAD 1.1 or newer (earlier versions may work, but are untested)
  • Git installed and available on your global PATH (see the Git Setup instructions below)

DiffCAD is not yet available in the official FreeCAD Addon Manager repository. Until then, install it as a custom repository:

  1. Open FreeCAD.
  2. Go to Edit > Preferences > Addon Manager > Custom repositories.
  3. Add this repository URL: https://github.com/eblanshey/DiffCAD
  4. Set the branch to master.
  5. Open Tools > Addon Manager.
  6. Search for Diff Workbench and install it.
  7. Restart FreeCAD.

Git Setup (Absolute Beginner)

Don't be intimidated if you've never used Git before! If you have never used the command line, follow these steps exactly.

  1. Install Git from https://git-scm.com/install, then run installer with default options.
  2. Open terminal (PowerShell or Command Prompt on Windows, Terminal on macOS/Linux).
  3. Set identity, which will be used for your commits (savepoints): git config --global user.name "Your Name" and git config --global user.email "you@example.com".
  4. Go to your project folder with cd, which stands for "change directory", using your OS path format:
    • Windows: cd C:\Users\YourName\Documents\MyFreeCADProject
    • macOS/Linux: cd ~/Documents/MyFreeCADProject
  5. Initialize repository: git init .
  6. Confirm setup: git status

From here on you can use the workbench for all operations.

First Run

DiffCAD needs baseline snapshots before it can show useful diffs. For an existing project, create those snapshots before making new CAD changes. To more efficiently use disk space for versioning, see the FreeCAD Git Tips section below before making your first git commit.

  1. (Optional) FreeCAD Compression: to more efficiently use disk space for versioning, see the FreeCAD Git Tips section below.
  2. Create or open a git repository: If your project does not use git yet, initialize one with your normal git client or run git init . in the project directory (see git setup instructions above)
  3. Open a project file: Start FreeCAD and open any document inside the repository.
  4. Refresh the repository: Switch to the Diff Workbench and click Refresh Git Repository. DiffCAD detects the repository from the open document.
  5. Open project documents: Click Open All Documents to open all FreeCAD documents in the repository.
  6. Recompute documents: Click Recompute All to make sure document state is current.
  7. Generate snapshots: Select Working Tree in the history list. Large projects may take some time.
  8. Stage everything: Click Stage All. DiffCAD saves documents, writes snapshot YAML files, and adds both to git.
  9. Commit the baseline: Use the Commit toolbar command or your regular git client.

After that baseline commit, continue modeling normally and use DiffCAD to review new changes.

Daily Workflow

  1. Make FreeCAD changes as usual.
  2. Open the Working Tree view in DiffCAD.
  3. Review object and property changes.
  4. Stage finished documents with the Stage buttons.
  5. Check the Staging Area view for a final review.
  6. Commit from DiffCAD or your regular git client.

Staging a document through DiffCAD automatically saves the .FCStd file, writes its snapshot, and adds both files to the git staging area.

Configuration

FreeCAD's Preferences dialog includes a Diff Workbench panel.

Exclusion Lists

Exclusion lists hide noisy generated data from the diff view. They do not affect snapshot generation.

Each exclusion list supports two modes:

  • Use default exclusion list: Use DiffCAD's built-in defaults.
  • Use custom exclusion list: Provide your own exclusions.

Default values are defined in freecad/diff_wb/domain/config.py.

Excluded Object Types

Enter one FreeCAD TypeId per line, such as App::Origin. Objects of these types and their children are removed from the diff view.

Excluded Properties

Enter one property name per line, such as TimeStamp. These properties are excluded across all object types.

Type-Specific Excluded Properties

Enter one mapping per line in the format TypeId -> PropertyName. This excludes one property for one object type while keeping it visible elsewhere.

TechDraw::DrawSVGTemplate -> PageResult

Numeric Comparison

Float Precision

Set the number of decimal places used for floating-point comparison and display. The supported range is 0 to 12; the default is 2.

FreeCAD Git Tips

FreeCAD documents are binary files by default. Small model edits can produce large file changes, and repositories can grow quickly over time.

For a simple git-friendly setup, disable document compression:

  1. Open Edit > Preferences > General > Document.
  2. Set Document save compression level to 0.
  3. Save future .FCStd files with less compression.

An .FCStd file is a ZIP archive. With compression disabled, more of the document remains plain XML inside the archive, which makes git storage and external diff tooling behave better.

For large or long-lived CAD repositories, also consider Git LFS for .FCStd files. There is a PR in FreeCAD that addresses file formats for versioning. See this comment for more git-related discussions.

Contributors

Contributions are welcome. Please open an issue for bugs, confusing diffs, setup problems, documentation gaps, or feature requests. Pull requests that improve reliability, better diffing, FreeCAD compatibility, documentation, contributor tooling, or macOS and Windows development workflows are especially helpful. Development so far has happened on Linux, so additional platform setup notes and test instructions are welcome.

  • Development setup: Set up a live FreeCAD workbench checkout, install dependencies, and configure the FreeCAD AppImage runtime for tests.
  • Development guidelines: Coding standards, testing strategy, logging, translations, dependency injection, and common contributor workflows.
  • Architecture: Layer responsibilities, runtime flow, composition roots, and snapshot/diff pipeline.

Roadmap

  • Unstage documents from inside DiffCAD
  • Initialize new git repositories from inside DiffCAD
  • Move/rename snapshots when FCStd file is moved/renamed
  • Visual part diffs
  • Manual snapshot mode for simple projects without git

Project Status

DiffCAD is early software built for real workflows. Expect rough edges, please report issues, and include sample documents when possible if a diff looks wrong.

Bug reports and feature requests: https://github.com/eblanshey/DiffCAD/issues