mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 12:55:54 +08:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
52d2fa47e9
1
.github/workflows/cicd.yml
vendored
1
.github/workflows/cicd.yml
vendored
@ -6,6 +6,7 @@ on:
|
|||||||
- master
|
- master
|
||||||
- 'WIP**'
|
- 'WIP**'
|
||||||
- '4.*'
|
- '4.*'
|
||||||
|
- 'CURA-*'
|
||||||
pull_request:
|
pull_request:
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Copyright (c) 2019 Ultimaker B.V.
|
# Copyright (c) 2020 Ultimaker B.V.
|
||||||
# Cura is released under the terms of the LGPLv3 or higher.
|
# Cura is released under the terms of the LGPLv3 or higher.
|
||||||
|
|
||||||
from PyQt5.QtCore import pyqtSignal, pyqtProperty, QObject, QVariant # For communicating data and events to Qt.
|
from PyQt5.QtCore import pyqtSignal, pyqtProperty, QObject, QVariant # For communicating data and events to Qt.
|
||||||
@ -275,6 +275,25 @@ class ExtruderManager(QObject):
|
|||||||
Logger.log("e", "Unable to find one or more of the extruders in %s", used_extruder_stack_ids)
|
Logger.log("e", "Unable to find one or more of the extruders in %s", used_extruder_stack_ids)
|
||||||
return []
|
return []
|
||||||
|
|
||||||
|
## Get the extruder that the print will start with.
|
||||||
|
#
|
||||||
|
# This should mirror the implementation in CuraEngine of
|
||||||
|
# ``FffGcodeWriter::getStartExtruder()``.
|
||||||
|
def getInitialExtruderNr(self) -> int:
|
||||||
|
application = cura.CuraApplication.CuraApplication.getInstance()
|
||||||
|
global_stack = application.getGlobalContainerStack()
|
||||||
|
|
||||||
|
# Starts with the adhesion extruder.
|
||||||
|
if global_stack.getProperty("adhesion_type", "value") != "none":
|
||||||
|
return global_stack.getProperty("adhesion_extruder_nr", "value")
|
||||||
|
|
||||||
|
# No adhesion? Well maybe there is still support brim.
|
||||||
|
if (global_stack.getProperty("support_enable", "value") or global_stack.getProperty("support_tree_enable", "value")) and global_stack.getProperty("support_brim_enable", "value"):
|
||||||
|
return global_stack.getProperty("support_infill_extruder_nr", "value")
|
||||||
|
|
||||||
|
# REALLY no adhesion? Use the first used extruder.
|
||||||
|
return self.getUsedExtruderStacks()[0].getProperty("extruder_nr", "value")
|
||||||
|
|
||||||
## Removes the container stack and user profile for the extruders for a specific machine.
|
## Removes the container stack and user profile for the extruders for a specific machine.
|
||||||
#
|
#
|
||||||
# \param machine_id The machine to remove the extruders for.
|
# \param machine_id The machine to remove the extruders for.
|
||||||
|
@ -17,24 +17,40 @@ cd "${PROJECT_DIR}"
|
|||||||
# Clone Uranium and set PYTHONPATH first
|
# Clone Uranium and set PYTHONPATH first
|
||||||
#
|
#
|
||||||
|
|
||||||
# Check the branch to use:
|
# Check the branch to use for Uranium.
|
||||||
# 1. Use the Uranium branch with the branch same if it exists.
|
# It tries the following branch names and uses the first one that's available.
|
||||||
# 2. Otherwise, use the default branch name "master"
|
# - GITHUB_HEAD_REF: the branch name of a PR. If it's not a PR, it will be empty.
|
||||||
|
# - GITHUB_BASE_REF: the branch a PR is based on. If it's not a PR, it will be empty.
|
||||||
|
# - GITHUB_REF: the branch name if it's a branch on the repository;
|
||||||
|
# refs/pull/123/merge if it's a pull_request.
|
||||||
|
# - master: the master branch. It should always exist.
|
||||||
|
|
||||||
|
# For debugging.
|
||||||
echo "GITHUB_REF: ${GITHUB_REF}"
|
echo "GITHUB_REF: ${GITHUB_REF}"
|
||||||
|
echo "GITHUB_HEAD_REF: ${GITHUB_HEAD_REF}"
|
||||||
echo "GITHUB_BASE_REF: ${GITHUB_BASE_REF}"
|
echo "GITHUB_BASE_REF: ${GITHUB_BASE_REF}"
|
||||||
|
|
||||||
GIT_REF_NAME="${GITHUB_REF}"
|
GIT_REF_NAME_LIST=( "${GITHUB_HEAD_REF}" "${GITHUB_BASE_REF}" "${GITHUB_REF}" "master" )
|
||||||
if [ -n "${GITHUB_BASE_REF}" ]; then
|
for git_ref_name in "${GIT_REF_NAME_LIST[@]}"
|
||||||
GIT_REF_NAME="${GITHUB_BASE_REF}"
|
do
|
||||||
|
if [ -z "${git_ref_name}" ]; then
|
||||||
|
continue
|
||||||
fi
|
fi
|
||||||
GIT_REF_NAME="$(basename "${GIT_REF_NAME}")"
|
git_ref_name="$(basename "${git_ref_name}")"
|
||||||
|
# Skip refs/pull/1234/merge as pull requests use it as GITHUB_REF
|
||||||
URANIUM_BRANCH="${GIT_REF_NAME:-master}"
|
if [[ "${git_ref_name}" == "merge" ]]; then
|
||||||
|
echo "Skip [${git_ref_name}]"
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
URANIUM_BRANCH="${git_ref_name}"
|
||||||
output="$(git ls-remote --heads https://github.com/Ultimaker/Uranium.git "${URANIUM_BRANCH}")"
|
output="$(git ls-remote --heads https://github.com/Ultimaker/Uranium.git "${URANIUM_BRANCH}")"
|
||||||
if [ -z "${output}" ]; then
|
if [ -n "${output}" ]; then
|
||||||
echo "Could not find Uranium banch ${URANIUM_BRANCH}, fallback to use master."
|
echo "Found Uranium branch [${URANIUM_BRANCH}]."
|
||||||
URANIUM_BRANCH="master"
|
break
|
||||||
|
else
|
||||||
|
echo "Could not find Uranium banch [${URANIUM_BRANCH}], try next."
|
||||||
fi
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
echo "Using Uranium branch ${URANIUM_BRANCH} ..."
|
echo "Using Uranium branch ${URANIUM_BRANCH} ..."
|
||||||
git clone --depth=1 -b "${URANIUM_BRANCH}" https://github.com/Ultimaker/Uranium.git "${PROJECT_DIR}"/Uranium
|
git clone --depth=1 -b "${URANIUM_BRANCH}" https://github.com/Ultimaker/Uranium.git "${PROJECT_DIR}"/Uranium
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Copyright (c) 2019 Ultimaker B.V.
|
# Copyright (c) 2020 Ultimaker B.V.
|
||||||
# Cura is released under the terms of the LGPLv3 or higher.
|
# Cura is released under the terms of the LGPLv3 or higher.
|
||||||
|
|
||||||
import numpy
|
import numpy
|
||||||
@ -171,7 +171,6 @@ class StartSliceJob(Job):
|
|||||||
self.setResult(StartJobResult.ObjectSettingError)
|
self.setResult(StartJobResult.ObjectSettingError)
|
||||||
return
|
return
|
||||||
|
|
||||||
with self._scene.getSceneLock():
|
|
||||||
# Remove old layer data.
|
# Remove old layer data.
|
||||||
for node in DepthFirstIterator(self._scene.getRoot()):
|
for node in DepthFirstIterator(self._scene.getRoot()):
|
||||||
if node.callDecoration("getLayerData") and node.callDecoration("getBuildPlateNumber") == self._build_plate_number:
|
if node.callDecoration("getLayerData") and node.callDecoration("getBuildPlateNumber") == self._build_plate_number:
|
||||||
@ -344,10 +343,7 @@ class StartSliceJob(Job):
|
|||||||
result["time"] = time.strftime("%H:%M:%S") #Some extra settings.
|
result["time"] = time.strftime("%H:%M:%S") #Some extra settings.
|
||||||
result["date"] = time.strftime("%d-%m-%Y")
|
result["date"] = time.strftime("%d-%m-%Y")
|
||||||
result["day"] = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"][int(time.strftime("%w"))]
|
result["day"] = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"][int(time.strftime("%w"))]
|
||||||
|
result["initial_extruder_nr"] = CuraApplication.getInstance().getExtruderManager().getInitialExtruderNr()
|
||||||
initial_extruder_stack = CuraApplication.getInstance().getExtruderManager().getUsedExtruderStacks()[0]
|
|
||||||
initial_extruder_nr = initial_extruder_stack.getProperty("extruder_nr", "value")
|
|
||||||
result["initial_extruder_nr"] = initial_extruder_nr
|
|
||||||
|
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user