Commit graph

31861 commits

Author SHA1 Message Date
digitalfrost
67d5839775
repositories.md: use is in descriptions
Use is in these two instances as well for consistency with the first list item.
2022-08-10 10:22:30 +02:00
digitalfrost
850749fdf5
repositories.md use is instead of comma
Is should be used instead of a comma here
2022-08-10 10:20:24 +02:00
digitalfrost
3f440a4481
repositories.md: remove extra whitespace
Remove extra whitespace.
2022-08-10 10:18:15 +02:00
digitalfrost
3402544906
repositoires.md: reformat to start with repos
Move the name of the repos to the beginning of the line/ beginning of each section.
This makes it much easier to read.
2022-08-10 10:16:39 +02:00
Jelle Spijker
e4516021fb
Don't use Conan 1.51.x
Fails on Windows due to this bug https://github.com/conan-io/conan/issues/11822

PR  https://github.com/conan-io/conan/pull/11826 with the fix is planned for 1.52.0
2022-08-10 10:13:06 +02:00
Jelle Spijker
64fa88d522
Use Conan lower then 1.51
Fails on windows due to I'll formed msbuild not sure if it is a bug on Conan side or ours.
2022-08-10 10:04:58 +02:00
digitalfrost
476033e6b6
repositories.md: Breakup text into lists
This makes it easier to read and to understand what each repository does.
2022-08-10 10:02:06 +02:00
j.spijker@ultimaker.com
982074c047 set gcc-12 as main alternative on ubuntu 22.04 2022-08-10 09:27:15 +02:00
jspijker
7b6e56287b Make sure the detection of the Conan profile happens after inst of build tools 2022-08-09 13:37:15 +02:00
j.spijker@ultimaker.com
8fa1cad635 Fix syntax mistake 2022-08-09 12:39:47 +02:00
j.spijker@ultimaker.com
ca9c107033 Don't install gcc-12 on ubuntu 20.04
Allready present on the runner by default
2022-08-09 12:33:12 +02:00
j.spijker@ultimaker.com
4dbcf464e1 Use latest test ppa to obtain GCC-12 2022-08-09 12:21:39 +02:00
j.spijker@ultimaker.com
265824043d install dependencies gcc-12 and disable multilib 2022-08-09 12:21:03 +02:00
digitalfrost
60c8712b10 CuraContainerStack.py: improve TypeIndexMap
Cleaner and more idiomatic way to reverse a dictionary
2022-08-09 11:42:18 +02:00
Jelle Spijker
56e5bab174
Test against gcc-12 2022-08-09 11:42:18 +02:00
j.spijker@ultimaker.com
4724b25f53 Build GCC-12 from source
The ubuntu-22.04 doesn't have the GCC-12 in the repository yet (which we need got C++20)
2022-08-09 11:35:30 +02:00
Jelle Spijker
2968f96e85
Merge pull request #12970 from digitalfrost/070822
Use is not operator rather than not ... is
2022-08-08 15:04:47 +02:00
Jelle Spijker
605dc29890
Update to gcc-12 2022-08-08 15:02:58 +02:00
Jelle Spijker
7ebf5d5e70
update to gcc-12 2022-08-08 15:02:22 +02:00
digitalfrost
e7194db7f6 Merge pull request #12980 with #12970
Merge the two pull requests as asked by @fieldOfView
2022-08-08 14:22:58 +02:00
digitalfrost
e54c859b2d Iterate directly over list in readIndex()
No need for range(len.. and later use of index...
2022-08-08 10:33:32 +02:00
digitalfrost
54b9ed97ae Use is not operator rather than not ... is
This is advocated by both PEP8 and the Google Python Style Guide
2022-08-08 10:04:46 +02:00
digitalfrost
ff07129f2c Use is not operator rather than not ... is
This is advocated by both PEP8 and the Google Python Style Guide
2022-08-08 10:04:46 +02:00
digitalfrost
06e61a3129 Use is not operator rather than not ... is
This is advocated by both PEP8 and the Google Python Style Guide
2022-08-08 10:04:46 +02:00
digitalfrost
72751b2507 Use is not operator rather than not ... is
This is advocated by both PEP8 and the Google Python Style Guide
2022-08-08 09:36:53 +02:00
digitalfrost
0f0815efab Use is not operator rather than not ...is
This is advocated by both PEP8 and the Google Python Style Guide
2022-08-08 09:33:26 +02:00
digitalfrost
d65e198e8c Use is not operator rather than not ...is
This is advocated by both PEP8 and the Google Python Style Guide
2022-08-08 09:28:26 +02:00
digitalfrost
2f9e5b00bb Use is not operator rather than not ... is
This is advocated by both PEP8 and the Google Python Style Guide
2022-08-07 10:09:33 +02:00
Anson Liu
c7946e5c78
Added Cooling Rate setting 2022-08-06 16:54:37 -04:00
Anson Liu
38b04b0a4d
Merge branch 'Ultimaker:main' into master 2022-08-06 16:53:48 -04:00
Remco Burema
81a34d1d18
Merge pull request #12692 from Ultimaker/PP-187_move_shrinkage_compensation_values_to_fdm_materials
Removed shrinkage compensation from the quality profiles. They have b…
2022-08-06 11:07:35 +02:00
Remco Burema
5b851e4630 Click on checkbox only for checkbox-setting.
People accidentally set (checkbox) settings when mis-clicking slightly when scrolling through the settings.

CURA-9530
2022-08-05 13:33:50 +02:00
digitalfrost
1c3479c9fc Refactor check for unknown line types
Using .where()  clarifies the intent.
2022-08-05 11:08:20 +02:00
digitalfrost
9ac7eb4da7 Use enumerate to iterate over self._types
This is more pythonic.
The comparaison in the if block below the for loop now becomes clearer.
2022-08-05 10:37:02 +02:00
j.spijker@ultimaker.com
3c9d38ebd4 First Update and upgrade on Linux
hoping this will solve the libegl-mesa not being able to download on the GH 22.04 runner
2022-08-04 23:29:40 +02:00
digitalfrost
a39fed1dc3 Use one line conditional assignment
Use one line conditional assignement instead of if else block.
The intent is now clearer and the code is easier to read.
2022-08-04 09:45:47 +02:00
j.spijker@ultimaker.com
c1ae1872d0 Make sure build and generate steps are present
Contributes to CURA-8831
2022-08-03 17:49:13 +02:00
j.spijker@ultimaker.com
ae7023b2db Create the package
Contributes to CURA-8831
2022-08-03 17:10:53 +02:00
j.spijker@ultimaker.com
cc329955f0 Just do an actual create
Contributes to CURA-8831
2022-08-03 17:02:50 +02:00
j.spijker@ultimaker.com
7bd90d21ab First do a build
Contributes to CURA-8831
2022-08-03 16:59:01 +02:00
j.spijker@ultimaker.com
15e1d063d8 Also create the generator folder
Contributes to CURA-8831
2022-08-03 16:51:54 +02:00
j.spijker@ultimaker.com
2845b9a42b Export-pkg requires a build dir
Contributes to CURA-8831
2022-08-03 16:11:50 +02:00
j.spijker@ultimaker.com
145194cc25 Only export-pkg on Linux
No need for bins and therefor different OSes

Contributes to CURA-8831
2022-08-03 15:51:03 +02:00
j.spijker@ultimaker.com
4e31b4328c Treat it as bool
Contributes to CURA-8831
2022-08-03 15:49:35 +02:00
digitalfrost
fad47856e4 Rename _start_time to _check_start_time
This better reflects what _start_time is and makes the code easier
to read. _check_start_time is  self documenting.
The current comment next to _start_time is erroneous
since _start_time is not "measuring the checking time"
2022-08-03 11:40:15 +02:00
digitalfrost
556b009a9d Fix Bug in timing MachineErrorChecker execution
We want the Logger in line 215 to give the execution time in seconds
so we don't want the start time to be the epoch.
Currently the logger will output something like
time = 1659518458.5s
not like
time = 3.0s
2022-08-03 11:26:39 +02:00
j.spijker@ultimaker.com
cf548613ca Add cura env to Run environments
Contributes to CURA-8831
2022-08-03 08:51:41 +02:00
j.spijker@ultimaker.com
f95b22404a fix base_dir for venv when running from source
Contributes to CURA-8831
2022-08-03 08:51:41 +02:00
j.spijker@ultimaker.com
e4feae414b Build pyarcus and pysavitar shared
Contributes to CURA-8828, CURA-8829 and CURA-8831
2022-08-03 08:51:41 +02:00
j.spijker@ultimaker.com
de9d432398 Use new pysavitar as package
Contributes to CURA-8828, CURA-8829 and CURA-8831
2022-08-02 15:47:17 +02:00