Is there any news available for the KiCad v10 nightly development version since June 19?

:pleading_face:
I am good follower of Kicad New Version :grin:

1 Like

Nightly builds are automated and it may take several days to fix the process if there’s a problem. Each OS has their own builds/processes/maintainers.

You’ll need to be more specific about which nightly build is missing. I just checked and Mac/Windows/Ubuntu are all up to date

Lol he is not complaining of missing builds.

He’s asking why we haven’t posted any new v10 features in the v10 features thread since June 19 (the last post)

And the answer is it’s the middle of summer, people are busy and lots of work being done isn’t always possible features but code maintenance.

Oh jeez. Well, lines of code is not a perfect match but…

kicad-master$ git log --since=“2025-06-19” --pretty=tformat: --numstat | awk ‘{added+=$1; removed+=$2} END {print “Added:”, added, “Removed:”, removed, “Total:”, added+removed}’
Added: 1571001 Removed: 562761 Total: 2133762

Since June, we’ve only added 1.5 million lines of code. And removed 500k.

It may be summer but we’ve been busy

Yikes. Hope you’ve got a robust review process.

Ah I see, that is mainly not code

git log --since=“2025-06-19”  --numstat --pretty="%H" -- "*.cpp" "*.h" | awk 'NF==3 { added += $1; deleted += $2 } END { print "Added lines:", added; print "Deleted lines:", deleted; print "Total changed lines:", added + deleted }'

Added lines: 19523
Deleted lines: 13439
Total changed lines: 32962

@marekr & @Seth_h

Maybe whet his appetite with “Coming Attractions” :grin:

Or download a local copy of the source code and see for yourself.