Search found 5532 matches

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: 1517

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: 1443

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: 1443

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: 986

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: 80845

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: 456

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: 1282

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: 377

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
by adrianinsaval
Sat Mar 02, 2024 8:49 pm
Forum: Help on using FreeCAD
Topic: FreeCAD - Moving 3D with mouse/Blender
Replies: 2
Views: 316

Re: FreeCAD - Moving 3D with mouse/Blender

what difficulties are you having? You need to give a better description
by adrianinsaval
Sat Mar 02, 2024 8:46 pm
Forum: Install / Compile
Topic: FlatPak Install, FreeCAD 0.21.2, Cannot See /usr/local/
Replies: 4
Views: 395

Re: FlatPak Install, FreeCAD 0.21.2, Cannot See /usr/local/

it is normal for any flatpak to not see /usr/local as those are considered system files and faltpaks are supposed to be isolated/sandboxed from the system. With the default permissions that freecad flatpak has you can access those files at /var/run/host/usr/local if I'm not mistaken. See https://doc...