Chris Hennes
90dc4aeb13
Update translations
2023-11-20 13:46:22 -06:00
Chris Hennes
954c2fa03f
Update translations
2023-11-09 12:23:56 -06:00
Chris Hennes
aaa0db3867
Merge pull request #11231 from DeflateAwning/http-cleanup
...
Find and replace http://freecad to https://freecad
2023-11-06 11:16:13 -06:00
Chris Hennes
b2f069f8b0
Merge branch 'main' into modernize-type-check
2023-10-31 15:46:18 -05:00
DeflateAwning
c847a3d516
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
Camille
7bac7956a4
Fix issue #10144 [Problem] FreeCAD freezes when clicking inside spreadsheet - see issue for detailed explanation.
2023-10-27 18:38:13 +02:00
Florian Foinant-Willig
0afd77c557
Spreadsheet: modernize type checking
2023-10-23 18:08:42 +02:00
wmayer
e95a1d7917
Sheet: remove double call of 'mimeData->hasText()'
2023-10-18 23:05:24 -05:00
Victor Predko
f76f842302
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
56820718c5
Core: Revert superfluous changes made with PR #9521
2023-10-09 15:06:45 +02:00
AgCaliva
2212e68a30
merge master via cli
2023-10-04 13:28:48 -03:00
Victor Predko
c9315ffc56
Spreadsheet: export CSV file extension by default
...
Fixes #10829
2023-10-02 06:38:40 +03:00
Chris Hennes
5dfd4d5190
Update translations
2023-09-29 22:57:37 -05:00
AgCaliva
1f9bae0de7
Merge branch 'master' into User/Document/Feature_level_units_selection_#7746
2023-09-25 22:58:23 -03:00
Chris Hennes
730d471fb1
Update translations
2023-09-19 22:25:14 -05:00
AgCaliva
4a504437d3
merge master via cli
2023-09-16 02:12:58 -03:00
pre-commit-ci[bot]
222a2520b1
[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
857ddacb6e
Update translations ( #10613 )
...
* Update translations
* Start: Remove Start.ts
2023-09-10 13:06:26 -05:00
pre-commit-ci[bot]
c00abdc3b5
[pre-commit.ci] auto fixes from pre-commit.com hooks
...
for more information, see https://pre-commit.ci
2023-09-10 16:01:37 +02:00
wmayer
5bed1ff3d1
Sheet: remove trailing whitespace
...
pre-commit.com hooks will remove the trailing whitespaces from the .ts files
2023-09-10 16:01:37 +02:00
wmayer
8bb1249cef
Sheet: Apply clang format
2023-09-10 16:01:37 +02:00
wmayer
159525084d
Sheet: Apply clang format
2023-09-10 16:01:37 +02:00
wmayer
b9ac7166e4
Sheet: Apply clang format
2023-09-10 16:01:37 +02:00
AgCaliva
0859cf6555
Fix DOMDocument redefinition error
2023-09-08 09:12:52 -03:00
Chris Hennes
6bfafc62dc
Update translations
2023-08-29 07:38:09 -05:00
kaktus Jacek
06284ede05
Cleaning code from unnecessary strings generated to Crowdin. ( #10385 )
...
Cleaning Crowdin of "garbage". Second approach.
https://github.com/FreeCAD/FreeCAD-translations/issues/270
2023-08-27 10:08:11 -05:00
wmayer
0b0f039ef9
Sheet: modernize C++: use default member init
2023-08-23 00:55:03 +02:00
wmayer
1ac09bccc3
Sheet: modernize C++: use equals default
2023-08-22 12:45:58 +02:00
wmayer
e541c7d3dd
Sheet: modernize C++: return braced init list
2023-08-19 11:35:41 +02:00
Chris Hennes
09edbbebaf
Merge pull request #10258 from chennes/translations20230814
...
Update translations
2023-08-18 08:52:13 -05:00
Chris Hennes
28f396cc75
Update translations
...
Adds the ten units strings from Base as well.
2023-08-16 22:50:39 -05:00
Daniel-Khodabakhsh
8003606222
Expressions: Add Vector API expression functions ( #10237 )
2023-08-15 23:00:16 -05:00
wmayer
a49e104993
Sheet: modernize C++: use range-based for loop
2023-08-15 20:21:20 +02:00
Jonas Bähr
22b173d0e2
Spreadsheet: fix build on macOS
...
The recent migration from boost::bind to std::bind [1] broke the build
on Mac (Apple clang version 13.0.0 (clang-1300.0.29.30) on macOS-11.7.8).
In all other cases the `boost::bind` was replaced by `std::bind` (among
with the place holders) but in these two spread sheet files
src/Mod/Spreadsheet/Gui/SheetModel.cpp
src/Mod/Spreadsheet/Gui/SpreadsheetView.cpp
the original code only referenced `bind`, which used to get resolved to
`boost::bind` but now raises this error:
> /Users/jonas/src/FreeCAD/FreeCAD-git/src/Mod/Spreadsheet/Gui/SheetModel.cpp:50:36: error: use of undeclared identifier 'bind'; did you mean 'boost::bind'?
> sheet->cellUpdated.connect(bind(&SheetModel::cellUpdated, this, sp::_1));
> ^~~~
> boost::bind
This commit changes this to `std::bind` expicitly, just like it's done in
the other files. This works on my system/compiler.
[1]: 68d22d864b
2023-08-11 06:15:51 -07:00
wmayer
d150fa7164
modernize C++: avoid bind
...
In many cases std::bind() is kept because the code is much simpler
2023-08-08 21:10:16 +02:00
wmayer
68d22d864b
modernize C++: move from boost::bind to std::bind
2023-08-08 17:36:13 +02:00
wmayer
0af4990817
modernize C++: make unique
2023-08-07 19:51:30 -06:00
wmayer
96aabe113e
modernize C++: raw string literal
2023-08-07 19:51:15 -06:00
wmayer
f94b026456
modernize C++: use transparent functors
2023-08-07 16:08:35 +02:00
Tobias Falk
5965956293
added PDF/A-1b compliancy to all PDF export functions
...
for more details about this look at: https://www.kdab.com/creating-pdfa-documents-qt/
2023-08-05 14:46:11 -06:00
wmayer
ca84a0662d
Sheet: modernize C++: redundant void arg
2023-08-05 16:50:31 +02:00
Chris Hennes
6838740153
Update translations
2023-07-24 13:37:52 +00:00
0penBrain
1580fe7c96
Spreadsheet: update and add tests
2023-07-23 22:11:08 -04:00
0penBrain
ee3b777f62
Spreadsheet: fix string save/restore, fixes #6395
2023-07-23 22:11:08 -04:00
Robbe De Greef
ae215724dd
fix: Spreadsheet applies content/alias even when focus lost ( #9836 )
...
* fix: Spreadsheet applies alias even when focus lost
The original stylesheet behavior was that the alias or content fields
could be edited, but only after enter was pressed the field would
actually update. This change makes the field apply when focus is lost
on top of when enter is pressed. This makes it easier to enter the
alias of a lot of fields at once.
2023-07-19 09:15:54 -05:00
Chris Hennes
6f97b74fdb
Apply translations
2023-07-09 18:09:53 -05:00
Chris Hennes
97771dc673
Update translations
2023-07-06 08:20:59 -05:00
Petter Reinholdtsen
28ad96b87f
Use python3 as the interpreter instead of python (ie v2)
...
This fixes lintian warning "unusual-interpreter".
Part of the Debian edition of FreeCAD since 2023.
2023-07-01 03:09:19 +02:00
Yorik van Havre
0977aac30d
merged crowdin translations
2023-06-16 16:42:32 +02:00
Yorik van Havre
23491db16b
Merged crowdin translations
2023-06-12 22:34:22 +02:00