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
2020-12-08Merge branch 'master' into workaround_kde_qqc2_crashStefanBruens
2020-12-08Use 'default' theme instead of 'material' StefanBruens
Using 'material' causes some layout issues, while 'default' shows no such issues and also fixes the preview pane crashes.
2020-12-08Fix bug referenceStefanBruens
2020-09-28Switch out the arranger algorithm for arrange allJaime van Kessel
CURA-7440
2020-07-06Prevent division by 0 if total download size is 0Ghostkeeper
This can happen if the downloads are all so small that it gets rounded to 0kB. Fixes Sentry issue CURA-ZM.
2020-05-18Prevent crash when sentry could not be initializedJaime van Kessel
2020-04-08Fix setting of sentry_env for betasJaime van Kessel
2020-03-24Merge pull request #7211 from Ultimaker/CURA-7150_proper_http_request_headersRemco Burema
CURA-7150_proper_http_request_headers
2020-03-09Filter out KeyboardInterrupts and MemoryErrorsKostas Karmas
2020-02-26Remove working directory from sys.pathGhostkeeper
This prevents accidentally loading packages from the working directory that are not in Cura's build. Contributes to issue CURA-7081.
2020-02-26Also check if streams are not closedGhostkeeper
SmartAvionics found that this was a safer way to be able to write to these streams. See comments on commit 2eab2c0f3dbe3153cc704ca9e396cd78b0ebbf9d.
2020-02-25Disable SSL checking in debug modeNino van Hooff
Allows inspecting web traffic during development CURA-7150
2020-02-25Merge branch '4.5'Ghostkeeper
Conflicts: cura_app.py -> Due to moving some imports around.
2020-02-24Move imports of Arcus & Savitar upJaime van Kessel
This was needed due to the crashhandler being imported CURA-7245
2020-02-24Apply suggestions from code review Jaime van Kessel
Codestyle!
2020-02-24Prune all sensitive data before sending it to SentryNino van Hooff
CURA-7245
2020-02-20Avoid crash caused by KDE qqc2-desktop-styleStefanBruens
Workaround/fix for #5488 Also see https://bugs.kde.org/show_bug.cgi?id=417900
2020-02-18Merge branch 'master' of https://github.com/zxc8027/Cura into zxc8027-masterGhostkeeper
2020-02-17Merge branch '4.5' of github.com:Ultimaker/CuraJaime van Kessel
2020-02-14Added check for stdout being defined.Zachary Cook
2020-02-11Fix setting the environment for SentryJaime van Kessel
2020-02-08WIP: Make it work with Python 3.7 packaingLipu Fei
2020-01-24Make the sentry_env a bit smarterJaime van Kessel
2020-01-03SentrySDK: Turn on deep integration on demandThomas Karl Pietrowski
Only whenever the sentry_sdk module is there functions of this module will be used. The only changes, which were needed to be made, are done on cura_app.py and cura.CrashHandler. Whenever the module is not available, it's functions will be omitted. The if-clauses could happen earlier, but this at least the bare minimum, and, to be honest, on Ultimaker's distribution it won't speed up anything. I expect the if-clause to take the same amount of runtime sooner or later. The check is the same and it should be on Ultimaker's distribution always be "True". Signed-off-by: Thomas Karl Pietrowski <thopiekar@gmail.com> (github: thopiekar)
2019-12-19Add user (identified by MAC) & ensure that no personal info is in server_nameJaime van Kessel
2019-12-19Add encvironment variable to Sentry crash loggingNino van Hooff
CURA-7050
2019-11-22Add extra tag if crash was during startup or notJaime van Kessel
2019-11-22Add initial stubs for sentry loggingJaime van Kessel
2019-10-25Don't output to stderr if there is no stderrGhostkeeper
This can happen on Windows where the default command line doesn't have a stderr channel. Put it in stdout then. Fixes #6579.
2019-09-04Only use DYLD_FALLBACK_LIBRARY_PATH once for trimesh.loadLipu Fei
CURA-6739
2019-09-04Fix CTM loading on LinuxLipu Fei
CURA-6739 Note that this doesn't work with Python 3.5.7, but with 3.6 and 3.7. To make Python 3.5.7 work, a fix needs to be backported from 3.6 for ctypes.util.find_library() for Linux.
2019-09-04Fix GLTF workaround for OSXLipu Fei
CURA-6739
2019-09-04Add workaround for GLTF loading on OSXLipu Fei
CURA-6739
2019-08-20chdir to ~ on Linux if frozenLipu Fei
2019-06-06Fix mistake in CLI checkLipu Fei
CURA-6549
2019-06-06Do not redirect stdout and stderr for CLILipu Fei
CURA-6549
2019-03-26Fix for weird home directories on WindowsGhostkeeper
The expanduser function will expand to a combination of HOMEDRIVE and HOMEPATH which might not be the same as APPDATA if your configuration is very weird (e.g. you've changed your APPDATA location). Contributes to CURA-6418.
2019-01-18Get app name from ApplicationMetaDatafieldOfView
2019-01-18Merge branch 'master' into feature_curaversion_appnamefieldOfView
# Conflicts: # cura/CuraApplication.py
2018-12-06The trigger_early_crash did not trigger early crash for testing purposesAleksei S
CURA-5939
2018-11-13Make Cura app name configurable in CuraVersionfieldOfView
2018-07-26Fix bug with libSavitar not loading due to SIPGhostkeeper
The same crash as libArcus actually.
2018-07-05Use double quotesGhostkeeper
As per our code style.
2018-06-28Move initialization into Uranium's run() functionGhostkeeper
This makes it possible to start a Uranium-based application without needing to know the magic incantation of starting the application.
2018-06-06Merge branch '3.4'Ghostkeeper
2018-06-06Remove trailing slash in Windows configuration pathGhostkeeper
It shouldn't matter, but we're getting crash reports from this path so let's try this.
2018-05-08CURA-5164 Fix typo in the method signatureDiego Prado Gesto
2018-05-04WIP: Make application initialization and start up more clearLipu Fei
- Create SingleInstance class to handling single instance stuff. - Instead of calling getInstance() everywhere, initialize each object explicitly in order when application starts and getInstance()s do not create instances any more and they merely return the created instances. - Only set initial values in construtor functions __init__(). Move the initialization of context-aware (i.e. things that depend on other things) to separate functions. - Split application creation and initialziation into several steps and them should be called explicitly in the correct order.
2018-05-02Fix indentLipu Fei
CURA-5289
2018-03-29make Linux+NVidia fix fail gracefullyJörg Walter