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
2016-08-07Removing debug print in Nvidia fixThomas Karl Pietrowski
2016-08-07Adding "LinuxMint"Thomas Karl Pietrowski
Moving the Nvidia fix just broke another PR here on GitHub. This is the original commit: https://github.com/Ultimaker/Cura/pull/909/commits/8b750cb27c509b8d16f72c34c05de7f6784eceda Thanks to @Nihlus Why we are still listing all the distributions? - Still it isn't clear whether this problem is a "Debian"-specific bug or not.
2016-08-07Merge pull request #836 from Ultimaker/master-updates-for-LinuxThomas Karl Pietrowski
Updating NVidia workaround
2016-07-04More fixes for changed setting object locationJaime van Kessel
2016-07-01Moving Nvidia workaround to cura_app.pyThomas Karl Pietrowski
* also added "debian" into the list of distributions
2016-06-15Merge branch 'master' of https://github.com/Ultimaker/Cura into ↵Thomas Karl Pietrowski
master-using-platform
2016-06-14Refactor the profile and Cura specific import/export code, put the cura ↵Simon Edwards
stuff in Cura itself. Contributes to CURA-1667 Profile import/export
2016-06-11Using UM.Platform for Windows detectionThomas Karl Pietrowski
The diff says everything.
2016-06-11Using platform.system() for Windows detectionThomas Karl Pietrowski
This is just cosmetics. It works the same as system.platform, but looks better. Additionally "win32" might be misleading, as it sounds like we are checking for Windows 32bit here.
2016-06-10Removing unneeded import of os'Thomas Karl Pietrowski
2016-04-21Just a stupid mistakeThomas-Karl Pietrowski
.reverse() does not return anything (None)
2016-04-21Little typoThomas-Karl Pietrowski
2016-04-21This should be fine now..Thomas-Karl Pietrowski
2016-04-21Making the fix working with a list of PATHS seperated by os.pathsepThomas-Karl Pietrowski
Needs testing but should work. (fingers crossed)
2016-04-19Making WORKAROUND a true markerThomas-Karl Pietrowski
2016-04-19Making sure we got the realpath when using an absolute pathThomas-Karl Pietrowski
2016-04-19Merge branch 'pythonpath-fix-reworked' of https://github.com/thopiekar/Cura ↵Thomas-Karl Pietrowski
into pythonpath-fix-reworked
2016-04-19Doing the check the other way round..Thomas-Karl Pietrowski
2016-04-19Just a little typoThomas Karl Pietrowski
2016-04-19Making PR #708 more concreteThomas-Karl Pietrowski
Now a check is made whether PYTHONPATH is set at all. So 'normal' installations will pass that section. After that sys.path is checked whether the last element is PYTHONPATH. If it is PYTHONPATH will be moved before entry at sys.path[1], because sys.path[0] is os.curdir. Inserting PYTHONPATH in front of it might be unsave.
2016-04-19Add missing import of 'os'Thomas-Karl Pietrowski
2016-04-18Force PYTHONPATH to be in the top of the sys.path list.Youness Alaoui
This fixes https://github.com/Ultimaker/Cura/issues/704
2016-03-14Adding #@UnusedImport to ignore this importThomas-Karl Pietrowski
2016-03-14Rename type into hook_typeThomas-Karl Pietrowski
"type" itself if a built-in function. Using this name could be unsave.
2016-03-14Removing import of "os"Thomas-Karl Pietrowski
"os" is only needed for Windows as far as I can see it. However, it gets reimported for Windows, as you can see in line 22.
2016-02-10Import Arcus before importing Cura (and PyQt5)Arjen Hiemstra
Workaround an issue on certain Linux systems that causes a race condition between Arcus and PyQt5. Contributes to CURA-434
2015-11-27Fix coding style issuesArjen Hiemstra
2015-11-04Try to use Protobuf CPP implementation if it is availableArjen Hiemstra
The C++ implementation is far faster so should always be used if available. If not, we log a warning since it makes a big difference.
2015-10-05Fix issues with crash handler and log file creation on WindowsArjen Hiemstra
2015-10-01Fix stdout/stderr output location so we do not output to UM but to curaArjen Hiemstra
Fixes #452
2015-09-29Fix Windows buildArjen Hiemstra
2015-09-29Capture stdout and stderr on Windows to prevent py2exe messagesArjen Hiemstra
CURA-215 #done
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
2015-05-27Make cura_app executableArjen Hiemstra
Contributes to Ultimaker/Uranium#42
2015-05-21Rename cura.py to cura_app.py to prevent conflicts with "cura" directoryArjen Hiemstra
Contributes to Ultimaker/Uranium#41