Merge remote-tracking branch 'origin/5.1' into 5.1

This commit is contained in:
jellespijker 2022-07-05 14:07:11 +02:00
commit baec0e75f7
3 changed files with 5 additions and 2 deletions

View file

@ -158,12 +158,16 @@ jobs:
run: |
. ./cura_inst/bin/activate_github_actions_env.sh
. ./cura_inst/bin/activate_github_actions_version_env.sh
echo "CURA_VERSION_FULL=5.1.0-beta" >> $GITHUB_ENV
echo "CURA_VERSION_BUILD=0" >> $GITHUB_ENV
- name: Set Environment variables for Cura (Powershell)
if: ${{ runner.os == 'Windows' }}
run: |
.\cura_inst\Scripts\activate_github_actions_env.ps1
.\cura_inst\Scripts\activate_github_actions_version_env.ps1
echo "Env:CURA_VERSION_FULL=5.1.0-beta" >> $Env:GITHUB_ENV
echo "Env:CURA_VERSION_BUILD=0" >> $Env:GITHUB_ENV
- name: Create the Cura dist
run: pyinstaller ./cura_inst/Ultimaker-Cura.spec

View file

@ -40,6 +40,7 @@
"machine_max_feedrate_y": { "default_value": 200 },
"machine_max_feedrate_z": { "default_value": 5 },
"machine_max_feedrate_e": { "default_value": 100 },
"speed_z_hop": { "value": "machine_max_feedrate_z" },
"machine_max_acceleration_x": { "default_value": 500 },
"machine_max_acceleration_y": { "default_value": 500 },
"machine_max_acceleration_z": { "default_value": 10 },

View file

@ -311,8 +311,6 @@ UM.MainWindow
property int mouseY: base.mouseY
property bool tallerThanParent: height > parent.height
z: 1 // Ensure toolbar and toolpanels are drawn on top
anchors
{
verticalCenter: tallerThanParent ? undefined : parent.verticalCenter