Changesets: FreeCAD

master fa5b1608

2015-09-27 10:58:51

wmayer

Details Diff
+ fix export of ASCII STL
mod - src/Mod/Mesh/Init.py Diff File

master 309373c4

2015-09-26 19:36:11

wmayer

Details Diff
+ fix transparent background for Windows systems
+ set application-wide event filter and handle mouse press events
+ fix expressPosition() to return exact position of line edit
+ fix warnings in ui file
+ use DlgExpressionInput as non-modal dialog in QuantitySpinBox
mod - src/Gui/DlgExpressionInput.cpp Diff File
mod - src/Gui/DlgExpressionInput.h Diff File
mod - src/Gui/DlgExpressionInput.ui Diff File
mod - src/Gui/QuantitySpinBox.cpp Diff File
mod - src/Gui/QuantitySpinBox.h Diff File

master cab81112

2015-09-26 19:33:56

Eivind Kvedalen


Committer: wmayer Details Diff
Removed PropertyExpressionEngine::getPaths() method.
mod - src/App/PropertyExpressionEngine.cpp Diff File
mod - src/App/PropertyExpressionEngine.h Diff File

master 14545212

2015-09-26 15:42:52

Eivind Kvedalen


Committer: wmayer Details Diff
Added various options to silence warnings when compiling salomemesh with clang.
mod - src/3rdParty/salomesmesh/CMakeLists.txt Diff File

master eecb6f35

2015-09-26 15:15:58

Eivind Kvedalen


Committer: wmayer Details Diff
Spreadsheet: Fixed too liberal decoding of cell addresses.
mod - src/Mod/Spreadsheet/App/Utils.cpp Diff File

master 94851bc1

2015-09-26 07:40:30

abdullah


Committer: wmayer Details Diff
Sketcher Bug fix: External geometry shown after reorient

========================================================================

Reported here:
http://forum.freecadweb.org/viewtopic.php?f=10&t=12517&p=100388#p100429

Solution:
When a sketch loses support, all external geometry is deleted right away.
mod - src/Mod/Sketcher/App/SketchObject.cpp Diff File
mod - src/Mod/Sketcher/App/SketchObject.h Diff File
mod - src/Mod/Sketcher/Gui/Command.cpp Diff File

master 56c29e27

2015-09-26 06:46:39

abdullah


Committer: wmayer Details Diff
Sketcher: Bug fix: Building Vertex Index on Restore

===================================================

The bug was introduced by myself here:
https://github.com/FreeCAD/FreeCAD/commit/47c0859c1b702b6c7d1dcf5922317c4f325f5d2e

