Commit graph

25047 commits

Author SHA1 Message Date
Ghostkeeper
b717f54e09
Add link to discussion thread in change log 2021-03-12 10:28:28 +01:00
Ghostkeeper
0ea953cdb8
Fix display of the Arachne change log in beta
The version number didn't change, and our filtering on these headers doesn't take that case into account. I wonder why it's filtering at all, since older versions of Cura won't have the new change log anyway, but there you go. This seems to resolve the issue.
2021-03-11 17:40:36 +01:00
fvrmr
e69db0c677 Copywrite changelog
Copywrite changelog:
Added new features for line width color scheme and static outer wall.
Added randomize infill start, infill travel optimization, connect top/bottom polygons, layer thickniss to bugfixes.
2021-03-11 17:34:20 +01:00
Jelle Spijker
40b1a875d0
Added missing features to known issues in the changelog 2021-03-11 13:11:08 +01:00
Jelle Spijker
e832a68bc3
Added known issues to the changelog 2021-03-11 13:04:32 +01:00
Ghostkeeper
1251370759
Add change log for Arachne engine beta
These are the fixes we made between the alpha and the beta.
2021-03-08 12:30:37 +01:00
Ghostkeeper
8f1230631f
Slightly more consistent formatting
This should never have been committed this way, really.
2021-03-08 11:30:45 +01:00
Jelle Spijker
ab97973aa4
Merge pull request #9289 from Ultimaker/CURA-7741_line_width_simulation_view
Add line width to simulation view
2021-02-19 08:19:24 +01:00
Ghostkeeper
bb9b1cca44
Add colour scheme for line width
Implements CURA-7741.
2021-02-18 14:09:17 +01:00
Jelle Spijker
30293fb3b4
Merge remote-tracking branch 'origin/master' into libArachne_rebased 2021-02-15 11:54:31 +01:00
Ghostkeeper
0c9175d7f7
Lower camera default position by 70mm
The previous default position was aimed at 100mm above the build plate. This is taller than most models that people load into Cura. It's now aimed at 30mm. Models up to 50mm are way more common to print, so this brings it right in the butter zone for most people, hopefully.

Fixes #9251.
2021-02-15 11:31:28 +01:00
Jaime van Kessel
d24bbc4071
Merge branch 'fix_postprocessing_script_roots' of https://github.com/fieldOfView/Cura 2021-02-12 16:29:28 +01:00
Ghostkeeper
c781391b9b
Merge branch 'master' into libArachne_rebased
To my surprise, it seems fdmprinter has merged perfectly. Nice.

Conflicts:
	resources/setting_visibility/advanced.cfg -> Settings moved to a different category while we added new settings in the same place.
