Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-10-26CURA-4451 Minor changesDiego Prado Gesto
2017-10-23Create empty not supported container dynamically when no qualities are found ↵ChrisTerBeke
- CURA-4451
2017-10-17Run crash dialog on Qt thread so the GUI gets updated correctlyLipu Fei
CURA-4195
2017-10-17Fix code styleLipu Fei
CURA-4195
2017-10-16Adjusted Crash report message titleA.Sasin
CURA-4195
2017-10-13CURA-4195 Add strings for I18NDiego Prado Gesto
2017-10-13CURA-4195 - Add module name to the crash reportDiego Prado Gesto
2017-10-10Parsing traceback to get more information about the crash - CURA-4195Diego Prado Gesto
2017-10-09Adding info to be sent as JSON and send when button is pressed - CURA-4195Diego Prado Gesto
2017-10-09Changed Crash Report layout and new information included - CURA-4195Diego Prado Gesto
2017-05-19Dump stacktrace for all threads in CrashReportLipu Fei
CURA-3836 This helps debugging issues like CURA-3836
2017-05-04Remove kitten image and related text from CrashDialogLipu Fei
2017-01-17Fixes for all of the plugins. Added a script to invoke mypy. (I'm stiiiick ↵Simon Edwards
of .bat files. They are just broken.)
2016-12-15Make Debug mode a build-time option instead of a hardcoded valueArjen Hiemstra
2016-12-12Fix the crash handler string so we get no errors from gettextArjen Hiemstra
Contributes to CURA-3123
2016-12-08Make the crash dialog a bit more friendlyArjen Hiemstra
2016-12-08Re-enable Debug mode by defaultArjen Hiemstra
As discussed a while ago, we want to re-enable the crash dialog whenever an uncaught exception occurs.
2016-12-08Remove "debug mode" command line parameterArjen Hiemstra
We never used it and it doesn't really work anyway.
2016-06-10Mark certain types of exceptions as fatal and abort the application if they ↵Arjen Hiemstra
occur We simply cannot recover properly from things like an uncaught MemoryError since that usually means any follow up operation will also fail. So Instead of silently ignoring it and having the application in a broken state we properly abort. Right now the list of fatal exceptions is a bare minimum that contains the most prominent things we cannot recover from.
2016-06-10Use the Logger to report uncaught exceptionsArjen Hiemstra
Makes for a nicer and clearer output of uncaught exceptions
2015-10-08Fix crash handler to not complain about debug_mode not being setArjen Hiemstra
2015-10-05Fix issues with crash handler and log file creation on WindowsArjen Hiemstra
2015-10-05Disable crash handler if debug mode is not enabledArjen Hiemstra
2015-09-10Fix strings in crash handlerArjen Hiemstra
Contributes to CURA-132
2015-09-08adds/adapts translation context markersTamara Hogenhout
all nescessary in folder: Cura/cura Contributes to: issue CURA-116
2015-09-08adds/adapts translation context markersTamara Hogenhout
all nescessary in folder: Cura/cura Contributes to: issue CURA-116
2015-08-19Print backtrace on console when we are not running a py2exe/py2app buildArjen Hiemstra
2015-08-04Use sys.exit() instead of exit()Arjen Hiemstra
Apparently there is a difference...
2015-08-04Handle all uncaught exceptions through CrashHandler and gracefully fail if ↵Arjen Hiemstra
we have no QCoreApplication
2015-07-13Add a crash handler to catch uncaught exceptionsArjen Hiemstra
This should catch any uncaught exceptions and avoid the Py2Exe message about Cura.log Fixes #133