Ian Rees
bc71c6e64b
More fixes around Python exit codes
2016-03-27 13:01:04 +13:00
Ian Rees
3cd752417b
Catch exceptions in FreeCADCmd like FreeCAD
2016-03-26 20:49:47 +13:00
Bruce Lacey
9816e48b07
Propagate sys.exit(code) up the call stack to the shell
...
SystemExitException is instantiated and thrown by Base::Interpreter
whenever the python interpreter executes a sys.exit(<exitCode>) call.
However, in the current implementation, the SystemExitException
effectively swallows the <exitCode> hence under this change,
SystemExitException has been extended to save the <exitCode> passed to
the sys.exit() call when it is instantiated and provides a new
getExitCode() accessor method to retrieve the <exitCode> in a
try/catch block. MainGui.cpp was change to pass the corresponding
<exitCode> to the system exit() call so it is accessible in the shell.
2016-03-21 18:28:29 +01:00
wmayer
fe8be472a9
+ fix unit tests
2016-02-09 16:00:38 +01:00
Mateusz Skowroński
7d0e892d36
Qt4's qglobal.h defined TRUE and FALSE. Qt5 does not do it anymore. Replace it with true and false.
...
158f39ec78
This change is Qt4/Qt5 neutral.
2016-01-05 16:43:33 +01:00
Mateusz Skowroński
cd2db00f22
QString::fromAscii() is obsolete in Qt5. Replace it with fromLatin1().
...
This change is Qt4/Qt5 neutral.
2016-01-05 16:07:25 +01:00
wmayer
e305f079d0
+ when using FreeCAD GUI as Python module handle attempt to re-create main window
2015-12-12 20:14:37 +01:00
wmayer
2b2358e70b
+ fix warnings with Win32 build
2015-12-01 00:51:57 +01:00
Mateusz Skowroński
43a4a5938c
Fix files encoding. Go from ISO8859-1 to UTF-8.
2015-09-21 19:50:49 -03:00
wmayer
6a18530a8d
+ if FreeCAD is not running in Gui mode do not replace Python std. output
2015-08-29 17:22:40 +02:00
wmayer
b81482d597
+ harmonize Coin3D cmake variables with official check
2015-07-28 14:55:15 +02:00
wmayer
7d98705396
+ harmonize XercesC cmake variables with official check
2015-07-28 14:17:49 +02:00
wmayer
d95003e92c
+ replace deprecated PYTHON_INCLUDE_PATH
2015-07-25 18:29:42 +02:00
wmayer
36249a64ce
+ use variables instead of hard-coded library names
2015-07-17 14:54:02 +02:00
wmayer
0b1da87302
+ eliminate cmake variable QT_DEBUG_LIBRARIES
2015-07-16 19:06:20 +02:00
wmayer
cc281d482e
+ move branding stuff from main() to FreeCADApp
2015-07-07 00:52:13 +02:00
Sebastian Hoogen
f32caef40c
respect locale environment except for LC_NUMERIC
...
fixes #1852
2015-01-24 19:52:25 +01:00
wmayer
cbf0bb0aac
+ change copyright notice
2015-01-15 00:36:27 +01:00
wmayer
477099bbfe
+ remove useless stuff from Init files
2015-01-13 16:19:19 +01:00
Sebastian Hoogen
debca91e98
remove support for automake
2014-11-26 10:26:30 +01:00
wmayer
5912342e3f
+ support of home path with non-ASCII chars
2014-10-19 17:27:02 +02:00
wmayer
eb89cb422c
+ harmonize API
2014-10-19 14:28:39 +02:00
wmayer
a96f390097
+ fix build problems with Python & MacOSX
2014-10-13 22:02:57 +02:00
wmayer
dfd2eb3327
+ fixes #0001762 : Update 'About FreeCAD' Screen
2014-09-23 19:31:37 +02:00
Stefan Tröger
72cab0c002
Adaption of FreeCAD to QuarterWidget
...
-removes all soqtviewer references
-create a quarter adaptor class which implements missing functionality
-adopts freecad code to make use of SoRenderManager and changed View3DInventorViewer interface
2014-09-23 10:11:11 +02:00
Sebastian Hoogen
ed66ada1cf
issue #1700 replace PyExc_Exception
2014-09-17 11:15:57 +02:00
Sebastian Hoogen
5e51a6cdf7
fixes #0001422 : Subclass Exception
...
inherit Base.FreeCADError form RuntimeError
inherit Part.OCCError from Base.FreeCADError
inherit OCCDomainError from Part.OCCError
inherit OCCRangeError from Part.OCCError
inherit OCCConstructionError from OCCDomainError
inherit OCCDimensionError from OCCDomainError
Added PY_CATCH_OCC macro
replace PyExc_Exception
use FreeCADError in makeWireString
catch exception in BSplineCurve.increasedegree
2014-09-17 11:15:56 +02:00
wmayer
2f4ce2bbc0
+ Add StackWalker to get log messages on crashes (MSVC only)
2014-09-03 11:48:34 +02:00
jriegel
ec2198107b
move build specifier in own cMake group
2014-08-03 20:53:19 +02:00
wmayer
e8724884d0
+ add further log messages at startup for better troubleshooting, fix possible crash, fix typos
2014-07-01 11:03:55 +02:00
wmayer
6b89c03181
Add initial support for different libdir (jobermayr)
2014-05-10 12:57:38 +02:00
mdinger
337f05d56e
Move python module prefix
and suffix
properties into macro to be set together
2014-05-03 16:00:30 +02:00
wmayer
9622b98de9
+ Fix name clash of PDB files
2014-05-01 14:14:59 +02:00
wmayer
1a7cea9b59
+ Fix prefix of Python extensions built with MinGW
2014-04-30 18:22:52 +02:00
mdinger
6accb6da54
Remove extra parameter. Fix FreeCAD* names.
2014-04-30 13:41:15 +02:00
mdinger
085736095e
Insert SET_BIN_DIR macro everywhere except Mod
2014-04-30 13:41:12 +02:00
wmayer
321063bb9c
+ Get program arguments as unicode string under Windows
2014-04-25 15:28:20 +02:00
Yorik van Havre
a81604b9be
Updated links to the new bugtracker location
2013-11-04 17:07:35 -02:00
wmayer
9aa2a3f865
+ Use of style sheets
2013-10-14 12:57:00 +02:00
Yorik van Havre
42fdbefc54
0001102: Updated all links to old freecad homepage and wiki to the new ones
2013-09-15 17:04:42 -03:00
wmayer
90292ecaaf
Create minidump file if FreeCAD crashes on Windows
2013-06-14 14:33:02 +02:00
wmayer
8160c8280f
Fix build errors
2013-02-13 00:34:45 +01:00
wmayer
0ebffa930a
Do not pass 0 to PyObject_IsTrue
2012-12-30 23:16:56 +01:00
wmayer
67226298f5
Allow to run FreeCAD in its own thread
2012-12-30 12:33:53 +01:00
wmayer
c5f683b094
Fix initialization error
2012-10-18 10:31:04 +02:00
wmayer
0d351e98e2
Proper handling of SystemExitException in Python
2012-08-11 10:58:54 +02:00
wmayer
857454aad5
0000777: Shared libraries call exit
2012-07-05 15:24:28 +02:00
wmayer
d6511969cd
Extend application branding
2012-02-23 20:25:33 +01:00
wmayer
0c9fb91bd9
Embed version number into splashscreen
2012-02-22 17:28:22 +01:00
wmayer
ffd390a6af
+ fix cmake file for MinGW
...
git-svn-id: https://free-cad.svn.sourceforge.net/svnroot/free-cad/trunk@5298 e8eeb9e2-ec13-0410-a4a9-efa5cf37419d
2011-12-13 19:18:22 +00:00