Search found 5534 matches

by adrianinsaval
Mon Mar 11, 2024 11:08 pm
Forum: Help on using FreeCAD
Topic: Local LCS in Part not Attached
Replies: 12
Views: 953

Re: Local LCS in Part not Attached

The support property of attachments has been renamed to AttachmentSupport because it was conflicting with another property. Third party code that reference this property need to be updated to match. I provided a patch (although untested) to zolko but I guess he didn't use it
by adrianinsaval
Fri Mar 08, 2024 4:27 pm
Forum: Install / Compile
Topic: 0.21.2 AppImage on Arch Linux
Replies: 2
Views: 310

Re: 0.21.2 AppImage on Arch Linux

Please provide the error message
by adrianinsaval
Wed Mar 06, 2024 5:10 pm
Forum: Google Summer of Code (GSoC)
Topic: [GSoC 2024] - Command-Line Preferences Manipulation
Replies: 14
Views: 1702

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

the templates do not cover all available preferences for freecad, they are only templates that set certain things. Rather than just looking at some config files and tryign to reverse engineer from that I would advice you to check the actual code dealing with preferences. Do all preferences start wit...
by adrianinsaval
Wed Mar 06, 2024 5:45 am
Forum: Packaging
Topic: Building FC package from source that could be installed on multiple Linux systems.
Replies: 14
Views: 1635

Re: Building FC package from source that could be installed on multiple Linux systems.

that's not how debian packaging works (or most traditional packaging methods) you would have to install all the dependencies from the debian repos on the other machines
by adrianinsaval
Mon Mar 04, 2024 10:17 pm
Forum: Packaging
Topic: Building FC package from source that could be installed on multiple Linux systems.
Replies: 14
Views: 1635

Re: Building FC package from source that could be installed on multiple Linux systems.

Are you modifying the source code in any way? If not I would recommend just using our appimages from the downloads page. If yes, you may look at https://github.com/FreeCAD/freecad-feedstock and https://github.com/FreeCAD/FreeCAD-Bundle where we build the conda package and appimage respectively.
by adrianinsaval
Mon Mar 04, 2024 9:21 pm
Forum: Part Design module development
Topic: PartDesign user experience improvement
Replies: 9
Views: 1072

Re: PartDesign user experience improvement

If you want to do this you must do it using the development version otherwise you'll waste time. Get it at https://github.com/FreeCAD/FreeCAD-Bundle/releases/weekly-builds I. Base menu : Current situation : Every Icons are the same size, colors help differentiate sections. Improvement : Creating big...
by adrianinsaval
Mon Mar 04, 2024 1:21 am
Forum: Toponaming forum
Topic: Collection of differences between original master version and realthunder
Replies: 148
Views: 85762

Re: Collection of differences between original master version and realthunder

thomas-neemann wrote: Wed Jan 17, 2024 5:27 pm In a current project I have to use a 1.3 GB STP file for referencing. The current master version takes about 8 hours to open. the current realthunder version takes about 1 hour. Unfortunately I cannot publish the file
Interesting, did you have the same import and mesh quality preferences on both?
by adrianinsaval
Sat Mar 02, 2024 10:43 pm
Forum: Open discussion
Topic: Expressions behaviour with Spreadsheet aliases
Replies: 3
Views: 481

Re: Expressions behaviour with Spreadsheet aliases

True. I wasn't aware of that. But then the cell content is changed. The nice feature was the ability to shift aliases without affecting the content of the cells with that operation..(to make a variant of a part for instance) I would advise to use a configuration table for part variants. Besides tha...
by adrianinsaval
Sat Mar 02, 2024 9:24 pm
Forum: UX/UI Design
Topic: My implementation for realthunders visibility icon (eye)
Replies: 7
Views: 1344

Re: My implementation for realthunders visibility icon (eye)

Currently the gray out is disabled when the icon is enabled. But I can certainly see why someone might prefer the gray out. I'm in this camp, greyed out makes it much easier to identify what is visible but the icon is very useful to easily control what is visible. I don't see why they should be mut...
by adrianinsaval
Sat Mar 02, 2024 9:02 pm
Forum: Install / Compile
Topic: Skipping modules when compiling on Ubuntu
Replies: 1
Views: 391

Re: Skipping modules when compiling on Ubuntu

you can use cmake-gui to see the options and enable or disable the modules you want. In command line, you don't need separate commands for each option, you can do something like this:

Code: Select all

cmake -D BUILD_REVERSEENGINEERING=OFF -D BUILD_ROBOT=OFF -D BUILD_ASSEMBLY=OFF