Search found 3632 matches

by chennes
Mon Mar 18, 2024 5:26 pm
Forum: Google Summer of Code (GSoC)
Topic: [GSoC 2024] - Command-Line Preferences Manipulation
Replies: 14
Views: 1769

Re: [GSoC 2024] - Command-Line Preferences Manipulation

The Preference Pack templates are hand-generated default value lists for the variable that I thought most likely to be included in Preference Packs. I basically generated them by looking in the code itself for calls to GetParameterGroupByPath and reading the code that accesses the variable that call...
by chennes
Sun Mar 17, 2024 6:31 pm
Forum: Install / Compile
Topic: Git clone errors
Replies: 1
Views: 253

Re: Git clone errors

Doing a full clone to check a PR is definitely overkill. The easiest thing to do is clone the main FreeCAD repo once, and then:

Code: Select all

git fetch origin pull/12345/head:pr12345
git checkout pr12345
Note that if the PR changes you will have to delete that local branch and fetch again.
by chennes
Sat Mar 16, 2024 9:59 pm
Forum: Help on using FreeCAD
Topic: Loading the file XXXYYY is not supported
Replies: 2
Views: 534

Re: Loading the file XXXYYY is not supported

Is the extension on that file really FCS and not FCStd? Is this Win7? Which version of FreeCAD?
by chennes
Sat Mar 16, 2024 4:29 pm
Forum: Google Summer of Code (GSoC)
Topic: [GSoC 2024] - Command-Line Preferences Manipulation
Replies: 14
Views: 1769

Re: [GSoC 2024] - Command-Line Preferences Manipulation

The Preference Pack Templates are the default values of a limited subset of available options. There is no global database, preferences can be created “on the fly”
at any time.
by chennes
Sat Mar 16, 2024 4:14 pm
Forum: Help on using FreeCAD
Topic: [Solved] Addon Manager - No successful update run
Replies: 9
Views: 802

Re: [Solved] Addon Manager - No successful update run

I should point out that while my earlier post was about the 0.21.x release series, that fix I linked to was a backport of a fix originally applied to the main branch, just a few weeks ago. So this bug would have affected dev builds until quite recently.
by chennes
Sat Mar 16, 2024 3:23 am
Forum: Help on using FreeCAD
Topic: [Solved] Addon Manager - No successful update run
Replies: 9
Views: 802

Re: Addon Manager - No successful update run

No, that's purely related to icon generation, it doesn't tell us anything about the updates. But this is actually a known bug in the 0.21.x release, fixed in this commit: https://github.com/FreeCAD/FreeCAD/commit/f191fde3b1d05eed6491a3874a14be7de2d39dc3#diff-4ed5128a45f88dc24a7a1e5c6cae7b074751080d2...
by chennes
Fri Mar 15, 2024 4:41 pm
Forum: Open discussion
Topic: FPA Grant review committee needs members
Replies: 1
Views: 394

FPA Grant review committee needs members

The FreeCAD Project Association recently announced our revamped grant application process for 2024 . We are now looking to add to the roster of grant reviewers: this is an unpaid position, but you'll get to help the FPA select which grants to fund and therefore some of the direction of FreeCAD devel...
by chennes
Fri Mar 15, 2024 3:37 am
Forum: Developers corner
Topic: Translating external workbenches
Replies: 58
Views: 19661

Re: Translating external workbenches

You can translate them on creation, but once created they will remain in that language even if the language changes (or the user sends the file to someone using a different language, etc.).
by chennes
Wed Mar 13, 2024 4:04 am
Forum: Install / Compile
Topic: [Fixed] site.getsitepackages() incorrect inside FreeCAD
Replies: 62
Views: 4030

Re: site.getsitepackages() incorrect inside FreeCAD

So things in /usr/local are being excluded? Am I understanding correctly?
by chennes
Tue Mar 12, 2024 2:33 pm
Forum: Developers corner
Topic: Usage of C++20/23
Replies: 15
Views: 2349

Re: Usage of C++20/23

Well, if you submit a draft PR the CI will run on Windows... is that enough for your purposes?