Chris Hennes
cfd41683a5
Core: Enable compiling with MSVC /permissive- ( #11014 )
...
* Base: Fixes for MSVC permissive-
* App: Fixes for MSVC permissive-
* Gui: Fixes for MSVC permissive-
* Main: Fixes for MSVC permissive-
* Fem: Fixes for MSVC permissive-
* Material: Fixes for MSVC permissive-
* Part: Fixes for MSVC permissive-
* Mesh: Fixes for MSVC permissive-
* Points: Fixes for MSVC permissive-
* Robot: Fixes for MSVC permissive-
* TechDraw: Fixes for MSVC permissive-
* Path: Fixes for MSVC permissive-
* Core; Changes per review comments
* TD: Revision from wandererfan
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2023-11-27 17:37:29 +01:00
wmayer
0c21c6298c
Base: fix google-explicit-constructor
2023-11-22 23:47:29 +01:00
Chris Hennes
1372070452
Update translations
2023-11-20 13:46:22 -06:00
Chris Hennes
f25af97811
Update translations
2023-11-09 12:23:56 -06:00
Chris Hennes
37a8e348c6
Merge pull request #11231 from DeflateAwning/http-cleanup
...
Find and replace http://freecad to https://freecad
2023-11-06 11:16:13 -06:00
DeflateAwning
46b3c02647
Change http to https in SVGs
...
Find and replace:
http:\/\/(.{0,10})freecad
https://$1freecad
Include: *.svg
2023-10-29 22:32:59 -06:00
Florian Foinant-Willig
85827958ca
Points: modernize type checking
2023-10-23 18:08:48 +02:00
Victor Predko
e1206a3fac
File formats: Uppercase file types when importing a file. ( #10977 )
...
* Added uppercase extensions for supported formats
In the file App\Application.cpp
* Added file types in upper case
* Adds uppercase file types to the file import filter.
Fixes #10879
* Added filter for *.fcmacro *.fcscript
2023-10-16 14:40:46 -03:00
wmayer
d305f306df
Core: Revert superfluous changes made with PR #9521
2023-10-09 15:06:45 +02:00
AgCaliva
a4e90b2609
Merge branch 'master' into User/Document/Feature_level_units_selection_#7746
2023-09-25 22:58:23 -03:00
Chris Hennes
3f3ab1ae15
Update translations
2023-09-19 22:25:14 -05:00
AgCaliva
64f60721a9
merge master via cli
2023-09-16 02:12:58 -03:00
pre-commit-ci[bot]
e92ed45df9
[pre-commit.ci] auto fixes from pre-commit.com hooks
...
for more information, see https://pre-commit.ci
2023-09-12 13:02:35 -04:00
Chris Hennes
0bc6870618
Update translations ( #10613 )
...
* Update translations
* Start: Remove Start.ts
2023-09-10 13:06:26 -05:00
AgCaliva
93679b2729
Fix DOMDocument redefinition error
2023-09-08 09:12:52 -03:00
Chris Hennes
8c3a7ccddb
Points: Final application of pre-commit
2023-09-04 08:18:51 -05:00
wmayer
c91b82db0b
Points: apply clang-formatting
2023-09-01 20:07:54 +02:00
Chris Hennes
40f130643a
Update translations
2023-08-29 07:38:09 -05:00
wmayer
ad3a47573c
Points: modernize C++: use default member init
2023-08-23 00:55:03 +02:00
wmayer
73946faa15
Points: for E57 reader move from float to double
2023-08-22 12:44:38 +02:00
wmayer
162f480c84
Points: modernize C++: use equals default
2023-08-22 12:37:37 +02:00
wmayer
5754d063e9
Points: modernize C++: return braced init list
2023-08-19 11:35:41 +02:00
Chris Hennes
bac14e81f7
Merge pull request #10258 from chennes/translations20230814
...
Update translations
2023-08-18 08:52:13 -05:00
Chris Hennes
58cf9f3212
Update translations
...
Adds the ten units strings from Base as well.
2023-08-16 22:50:39 -05:00
wmayer
3e8f4d941f
Points: modernize C++: use range-based for loop
2023-08-15 17:20:01 +02:00
wmayer
7fe0d5b9a6
modernize C++: use equals delete
2023-08-10 17:29:05 +02:00
wmayer
ec73caa40e
modernize C++: make unique
2023-08-07 19:51:30 -06:00
Chris Hennes
dd40387478
Update translations
2023-07-24 13:37:52 +00:00
Chris Hennes
2798528b8f
Update translations
2023-05-18 07:49:08 -05:00
wmayer
340c239cf5
fixes #9134 : Points Merge doesn't keep Color information
2023-05-12 13:12:14 +02:00
wmayer
fffe75bef5
Points: Create .qm out of .ts files
2023-05-07 08:48:02 +02:00
luzpaz
38a01939e0
Migrate domain name from freecadweb to freecad ( #9352 )
...
* Migrate domain name from freecadweb to freecad
* Migrate src/Mod/Material files
* Migrate Stylesheet related files
* Migrate *.svg files
* Migrate miscellaneous files
* Migrate some build files
* Migrate recently added TD AR_IRAM template files
Closes #6415
2023-04-24 15:19:20 -05:00
Yorik van Havre
faf98925f6
Merged crowdin translations
2023-04-20 14:04:19 +02:00
joha2
2d3293306b
Points: show now returns an GeoFeature object
...
* Added one return statement into try-catch block which returns the appropriate object (instead of `None`).
* Behaviour now in line with `Part.show`.
Example:
```Python
>>> import Points
>>> pp = Points.Points()
>>> pp.addPoints([(1,2,3),(4,5,6)])
>>> go = Points.show(pp)
>>> go # Former behaviour was to return None
<GeoFeature object>
>>> go.ViewObject.ShapeColor = (1,0,0)
>>> go.ViewObject.ShapeColor = (1.,0.,0.)
>>> go.ViewObject.PointSize = 20
```
2023-04-04 11:35:59 +02:00
wmayer
c770e1b677
Mod: catch exception raised by Rotation::setValue
2023-03-01 18:43:15 +01:00
Yorik van Havre
be6a654b3e
merged crowdin translations
2023-02-27 16:01:15 +01:00
wmayer
9604f94fdc
Core: add functions setPackedARGB and fromPackedRGBA
2023-02-26 10:11:53 +01:00
wmayer
c19f00fc89
Points: use Color::getPackedARGB() for pcl colors
2023-02-26 10:11:53 +01:00
Yorik van Havre
d8b0e64e14
Merged crowdin translations
2023-02-07 15:55:31 +01:00
Yorik van Havre
433b17b829
Merged crowdin translations
2023-01-23 11:25:49 +01:00
Yorik van Havre
5033f64ce9
Merged crowdin translations
2023-01-17 09:40:31 +01:00
Yorik van Havre
ec6b14bbee
Merged crowdin translations
2023-01-09 14:06:28 +01:00
wmayer
2fa66a8d63
Points: support of surface normals and fix handling with intensity
2022-12-22 20:17:49 +01:00
wmayer
124bed6957
Points: refactor E57Reader
2022-12-22 19:14:38 +01:00
wmayer
f4174e3970
Points: fixes #7924 : Pointcloud import anomalies
2022-12-21 13:05:16 +01:00
Yorik van Havre
3376e387da
Merged crowdin translations
2022-12-20 10:01:00 +01:00
Yorik van Havre
d206d5cd1f
Updated ts files
2022-12-20 09:31:25 +01:00
Uwe
f1a836b82a
[Start] Gui: enable precompiled headers
...
- also some whitespace changes
2022-12-14 04:02:05 +01:00
wmayer
bc33b44f3e
Mod: use new API of InventorBuilder
2022-12-12 20:50:32 +01:00
wmayer
184afd9761
Gui: fix View3DInventorViewer's getViewProviderByPath, getViewProviderByPathFromTail, getViewProvidersOfType
...
The View3DInventorViewer only contains the top-level view providers which caused unexpected behaviour when using the three methods above. Thus, in client code they haven't been used any more.
Now the methods internally invoke the corresponding methods of the document. This allows it in client code to directly call the appropriate methods again (LoD).
2022-12-12 16:41:58 +01:00