[code]
void SketchObject::onDocumentRestored()
{
try {
- rebuildExternalGeometry();
+ if(Support.getValue()) {
+ validateExternalLinks();
+ rebuildExternalGeometry();
+ }
Constraints.acceptGeometry(getCompleteGeometry());
}
[/code]

The issue is that "rebuildExternalGeometry" calls "rebuildVertexIndex". So for any sketch not having external geometry, if you open it, select everything and hit del, you will have a crash because
I effectively removed the creation of the index in this dossier. You won't have one if you do anything rebuilding the index before hitting del, like creating geometry, though.
Affected Issues
0002277
mod - src/Mod/Sketcher/App/SketchObject.cpp Diff File

master 6a93d139

2015-09-25 20:23:55

yorik

Details Diff
Merge pull request 0000053 from wood-galaxy/equipement-fix

Arch : Fix ViewProviderComponent if vobj have not DiffuseColor attribute
mod - src/Mod/Arch/ArchComponent.py Diff File
mod - src/Mod/Arch/ArchEquipment.py Diff File

master c94c2038

2015-09-25 20:02:38

rockn

Details Diff
Arch : little fix in ArchComponent
mod - src/Mod/Arch/ArchComponent.py Diff File

master 9b1fc9e7

2015-09-25 19:48:31

rockn

Details Diff
Arch : Fix ViewProviderComponent if vobj have not DiffuseColor attribute

Comment PropertyPartShape in Equipement because it
doesn't work if base object is a solid.
mod - src/Mod/Arch/ArchComponent.py Diff File
mod - src/Mod/Arch/ArchEquipment.py Diff File

master f8d32107

2015-09-25 01:19:22

wmayer

Details Diff
+ fix build failure with gcc
mod - src/Mod/Mesh/App/Core/MeshIO.cpp Diff File

master e786cfbc

2015-09-25 00:52:44

wmayer

Details Diff
+ reimplement virtual methods in PropertyExpressionEngine Affected Issues
0002278
mod - src/App/PropertyExpressionEngine.cpp Diff File
mod - src/App/PropertyExpressionEngine.h Diff File

master 1059ff14

2015-09-25 00:51:38

wmayer

Details Diff
+ register python type if its dict doesn't exist
mod - src/App/FeaturePythonPyImp.inl Diff File

master 202b5117

2015-09-24 23:19:33

wmayer

Details Diff
+ improve ply support
mod - src/Mod/Mesh/App/Core/MeshIO.cpp Diff File

master 98ed315b

2015-09-24 19:40:37

Stefan Tröger


Committer: wmayer Details Diff
Enhance expression icon
- fix size and position on kubuntu
- different icon for set or unset expression for better visual feedback
Affected Issues
0002272
add - src/Gui/Icons/bound-expression-unset.svg Diff File
mod - src/Gui/Icons/resource.qrc Diff File
mod - src/Gui/QuantitySpinBox.cpp Diff File

master 8257751e

2015-09-24 13:14:23

wmayer

Details Diff
+ fix clang build failure
mod - src/3rdParty/salomesmesh/CMakeLists.txt Diff File

master 29c8e82d

2015-09-24 13:10:54

wmayer

Details Diff
+ fixes unicode support in expression engine
mod - src/App/DocumentObjectPyImp.cpp Diff File
mod - src/Gui/ExpressionBinding.cpp Diff File

master 12050b4c

2015-09-24 10:10:22

wmayer

Details Diff
+ use escaped unicode for mesh import
mod - src/Mod/Mesh/Gui/Command.cpp Diff File

master ae033fc0

2015-09-24 08:45:59

Stefan Tröger


Committer: wmayer Details Diff
Fix usability bugs of new expression input
- click on background closes popup
- size on open is now correct if expression is set initially
mod - src/Gui/DlgExpressionInput.cpp Diff File
mod - src/Gui/DlgExpressionInput.h Diff File

master f19d4c44

2015-09-24 08:20:09

Bernd Hahnebach


Committer: wmayer Details Diff
FEM: rewriting some defs in CalculiX input file writer
mod - src/Mod/Fem/ccxInpWriter.py Diff File

master 10786c65

2015-09-24 03:17:47

wmayer

Details Diff
+ support of unicode names for sketch constraints
mod - src/Mod/Sketcher/App/SketchObjectPyImp.cpp Diff File
mod - src/Mod/Sketcher/Gui/CommandConstraints.cpp Diff File
mod - src/Mod/Sketcher/Gui/EditDatumDialog.cpp Diff File
mod - src/Mod/Sketcher/Gui/TaskSketcherConstrains.cpp Diff File

master de1bdefc

2015-09-24 01:05:05

yorik

Details Diff
Merge pull request 0000049 from pgilfernandez/pablogil-maya

New Maya navigation style
mod - src/Gui/CMakeLists.txt Diff File
add - src/Gui/MayaGestureNavigationStyle.cpp Diff File
mod - src/Gui/NavigationStyle.h Diff File
mod - src/Gui/SoFCDB.cpp Diff File

master 2b172a9f

2015-09-24 00:34:50

yorik

Details Diff
Materials: Applied rockn's bugfix in material editor
mod - src/Mod/Material/MaterialEditor.py Diff File

master 89df605c

2015-09-24 00:23:57

Eivind Kvedalen


Committer: wmayer Details Diff
Expression editor: Qt-workaround for '='-key; compare with text() instead.
mod - src/Gui/QuantitySpinBox.cpp Diff File

master 0894d5bd

2015-09-24 00:14:42

Eivind Kvedalen


Committer: wmayer Details Diff
ExpressionCompleter: Skip all types of links when building completer model.
mod - src/Gui/ExpressionCompleter.cpp Diff File
 First  Prev  1 2 3 ... 70 ... 140 ... 210 ... 280 ... 350 ... 420 ... 490 ... 528 529 530 531 532 533 534 ... 560 ... 630 ... 649 650 651  Next  Last