2021-02-10 11:55:37 +01:00
Kostas Karmas
d9cf7aeb8e Replace tabs with spaces in trimaker printer profiles
CURA-8016
2021-02-09 15:32:56 +01:00
tomasbaldi
9052e2dae3
adding profiles for Trimaker printers (#8537)
* adding profiles for Trimaker printers

* adding profiles for Trimaker printers v2

* Update resources/extruders/trimaker_nebula_extruder.def.json

Co-authored-by: Jaime van Kessel <nallath@gmail.com>

* Update resources/extruders/trimaker_cosmosII_extruder.def.json

Co-authored-by: Jaime van Kessel <nallath@gmail.com>

* Delete trimaker_cosmosII_platform.STL

* correction extension of trimaker_cosmosII_platform.stl and modification in trimaker_cosmosII.def.json and trimaker_nebula.def.json

* Update trimaker_nebula_platform.stl

* move the STL up

* Update resources/definitions/trimaker_nebula.def.json

"grid" -> "'grid'"

Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>

* Update resources/definitions/trimaker_cosmosII.def.json

"grid" -> "'grid'"

Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>

* 220x220x260 -> 230x230x260 (nebula)

* change the name of the qualities directory

* translate quality names from spanish to english

* change nebula platform_offset

* change nebula platform_offset 2

Co-authored-by: Jaime van Kessel <nallath@gmail.com>
Co-authored-by: Konstantinos Karmas <konskarm@gmail.com>
2021-02-09 15:28:04 +01:00
Ghostkeeper
593cd516ce
Fix typo in variable name
Otherwise you can't open any files any more. How did we not see this earlier?

Contributes to issue CURA-7996.
2021-02-09 14:24:09 +01:00
Ghostkeeper
ec986990a2
Merge branch 'master' into CURA-7996_Fix_trying_to_open_deleted_files_from_the_recent_files_list 2021-02-09 14:20:53 +01:00
Ghostkeeper
596d1570fb
Show error code if MyPy failed
This makes debugging it slightly easier.
2021-02-09 13:48:57 +01:00
Remco Burema
929149bf4e
Merge pull request #9232 from Ultimaker/CURA-7615_store_metadata
Retain metadata from 3MF files through save/load loops
2021-02-09 11:44:13 +01:00
Ghostkeeper
d8fba53952
Document addToRecent property
Contributes to issue CURA-7996.
2021-02-09 10:07:23 +01:00
Ghostkeeper
b815d63096
Add cura: namespace before setting keys, and store the rest in um_node.metadata
This retains per-node metadata entries.

Contributes to issue CURA-7615.
2021-02-08 17:37:38 +01:00
Ghostkeeper
c89a397e59
Merge branch 'master' into CURA-7615_store_metadata 2021-02-08 16:27:38 +01:00
Ghostkeeper
06086dfaaf
Fix reading per-object settings from 3MF object resources
This metadata has been changed to contain other information. Readers of information from 3MF need to adjust their stance too to filter out the information they need from the metadata of the metadata.

Contributes to issue CURA-7615.
2021-02-08 15:07:33 +01:00
Kostas Karmas
7be67f43f8 Let the FileNotFound error be handled later in the read file process
An error will pop up by the ReadFileJob if the file cannot be found. If we also handle the File
NotFound error in the checkIsValidProjectFile, then two error message will pop up in the user's
screen, which is not desired. So, let only the ReadFileJob show it's error instead.

CURA-7996
2021-02-08 11:59:32 +01:00
Kostas Karmas
56b3cc5fe5 Don't stop the readLocalFile process if there is no workspace reader
Or else the non-project files, which do not get a workspace reader by definition, won't be opened
in Cura.

CURA-7996
2021-02-08 11:58:12 +01:00
Kostas Karmas
f8a9e7f2d2 Pass the "add to recent" as an input var to dialogs that open projects
This way it is clear before to the dialog whether it should add the file to the recent files list,
before the dialog opens.

CURA-7996
2021-02-08 11:55:28 +01:00
Ghostkeeper
b54f792561
More appropriate error message
Project files can't be a directory.

Contributes to issue CURA-7996.
2021-02-05 15:29:56 +01:00
Ghostkeeper
79ec71ca4c
Move top/bottom settings to separate category
Implements CURA-8006.
2021-02-05 14:59:38 +01:00
Kostas Karmas
ee22be74b9 Properly check whether the file should be added to recent
When importing only the models of a project file, Cura wasn't checking whether the file should
be added to the recent files list. This commit fixes that.

CURA-7996
2021-02-05 12:14:01 +01:00
Kostas Karmas
e2699a5ab8 Display the correct message when opening deleted files from Recent
If a file that existed in the Recent Files list was deleted, Cura was still trying to open the file
on user's request without properly displaying an error if the file was not found.

This is now fixed by popping up a message to indicate that the file doesn't exist.

CURA-7996
2021-02-05 12:10:23 +01:00
jelle Spijker
3db209ef46
Removed redundant settings for Arachne
- travel_compensate_overlapping_walls_enabled
- travel_compensate_overlapping_walls_0_enabled
- travel_compensate_overlapping_walls_x_enabled
- fill_perimeter_gaps
2021-02-05 10:27:25 +01:00
jelle Spijker
473b779410
Updated settings_version to 18 2021-02-05 10:16:22 +01:00
Jelle Spijker
55e3b858d6
Merge remote-tracking branch 'origin/master' into libArachne_rebased 2021-02-05 08:48:57 +01:00
Ghostkeeper
ba5b033499
Don't crash when not able to read maximum file name length
Just use a safe-ish maximum then.

Fixes Sentry issue CURA-1QY.
2021-02-04 17:10:03 +01:00
Ghostkeeper
577e45595e
Don't crash when cloud response is invalid JSON
Perhaps if the connection is interrupted this could happen.

Fixes Sentry issue CURA-1QX.
2021-02-04 17:05:55 +01:00
Jaime van Kessel
adacb95dc6
Merge pull request #9229 from onitake/fix/appstream
Fix upstream metadata
2021-02-04 15:43:57 +01:00
Ghostkeeper
5138466fea
Merge branch 'feature/thumbnail' of https://github.com/Gravedigger7789/Cura into Gravedigger7789-feature/thumbnail 2021-02-04 15:19:07 +01:00
Jaime van Kessel
b30bacc9f8
Merge branch 'master' of https://github.com/RFBomb/Cura 2021-02-04 14:46:29 +01:00
Remco Burema
b97b7d6fa9
Set empty project hint back to false before reading.
CURA-7996
2021-02-04 13:04:00 +01:00
Konstantinos Karmas
6d3ea283d1
Merge pull request #9233 from Ultimaker/CURA-7502_Overview_documentation_for_3D_scene
CURA-7502: Overview documentation for the 3D scene
2021-02-04 11:37:42 +01:00
Jelle Spijker
ef8e5a52c1
Merge pull request #9231 from Ultimaker/CURA-7996_add_empty_file_hint
[CURA-7996] Possible to distinguish between empty and corrupt 3MF.
2021-02-04 10:50:47 +01:00
Kostas Karmas
d2c1dc6f6c Fix review comments
CURA-7502
2021-02-04 09:46:03 +01:00
Kostas Karmas
e23c1799b0 Add the Operations markdown page
It includes information about the OperationStack and all the individual operations that are
available in Cura.

CURA-7502
2021-02-03 17:25:17 +01:00
Kostas Karmas
a9eeaa9419 Mention the layFlat operation in the RotateTool
CURA-7502
2021-02-03 17:18:05 +01:00
Kostas Karmas
2d1a0cd47f Add documentation about the Tools and ToolHandles
CURA-7502
2021-02-03 10:54:12 +01:00
Remco Burema
6256bf3a4d
Possible to distinguish between empty and corrupt 3MF.
Otherwise the user could infer valid, but empty workspace is corrupt.

CURA-7996
2021-02-03 09:27:58 +01:00
Gregor Riepl
0c382e0433 Fix screenshot spec in appstream file 2021-02-03 00:29:59 +01:00
Gregor Riepl
5a89620bd1 Update appstream file to point to renamed desktop file 2021-02-03 00:28:50 +01:00
Gregor Riepl
6d5822375a Update cmakelists to install renamed metadata 2021-02-03 00:28:26 +01:00
Gregor Riepl
a972648f67 Rename metadata files to conform with appstream spec 2021-02-03 00:27:16 +01:00